Report generated on 26-May-2023 at 05:00:03 by pytest-html v3.2.0
| Packages | {"pluggy": "1.0.0", "pytest": "7.3.1"} |
| Platform | Linux-5.15.0-69-generic-x86_64-with-glibc2.35 |
| Plugins | {"asyncio": "0.21.0", "html": "3.2.0", "metadata": "2.0.4", "repeat": "0.9.1"} |
| Python | 3.10.6 |
216 tests ran in 43161.88 seconds.
(Un)check the boxes to filter the results.
203 passed, 2 skipped, 11 failed, 0 errors, 2 expected failures, 0 unexpected passes| Result | Test | Duration | Links |
|---|---|---|---|
| No results found. Try to check the filters | |||
| Failed | functional/devlink/test_devlink_single_block.py::test_devlink_policer_log | 136.75 | |
|
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7fb7fd4457b0> async def test_devlink_policer_log(testbed): """ Test Name: test_devlink_policer_log Test Suite: suite_functional_devlink Test Overview: Test devlink single block basic functionality with random traffic and policer loggin Test Procedure: 1. Set link up on interfaces on all participant ports 2. Create an ingress qdisc on first port connected to Ixia port and add two rules with randomly generated selectors: one with police action and one with log action 3. Prepare a matching stream for the randomly selected selectors and transmit traffic 4. Verify CPU matched packets are logged into /var/log/messages 5. Verify CPU trapped packet rate is as expected """ tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], 2) if not tgen_dev or not dent_devices: pytest.skip('The testbed does not have enough dent with tgen connections') dev_name = dent_devices[0].host_name dent_dev = dent_devices[0] tg_ports = tgen_dev.links_dict[dev_name][0] dut_ports = tgen_dev.links_dict[dev_name][1] frame_size = randint(300, 800) policer_rate = 100 want_ip = choice([True, False]) want_port = choice([True, False]) if want_ip else False want_vlan = choice([True, False]) # 1.Set link up on interfaces on all participant ports and connect devices out = await IpLink.set( input_data=[{dev_name: [ {'device': port, 'operstate': 'up'} for port in dut_ports]}]) err_msg = f"Verify that ports set to 'UP' state.\n{out}" assert out[0][dev_name]['rc'] == 0, err_msg dev_groups = tgen_utils_dev_groups_from_config( [{'ixp': tg_ports[0], 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24}, {'ixp': tg_ports[1], 'ip': '2.2.2.4', 'gw': '2.2.2.1', 'plen': 24}] ) await tgen_utils_traffic_generator_connect(tgen_dev, tg_ports, dut_ports, dev_groups) # 2.Create an ingress qdisc on first port connected to Ixia port and add two rules with randomly generated selectors: # one with police action and one with log action out = await TcQdisc.add( input_data=[{dev_name: [ {'dev': dut_ports[0], 'direction': 'ingress'}]}]) err_msg = f'Verify no error on setting Qdist for {dut_ports[0]}.\n{out}' assert out[0][dev_name]['rc'] == 0, err_msg rule_selectors = {'action': {'trap': '', 'police': {'rate': f'{policer_rate}kbit', 'burst': 6250, 'conform-exceed': '', 'drop': ''}}, 'skip_sw': True, 'want_mac': True, 'want_vlan': want_vlan, 'want_ip': want_ip, 'want_port': want_port, 'want_tcp': choice([True, False]) if want_port else False, 'want_vlan_ethtype': True if want_ip and want_vlan else False} tc_rule = tcutil_generate_rule_with_random_selectors(dut_ports[0], **rule_selectors) tc_rule_copy = deepcopy(tc_rule) randomize_rule_by_src_dst_field(tc_rule, rule_selectors) out = await TcFilter.add(input_data=[{dev_name: [tc_rule]}]) assert out[0][dev_name]['rc'] == 0, f'Failed to create tc rule \n{out}' output_rule = await TcFilter.show(input_data=[{dev_name: [ {'dev': dut_ports[0], 'direction': 'ingress', 'options': '-j'}]}], parse_output=True) assert output_rule[0][dev_name]['rc'] == 0, f'Failed to get tc rule \n{output_rule}' del tc_rule['filtertype']['skip_sw'] tc_rule['action'] = {'xt': {'limit': '3/sec', '-j': 'LOG'}} out = await TcFilter.add(input_data=[{dev_name: [tc_rule]}]) assert out[0][dev_name]['rc'] == 0, f'Failed to create tc rule \n{out}' # 3.Prepare a matching stream for the randomly selected selectors and transmit traffic streams = tcutil_tc_rules_to_tgen_streams({dut_ports[0]: output_rule[0][dev_name]['parsed_output']}, frame_rate_pps=100, frame_rate_type='line_rate', frame_size=frame_size) # Overwrite stream dst/src fields after we randomized dst/src fields applying overwrite_src_dst_stream_fields(streams, tc_rule_copy, rule_selectors) await tgen_utils_setup_streams(tgen_dev, config_file_name=None, streams=streams) await tgen_utils_start_traffic(tgen_dev) await asyncio.sleep(10) # 4.Verify CPU matched packets are logged into /var/log/messages exp_rate = floor((policer_rate * 125) / frame_size) rc, out = await dent_dev.run_cmd(f'tail -50 /var/log/messages | grep -Eo "IN={dut_ports[0]}" | wc -l') assert not rc, f'tail cmd failed with rc {rc} \n{out}' tail_res = int(out.strip()) > assert tail_res, f'CPU matched packets are not logged {tail_res}' E AssertionError: CPU matched packets are not logged 0 E assert 0 /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py:313: AssertionError -----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-5115' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_policer_log">Starting testcase:test_devlink_policer_log from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=82, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=83] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=83] Local address: 172.17.0.3, port 54608 INFO asyncssh:logging.py:92 [conn=83] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=83] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=83] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=83, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 21:47:05 UTC 2023 INFO asyncssh:logging.py:92 [conn=83, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=1] Channel closed DEBUG infra2:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=83, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=83, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=83, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 2] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=83, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=3] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=83, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=83, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=83, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=5] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=83, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=83, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=6] Channel closed DEBUG infra2:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=83, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=7] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=83, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=8] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 21:47:06 UTC 2023 INFO asyncssh:logging.py:92 [conn=83, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=83, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=83, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2.2.2.4/24', 'count': 1, 'ip': '2.2.2.4', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:2:7' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=83, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=11] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=83, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=12] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=83, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=83, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=13] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol 0x8100 flower skip_sw dst_mac 02:be:7b:0e:27:74 vlan_id 1097 vlan_ethtype ip dst_ip 32.211.53.219 ip_proto tcp dst_port 56780 action trap action police rate 100kbit burst 6250 conform-exceed drop INFO asyncssh:logging.py:92 [conn=83, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=14] Command: tc filter add dev swp33 ingress protocol 0x8100 flower skip_sw dst_mac 02:be:7b:0e:27:74 vlan_id 1097 vlan_ethtype ip dst_ip 32.211.53.219 ip_proto tcp dst_port 56780 action trap action police rate 100kbit burst 6250 conform-exceed drop INFO asyncssh:logging.py:92 [conn=83, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=83, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=15] Channel closed DEBUG infra2:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=83, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=16] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=83, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"802.1Q","pref":49152,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1097,"vlan_ethtype":"ip","dst_mac":"02:be:7b:0e:27:74","eth_type":"ipv4","ip_proto":"tcp","dst_ip":"32.211.53.219","dst_port":56780},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]},{"order":2,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO asyncssh:logging.py:92 [conn=83, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=17] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol 0x8100 flower dst_mac 02:be:7b:0e:27:74 vlan_id 1097 vlan_ethtype ip dst_ip 32.211.53.219 ip_proto tcp dst_port 56780 INFO asyncssh:logging.py:92 [conn=83, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=18] Command: tc filter add dev swp33 ingress protocol 0x8100 flower dst_mac 02:be:7b:0e:27:74 vlan_id 1097 vlan_ethtype ip dst_ip 32.211.53.219 ip_proto tcp dst_port 56780 INFO asyncssh:logging.py:92 [conn=83, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_1097_vlan_ethtype_ip_dst_mac_02:be:7b:0e:27:74_eth_type_ipv4_ip_proto_tcp_dst_ip_32.211.53.219_dst_port_56780 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=83, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=19] Channel closed DEBUG infra2:Logger.py:156 tail -50 /var/log/messages | grep -Eo "IN=swp33" | wc -l INFO asyncssh:logging.py:92 [conn=83, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=20] Command: tail -50 /var/log/messages | grep -Eo "IN=swp33" | wc -l INFO asyncssh:logging.py:92 [conn=83, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=20] Channel closed DEBUG infra2:Logger.py:156 0 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_policer_log from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py INFO asyncssh:logging.py:92 [conn=83, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=21] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=83, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=22] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 21:49:22 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=83, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=23] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=83, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=83, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=24] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=83, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=25] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=83, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=83, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=83, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=26] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=83, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=27] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=83, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=83, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=83, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=28] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=83, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=29] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=83, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=83, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=83, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=30] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=83, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=31] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=83, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=83, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=83, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=32] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=83, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=33] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=83, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=83, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=83, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=34] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=83, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=35] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=83, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=83, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=83, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=36] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=83, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=37] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=83, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=83, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=83, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=38] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=83, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=83, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=83, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=83, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=40] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=83, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=83, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=83, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=83, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=42] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=83, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=83, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=83, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=83, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=83, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=83, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=46] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=83, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=83, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=46] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=83, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=83, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=48] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=83, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=48] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=83, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=83, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=50] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=83, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=83, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=50] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=83, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=83, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=52] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=83, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=83, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=52] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=83, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=83, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=54] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=83, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=83, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=54] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=83, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=83, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=55] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=83, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=83, chan=56] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=83, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=83, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=83, chan=56] Channel closed DEBUG infra2:Logger.py:156 | |||
| Failed | functional/igmp/test_igmp_snooping.py::test_igmp_snooping_mixed_ver[2-2] | 191.48 | |
|
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7fb7fd4457b0> igmp_ver = 2, igmp_msg_ver = 2 @pytest.mark.parametrize('igmp_ver, igmp_msg_ver', [(2, 2), (3, 3), (2, 1), (3, 1), (3, 2)]) async def test_igmp_snooping_mixed_ver(testbed, igmp_ver, igmp_msg_ver): """ Test Name: test_igmp_snooping Test Suite: suite_functional_igmp Test Overview: Test IGMP snooping mixed and identical versions Test Procedure: 1. Create bridge and enable IGMP Snooping, enslave all TG ports to bridge interface Config Fastleave on 1st rx_port 2. Init interfaces and create 2 mcast Streams 3. Create 3 membership report streams, 1 with invalid checksum 4. Send Traffic from router port and from clients 5. Verify Mdb entries were created from clients 6. Verify the multicast traffic is flooded to all bridge ports 7. Stop traffic, create a general query stream from tx_port and send traffic 8. Verify MDB entries were created for router 9. Verify the traffic is forwarded to the members only 10. Create and send Leave stream from 1st rx_port 11. Verify MDB entry for leave port is deleted and no traffic is received """ bridge = 'br0' sleep_value = 8 tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], 4) if not tgen_dev or not dent_devices: pytest.skip('The testbed does not have enough dent with tgen connections') dev_name = dent_devices[0].host_name tg_ports = tgen_dev.links_dict[dev_name][0] dut_ports = tgen_dev.links_dict[dev_name][1] mcast_group1 = '227.1.1.1' mcast_group2 = '239.2.2.2' mcast_group_addr = [mcast_group1, mcast_group2, mcast_group2] macs = ['a6:00:00:00:00:01', 'a6:00:00:00:00:02', 'a6:00:00:00:00:03', 'a6:00:00:00:00:04'] igmpv_and_type = {1: {'igmp_msg_v': 'igmpv2', 'igmp_type': '18', 'totalLength': '28'}, 2: {'igmp_msg_v': 'igmpv2', 'igmp_type': '22', 'totalLength': '28'}, 3: {'igmp_msg_v': 'igmpv3MembershipReport', 'igmp_type': '22', 'totalLength': '40'}} # 1.Create bridge and enable IGMP Snooping, enslave all TG ports to bridge interface # Config Fastleave on 1st rx_port await common_bridge_and_igmp_setup(dev_name, bridge, igmp_ver, dut_ports) out = await BridgeLink.set( input_data=[{dev_name: [ {'device': dut_ports[1], 'fastleave': 'on'}]}]) err_msg = f'Verify that port entities set to fastleave ON.\n{out}' assert out[0][dev_name]['rc'] == 0, err_msg # 2.Init interfaces and create 2 mcast Streams # 3.Create 3 membership report streams, 1 stream with invalid checksum dev_groups = tgen_utils_dev_groups_from_config( [{'ixp': tg_ports[0], 'ip': '102.0.0.3', 'gw': '102.0.0.1', 'plen': 24}, {'ixp': tg_ports[1], 'ip': '100.0.0.3', 'gw': '100.0.0.1', 'plen': 24}, {'ixp': tg_ports[2], 'ip': '101.0.0.3', 'gw': '101.0.0.1', 'plen': 24}, {'ixp': tg_ports[3], 'ip': '99.0.0.3', 'gw': '99.0.0.1', 'plen': 24}]) await tgen_utils_traffic_generator_connect(tgen_dev, tg_ports, dut_ports, dev_groups) tx_port = dev_groups[tg_ports[0]][0]['name'] rx_ports = [dev_groups[tg_ports[1]][0]['name'], dev_groups[tg_ports[2]][0]['name'], dev_groups[tg_ports[3]][0]['name']] streams = {f'mcast_{idx + 1}': { 'type': 'raw', 'protocol': 'ip', 'ip_source': tx_port, 'ip_destination': rx_ports[1], 'srcMac': macs[0], 'dstMac': mcast_ip_to_mac(dst_ip), 'srcIp': '0.0.0.0', 'dstIp': dst_ip, 'frame_rate_type': 'line_rate', 'rate': 40, } for idx, dst_ip in enumerate([mcast_group1, mcast_group2])} streams.update({f'member_report{idx + 1}': { 'type': 'raw', 'protocol': 'ip', 'ip_source': dev_groups[tg_ports[idx + 1]][0]['name'], 'ip_destination': dev_groups[tg_ports[0]][0]['name'], 'srcMac': mac, 'dstMac': mcast_ip_to_mac(grp_addr), 'srcIp': dev_groups[tg_ports[idx + 1]][0]['ip'], 'dstIp': grp_addr, 'ipproto': igmpv_and_type[igmp_msg_ver]['igmp_msg_v'], 'totalLength': igmpv_and_type[igmp_msg_ver]['totalLength'], 'igmpType': igmpv_and_type[igmp_msg_ver]['igmp_type'], 'igmpGroupAddr': grp_addr, 'rate': 1, 'transmissionControlType': 'fixedPktCount', 'frameCount': 1 } for idx, (grp_addr, mac) in enumerate(zip(mcast_group_addr, macs[1:])) }) streams['member_report3']['igmpChecksum'] = '0' if igmp_msg_ver == 3: for name, stream in streams.items(): if 'member_report' in name: stream['numberOfSources'] = '1' await tgen_utils_setup_streams(tgen_dev, config_file_name=None, streams=streams) # 4.Send Traffic from tx_port and rx_ports await tgen_utils_start_traffic(tgen_dev) await asyncio.sleep(sleep_value) # 5.Verify MDB entries were created from clients mdb_entires, _ = await get_bridge_mdb(dev_name) > verify_mdb_entries(mdb_entires, dut_ports[1:3], mcast_group_addr[:-1]) /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py:253: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ mdb_entries = [{'dev': 'br0', 'flags': [], 'grp': 'ff02::6a', 'index': 121, ...}, {'dev': 'br0', 'flags': [], 'grp': 'ff02::1:ff85:620b', 'index': 121, ...}] port_names = ['swp34', 'swp35'], grp_addrs = ['227.1.1.1', '239.2.2.2'] exp = None def verify_mdb_entries(mdb_entries, port_names, grp_addrs, exp=None): """ Verify that expected Mdb entires are present in Mdb table Args: mdb_entries (dict): Dict with Mdb entries port_names (list): DUT port names expected to be in Mdb entries grp_addrs (list): Igmp group address to check exp (int): Expected num of entries """ ports_count = 0 ports_expected = exp if exp else len(port_names) for port, group in zip(port_names, grp_addrs): for mdb in mdb_entries: if mdb['port'] == port: assert mdb['grp'] == group, f'Mdb entry by port {port} is {mdb[port]} expected {group}' ports_count += 1 > assert ports_count == ports_expected, f'Ports {port_names} absent in Mdb {mdb_entries}' E AssertionError: Ports ['swp34', 'swp35'] absent in Mdb [{'index': 121, 'dev': 'br0', 'port': 'br0', 'grp': 'ff02::6a', 'state': 'temp', 'flags': [], 'vid': 1, 'timer': ' 114.48'}, {'index': 121, 'dev': 'br0', 'port': 'br0', 'grp': 'ff02::1:ff85:620b', 'state': 'temp', 'flags': [], 'vid': 1, 'timer': ' 114.48'}] E assert 0 == 2 /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py:130: AssertionError -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_igmp_snooping_mixed_ver[2-2]">Starting testcase:test_igmp_snooping_mixed_ver[2-2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-5726' coro=<test_igmp_snooping_mixed_ver() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py:171> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=91, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=92] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=92] Local address: 172.17.0.3, port 45496 INFO asyncssh:logging.py:92 [conn=92] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=92] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=92] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=92, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 22:10:12 UTC 2023 INFO asyncssh:logging.py:92 [conn=92, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=92, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=92, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=92, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=92, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=92, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=92, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 type bridge mcast_snooping 1 mcast_igmp_version 2 INFO asyncssh:logging.py:92 [conn=92, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=6] Command: ip link set dev br0 type bridge mcast_snooping 1 mcast_igmp_version 2 INFO asyncssh:logging.py:92 [conn=92, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=92, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=92, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=8] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=92, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=92, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=9] Channel closed DEBUG infra2:Logger.py:156 bridge link set dev swp34 fastleave on INFO asyncssh:logging.py:92 [conn=92, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=10] Command: bridge link set dev swp34 fastleave on INFO asyncssh:logging.py:92 [conn=92, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_102.0.0.3/24', 'count': 1, 'ip': '102.0.0.3', 'gw': '102.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_100.0.0.3/24', 'count': 1, 'ip': '100.0.0.3', 'gw': '100.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_101.0.0.3/24', 'count': 1, 'ip': '101.0.0.3', 'gw': '101.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_99.0.0.3/24', 'count': 1, 'ip': '99.0.0.3', 'gw': '99.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mcast_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mcast_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_102.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_100.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_101.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_99.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=92, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=11] Channel closed DEBUG infra2:Logger.py:156 bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=92, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=12] Command: bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=92, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=12] Channel closed DEBUG infra2:Logger.py:156 [{"mdb":[{"index":121,"dev":"br0","port":"br0","grp":"ff02::6a","state":"temp","flags":[],"vid":1,"timer":" 114.48"},{"index":121,"dev":"br0","port":"br0","grp":"ff02::1:ff85:620b","state":"temp","flags":[],"vid":1,"timer":" 114.48"}],"router":{}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_igmp_snooping_mixed_ver[2-2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py INFO asyncssh:logging.py:92 [conn=92, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=92, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=14] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 22:13:23 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=92, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=92, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=92, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":121,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=92, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=92, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=92, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=92, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=92, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=92, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=92, chan=18] Channel closed DEBUG infra2:Logger.py:156 | |||
| Failed | functional/igmp/test_igmp_snooping.py::test_igmp_snooping_mixed_ver[3-3] | 189.64 | |
|
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7fb7fd4457b0> igmp_ver = 3, igmp_msg_ver = 3 @pytest.mark.parametrize('igmp_ver, igmp_msg_ver', [(2, 2), (3, 3), (2, 1), (3, 1), (3, 2)]) async def test_igmp_snooping_mixed_ver(testbed, igmp_ver, igmp_msg_ver): """ Test Name: test_igmp_snooping Test Suite: suite_functional_igmp Test Overview: Test IGMP snooping mixed and identical versions Test Procedure: 1. Create bridge and enable IGMP Snooping, enslave all TG ports to bridge interface Config Fastleave on 1st rx_port 2. Init interfaces and create 2 mcast Streams 3. Create 3 membership report streams, 1 with invalid checksum 4. Send Traffic from router port and from clients 5. Verify Mdb entries were created from clients 6. Verify the multicast traffic is flooded to all bridge ports 7. Stop traffic, create a general query stream from tx_port and send traffic 8. Verify MDB entries were created for router 9. Verify the traffic is forwarded to the members only 10. Create and send Leave stream from 1st rx_port 11. Verify MDB entry for leave port is deleted and no traffic is received """ bridge = 'br0' sleep_value = 8 tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], 4) if not tgen_dev or not dent_devices: pytest.skip('The testbed does not have enough dent with tgen connections') dev_name = dent_devices[0].host_name tg_ports = tgen_dev.links_dict[dev_name][0] dut_ports = tgen_dev.links_dict[dev_name][1] mcast_group1 = '227.1.1.1' mcast_group2 = '239.2.2.2' mcast_group_addr = [mcast_group1, mcast_group2, mcast_group2] macs = ['a6:00:00:00:00:01', 'a6:00:00:00:00:02', 'a6:00:00:00:00:03', 'a6:00:00:00:00:04'] igmpv_and_type = {1: {'igmp_msg_v': 'igmpv2', 'igmp_type': '18', 'totalLength': '28'}, 2: {'igmp_msg_v': 'igmpv2', 'igmp_type': '22', 'totalLength': '28'}, 3: {'igmp_msg_v': 'igmpv3MembershipReport', 'igmp_type': '22', 'totalLength': '40'}} # 1.Create bridge and enable IGMP Snooping, enslave all TG ports to bridge interface # Config Fastleave on 1st rx_port await common_bridge_and_igmp_setup(dev_name, bridge, igmp_ver, dut_ports) out = await BridgeLink.set( input_data=[{dev_name: [ {'device': dut_ports[1], 'fastleave': 'on'}]}]) err_msg = f'Verify that port entities set to fastleave ON.\n{out}' assert out[0][dev_name]['rc'] == 0, err_msg # 2.Init interfaces and create 2 mcast Streams # 3.Create 3 membership report streams, 1 stream with invalid checksum dev_groups = tgen_utils_dev_groups_from_config( [{'ixp': tg_ports[0], 'ip': '102.0.0.3', 'gw': '102.0.0.1', 'plen': 24}, {'ixp': tg_ports[1], 'ip': '100.0.0.3', 'gw': '100.0.0.1', 'plen': 24}, {'ixp': tg_ports[2], 'ip': '101.0.0.3', 'gw': '101.0.0.1', 'plen': 24}, {'ixp': tg_ports[3], 'ip': '99.0.0.3', 'gw': '99.0.0.1', 'plen': 24}]) await tgen_utils_traffic_generator_connect(tgen_dev, tg_ports, dut_ports, dev_groups) tx_port = dev_groups[tg_ports[0]][0]['name'] rx_ports = [dev_groups[tg_ports[1]][0]['name'], dev_groups[tg_ports[2]][0]['name'], dev_groups[tg_ports[3]][0]['name']] streams = {f'mcast_{idx + 1}': { 'type': 'raw', 'protocol': 'ip', 'ip_source': tx_port, 'ip_destination': rx_ports[1], 'srcMac': macs[0], 'dstMac': mcast_ip_to_mac(dst_ip), 'srcIp': '0.0.0.0', 'dstIp': dst_ip, 'frame_rate_type': 'line_rate', 'rate': 40, } for idx, dst_ip in enumerate([mcast_group1, mcast_group2])} streams.update({f'member_report{idx + 1}': { 'type': 'raw', 'protocol': 'ip', 'ip_source': dev_groups[tg_ports[idx + 1]][0]['name'], 'ip_destination': dev_groups[tg_ports[0]][0]['name'], 'srcMac': mac, 'dstMac': mcast_ip_to_mac(grp_addr), 'srcIp': dev_groups[tg_ports[idx + 1]][0]['ip'], 'dstIp': grp_addr, 'ipproto': igmpv_and_type[igmp_msg_ver]['igmp_msg_v'], 'totalLength': igmpv_and_type[igmp_msg_ver]['totalLength'], 'igmpType': igmpv_and_type[igmp_msg_ver]['igmp_type'], 'igmpGroupAddr': grp_addr, 'rate': 1, 'transmissionControlType': 'fixedPktCount', 'frameCount': 1 } for idx, (grp_addr, mac) in enumerate(zip(mcast_group_addr, macs[1:])) }) streams['member_report3']['igmpChecksum'] = '0' if igmp_msg_ver == 3: for name, stream in streams.items(): if 'member_report' in name: stream['numberOfSources'] = '1' await tgen_utils_setup_streams(tgen_dev, config_file_name=None, streams=streams) # 4.Send Traffic from tx_port and rx_ports await tgen_utils_start_traffic(tgen_dev) await asyncio.sleep(sleep_value) # 5.Verify MDB entries were created from clients mdb_entires, _ = await get_bridge_mdb(dev_name) > verify_mdb_entries(mdb_entires, dut_ports[1:3], mcast_group_addr[:-1]) /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py:253: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ mdb_entries = [{'dev': 'br0', 'flags': [], 'grp': 'ff02::6a', 'index': 122, ...}, {'dev': 'br0', 'flags': [], 'grp': 'ff02::1:ff1b:fab2', 'index': 122, ...}] port_names = ['swp34', 'swp35'], grp_addrs = ['227.1.1.1', '239.2.2.2'] exp = None def verify_mdb_entries(mdb_entries, port_names, grp_addrs, exp=None): """ Verify that expected Mdb entires are present in Mdb table Args: mdb_entries (dict): Dict with Mdb entries port_names (list): DUT port names expected to be in Mdb entries grp_addrs (list): Igmp group address to check exp (int): Expected num of entries """ ports_count = 0 ports_expected = exp if exp else len(port_names) for port, group in zip(port_names, grp_addrs): for mdb in mdb_entries: if mdb['port'] == port: assert mdb['grp'] == group, f'Mdb entry by port {port} is {mdb[port]} expected {group}' ports_count += 1 > assert ports_count == ports_expected, f'Ports {port_names} absent in Mdb {mdb_entries}' E AssertionError: Ports ['swp34', 'swp35'] absent in Mdb [{'index': 122, 'dev': 'br0', 'port': 'br0', 'grp': 'ff02::6a', 'state': 'temp', 'flags': [], 'vid': 1, 'timer': ' 117.72'}, {'index': 122, 'dev': 'br0', 'port': 'br0', 'grp': 'ff02::1:ff1b:fab2', 'state': 'temp', 'flags': [], 'vid': 1, 'timer': ' 117.72'}] E assert 0 == 2 /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py:130: AssertionError -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_igmp_snooping_mixed_ver[3-3]">Starting testcase:test_igmp_snooping_mixed_ver[3-3] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-5752' coro=<test_igmp_snooping_mixed_ver() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py:171> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=92, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=93] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=93] Local address: 172.17.0.3, port 36012 INFO asyncssh:logging.py:92 [conn=93] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=93] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=93] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=93, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 22:13:23 UTC 2023 INFO asyncssh:logging.py:92 [conn=93, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=93, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=93, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=93, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=93, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=93, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=93, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 type bridge mcast_snooping 1 mcast_igmp_version 3 INFO asyncssh:logging.py:92 [conn=93, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=6] Command: ip link set dev br0 type bridge mcast_snooping 1 mcast_igmp_version 3 INFO asyncssh:logging.py:92 [conn=93, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=93, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=93, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=8] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=93, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=93, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=9] Channel closed DEBUG infra2:Logger.py:156 bridge link set dev swp34 fastleave on INFO asyncssh:logging.py:92 [conn=93, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=10] Command: bridge link set dev swp34 fastleave on INFO asyncssh:logging.py:92 [conn=93, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_102.0.0.3/24', 'count': 1, 'ip': '102.0.0.3', 'gw': '102.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_100.0.0.3/24', 'count': 1, 'ip': '100.0.0.3', 'gw': '100.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_101.0.0.3/24', 'count': 1, 'ip': '101.0.0.3', 'gw': '101.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_99.0.0.3/24', 'count': 1, 'ip': '99.0.0.3', 'gw': '99.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mcast_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mcast_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_102.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_100.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_101.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_99.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=93, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=11] Channel closed DEBUG infra2:Logger.py:156 bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=93, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=12] Command: bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=93, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=12] Channel closed DEBUG infra2:Logger.py:156 [{"mdb":[{"index":122,"dev":"br0","port":"br0","grp":"ff02::6a","state":"temp","flags":[],"vid":1,"timer":" 117.72"},{"index":122,"dev":"br0","port":"br0","grp":"ff02::1:ff1b:fab2","state":"temp","flags":[],"vid":1,"timer":" 117.72"}],"router":{}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_igmp_snooping_mixed_ver[3-3] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py INFO asyncssh:logging.py:92 [conn=93, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=93, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=14] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 22:16:33 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=93, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=93, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=93, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":122,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=93, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=93, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=93, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=93, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=93, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=93, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=93, chan=18] Channel closed DEBUG infra2:Logger.py:156 | |||
| Failed | functional/igmp/test_igmp_snooping.py::test_igmp_snooping_mixed_ver[2-1] | 190.00 | |
|
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7fb7fd4457b0> igmp_ver = 2, igmp_msg_ver = 1 @pytest.mark.parametrize('igmp_ver, igmp_msg_ver', [(2, 2), (3, 3), (2, 1), (3, 1), (3, 2)]) async def test_igmp_snooping_mixed_ver(testbed, igmp_ver, igmp_msg_ver): """ Test Name: test_igmp_snooping Test Suite: suite_functional_igmp Test Overview: Test IGMP snooping mixed and identical versions Test Procedure: 1. Create bridge and enable IGMP Snooping, enslave all TG ports to bridge interface Config Fastleave on 1st rx_port 2. Init interfaces and create 2 mcast Streams 3. Create 3 membership report streams, 1 with invalid checksum 4. Send Traffic from router port and from clients 5. Verify Mdb entries were created from clients 6. Verify the multicast traffic is flooded to all bridge ports 7. Stop traffic, create a general query stream from tx_port and send traffic 8. Verify MDB entries were created for router 9. Verify the traffic is forwarded to the members only 10. Create and send Leave stream from 1st rx_port 11. Verify MDB entry for leave port is deleted and no traffic is received """ bridge = 'br0' sleep_value = 8 tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], 4) if not tgen_dev or not dent_devices: pytest.skip('The testbed does not have enough dent with tgen connections') dev_name = dent_devices[0].host_name tg_ports = tgen_dev.links_dict[dev_name][0] dut_ports = tgen_dev.links_dict[dev_name][1] mcast_group1 = '227.1.1.1' mcast_group2 = '239.2.2.2' mcast_group_addr = [mcast_group1, mcast_group2, mcast_group2] macs = ['a6:00:00:00:00:01', 'a6:00:00:00:00:02', 'a6:00:00:00:00:03', 'a6:00:00:00:00:04'] igmpv_and_type = {1: {'igmp_msg_v': 'igmpv2', 'igmp_type': '18', 'totalLength': '28'}, 2: {'igmp_msg_v': 'igmpv2', 'igmp_type': '22', 'totalLength': '28'}, 3: {'igmp_msg_v': 'igmpv3MembershipReport', 'igmp_type': '22', 'totalLength': '40'}} # 1.Create bridge and enable IGMP Snooping, enslave all TG ports to bridge interface # Config Fastleave on 1st rx_port await common_bridge_and_igmp_setup(dev_name, bridge, igmp_ver, dut_ports) out = await BridgeLink.set( input_data=[{dev_name: [ {'device': dut_ports[1], 'fastleave': 'on'}]}]) err_msg = f'Verify that port entities set to fastleave ON.\n{out}' assert out[0][dev_name]['rc'] == 0, err_msg # 2.Init interfaces and create 2 mcast Streams # 3.Create 3 membership report streams, 1 stream with invalid checksum dev_groups = tgen_utils_dev_groups_from_config( [{'ixp': tg_ports[0], 'ip': '102.0.0.3', 'gw': '102.0.0.1', 'plen': 24}, {'ixp': tg_ports[1], 'ip': '100.0.0.3', 'gw': '100.0.0.1', 'plen': 24}, {'ixp': tg_ports[2], 'ip': '101.0.0.3', 'gw': '101.0.0.1', 'plen': 24}, {'ixp': tg_ports[3], 'ip': '99.0.0.3', 'gw': '99.0.0.1', 'plen': 24}]) await tgen_utils_traffic_generator_connect(tgen_dev, tg_ports, dut_ports, dev_groups) tx_port = dev_groups[tg_ports[0]][0]['name'] rx_ports = [dev_groups[tg_ports[1]][0]['name'], dev_groups[tg_ports[2]][0]['name'], dev_groups[tg_ports[3]][0]['name']] streams = {f'mcast_{idx + 1}': { 'type': 'raw', 'protocol': 'ip', 'ip_source': tx_port, 'ip_destination': rx_ports[1], 'srcMac': macs[0], 'dstMac': mcast_ip_to_mac(dst_ip), 'srcIp': '0.0.0.0', 'dstIp': dst_ip, 'frame_rate_type': 'line_rate', 'rate': 40, } for idx, dst_ip in enumerate([mcast_group1, mcast_group2])} streams.update({f'member_report{idx + 1}': { 'type': 'raw', 'protocol': 'ip', 'ip_source': dev_groups[tg_ports[idx + 1]][0]['name'], 'ip_destination': dev_groups[tg_ports[0]][0]['name'], 'srcMac': mac, 'dstMac': mcast_ip_to_mac(grp_addr), 'srcIp': dev_groups[tg_ports[idx + 1]][0]['ip'], 'dstIp': grp_addr, 'ipproto': igmpv_and_type[igmp_msg_ver]['igmp_msg_v'], 'totalLength': igmpv_and_type[igmp_msg_ver]['totalLength'], 'igmpType': igmpv_and_type[igmp_msg_ver]['igmp_type'], 'igmpGroupAddr': grp_addr, 'rate': 1, 'transmissionControlType': 'fixedPktCount', 'frameCount': 1 } for idx, (grp_addr, mac) in enumerate(zip(mcast_group_addr, macs[1:])) }) streams['member_report3']['igmpChecksum'] = '0' if igmp_msg_ver == 3: for name, stream in streams.items(): if 'member_report' in name: stream['numberOfSources'] = '1' await tgen_utils_setup_streams(tgen_dev, config_file_name=None, streams=streams) # 4.Send Traffic from tx_port and rx_ports await tgen_utils_start_traffic(tgen_dev) await asyncio.sleep(sleep_value) # 5.Verify MDB entries were created from clients mdb_entires, _ = await get_bridge_mdb(dev_name) > verify_mdb_entries(mdb_entires, dut_ports[1:3], mcast_group_addr[:-1]) /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py:253: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ mdb_entries = [{'dev': 'br0', 'flags': [], 'grp': 'ff02::6a', 'index': 123, ...}, {'dev': 'br0', 'flags': [], 'grp': 'ff02::1:ffc4:e432', 'index': 123, ...}] port_names = ['swp34', 'swp35'], grp_addrs = ['227.1.1.1', '239.2.2.2'] exp = None def verify_mdb_entries(mdb_entries, port_names, grp_addrs, exp=None): """ Verify that expected Mdb entires are present in Mdb table Args: mdb_entries (dict): Dict with Mdb entries port_names (list): DUT port names expected to be in Mdb entries grp_addrs (list): Igmp group address to check exp (int): Expected num of entries """ ports_count = 0 ports_expected = exp if exp else len(port_names) for port, group in zip(port_names, grp_addrs): for mdb in mdb_entries: if mdb['port'] == port: assert mdb['grp'] == group, f'Mdb entry by port {port} is {mdb[port]} expected {group}' ports_count += 1 > assert ports_count == ports_expected, f'Ports {port_names} absent in Mdb {mdb_entries}' E AssertionError: Ports ['swp34', 'swp35'] absent in Mdb [{'index': 123, 'dev': 'br0', 'port': 'br0', 'grp': 'ff02::6a', 'state': 'temp', 'flags': [], 'vid': 1, 'timer': ' 116.27'}, {'index': 123, 'dev': 'br0', 'port': 'br0', 'grp': 'ff02::1:ffc4:e432', 'state': 'temp', 'flags': [], 'vid': 1, 'timer': ' 116.27'}] E assert 0 == 2 /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py:130: AssertionError -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_igmp_snooping_mixed_ver[2-1]">Starting testcase:test_igmp_snooping_mixed_ver[2-1] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-5778' coro=<test_igmp_snooping_mixed_ver() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py:171> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=93, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=94] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=94] Local address: 172.17.0.3, port 35680 INFO asyncssh:logging.py:92 [conn=94] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=94] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=94] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=94, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 22:16:33 UTC 2023 INFO asyncssh:logging.py:92 [conn=94, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=94, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=94, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=94, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=94, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=94, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=94, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 type bridge mcast_snooping 1 mcast_igmp_version 2 INFO asyncssh:logging.py:92 [conn=94, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=6] Command: ip link set dev br0 type bridge mcast_snooping 1 mcast_igmp_version 2 INFO asyncssh:logging.py:92 [conn=94, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=94, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=94, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=8] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=94, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=94, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=9] Channel closed DEBUG infra2:Logger.py:156 bridge link set dev swp34 fastleave on INFO asyncssh:logging.py:92 [conn=94, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=10] Command: bridge link set dev swp34 fastleave on INFO asyncssh:logging.py:92 [conn=94, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_102.0.0.3/24', 'count': 1, 'ip': '102.0.0.3', 'gw': '102.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_100.0.0.3/24', 'count': 1, 'ip': '100.0.0.3', 'gw': '100.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_101.0.0.3/24', 'count': 1, 'ip': '101.0.0.3', 'gw': '101.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_99.0.0.3/24', 'count': 1, 'ip': '99.0.0.3', 'gw': '99.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mcast_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mcast_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_102.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_100.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_101.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_99.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=94, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=11] Channel closed DEBUG infra2:Logger.py:156 bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=94, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=12] Command: bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=94, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=12] Channel closed DEBUG infra2:Logger.py:156 [{"mdb":[{"index":123,"dev":"br0","port":"br0","grp":"ff02::6a","state":"temp","flags":[],"vid":1,"timer":" 116.27"},{"index":123,"dev":"br0","port":"br0","grp":"ff02::1:ffc4:e432","state":"temp","flags":[],"vid":1,"timer":" 116.27"}],"router":{}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_igmp_snooping_mixed_ver[2-1] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py INFO asyncssh:logging.py:92 [conn=94, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=94, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=14] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 22:19:43 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=94, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=94, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=94, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":123,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=94, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=94, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=94, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=94, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=94, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=94, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=94, chan=18] Channel closed DEBUG infra2:Logger.py:156 | |||
| Failed | functional/igmp/test_igmp_snooping.py::test_igmp_snooping_mixed_ver[3-1] | 197.77 | |
|
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7fb7fd4457b0> igmp_ver = 3, igmp_msg_ver = 1 @pytest.mark.parametrize('igmp_ver, igmp_msg_ver', [(2, 2), (3, 3), (2, 1), (3, 1), (3, 2)]) async def test_igmp_snooping_mixed_ver(testbed, igmp_ver, igmp_msg_ver): """ Test Name: test_igmp_snooping Test Suite: suite_functional_igmp Test Overview: Test IGMP snooping mixed and identical versions Test Procedure: 1. Create bridge and enable IGMP Snooping, enslave all TG ports to bridge interface Config Fastleave on 1st rx_port 2. Init interfaces and create 2 mcast Streams 3. Create 3 membership report streams, 1 with invalid checksum 4. Send Traffic from router port and from clients 5. Verify Mdb entries were created from clients 6. Verify the multicast traffic is flooded to all bridge ports 7. Stop traffic, create a general query stream from tx_port and send traffic 8. Verify MDB entries were created for router 9. Verify the traffic is forwarded to the members only 10. Create and send Leave stream from 1st rx_port 11. Verify MDB entry for leave port is deleted and no traffic is received """ bridge = 'br0' sleep_value = 8 tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], 4) if not tgen_dev or not dent_devices: pytest.skip('The testbed does not have enough dent with tgen connections') dev_name = dent_devices[0].host_name tg_ports = tgen_dev.links_dict[dev_name][0] dut_ports = tgen_dev.links_dict[dev_name][1] mcast_group1 = '227.1.1.1' mcast_group2 = '239.2.2.2' mcast_group_addr = [mcast_group1, mcast_group2, mcast_group2] macs = ['a6:00:00:00:00:01', 'a6:00:00:00:00:02', 'a6:00:00:00:00:03', 'a6:00:00:00:00:04'] igmpv_and_type = {1: {'igmp_msg_v': 'igmpv2', 'igmp_type': '18', 'totalLength': '28'}, 2: {'igmp_msg_v': 'igmpv2', 'igmp_type': '22', 'totalLength': '28'}, 3: {'igmp_msg_v': 'igmpv3MembershipReport', 'igmp_type': '22', 'totalLength': '40'}} # 1.Create bridge and enable IGMP Snooping, enslave all TG ports to bridge interface # Config Fastleave on 1st rx_port await common_bridge_and_igmp_setup(dev_name, bridge, igmp_ver, dut_ports) out = await BridgeLink.set( input_data=[{dev_name: [ {'device': dut_ports[1], 'fastleave': 'on'}]}]) err_msg = f'Verify that port entities set to fastleave ON.\n{out}' assert out[0][dev_name]['rc'] == 0, err_msg # 2.Init interfaces and create 2 mcast Streams # 3.Create 3 membership report streams, 1 stream with invalid checksum dev_groups = tgen_utils_dev_groups_from_config( [{'ixp': tg_ports[0], 'ip': '102.0.0.3', 'gw': '102.0.0.1', 'plen': 24}, {'ixp': tg_ports[1], 'ip': '100.0.0.3', 'gw': '100.0.0.1', 'plen': 24}, {'ixp': tg_ports[2], 'ip': '101.0.0.3', 'gw': '101.0.0.1', 'plen': 24}, {'ixp': tg_ports[3], 'ip': '99.0.0.3', 'gw': '99.0.0.1', 'plen': 24}]) await tgen_utils_traffic_generator_connect(tgen_dev, tg_ports, dut_ports, dev_groups) tx_port = dev_groups[tg_ports[0]][0]['name'] rx_ports = [dev_groups[tg_ports[1]][0]['name'], dev_groups[tg_ports[2]][0]['name'], dev_groups[tg_ports[3]][0]['name']] streams = {f'mcast_{idx + 1}': { 'type': 'raw', 'protocol': 'ip', 'ip_source': tx_port, 'ip_destination': rx_ports[1], 'srcMac': macs[0], 'dstMac': mcast_ip_to_mac(dst_ip), 'srcIp': '0.0.0.0', 'dstIp': dst_ip, 'frame_rate_type': 'line_rate', 'rate': 40, } for idx, dst_ip in enumerate([mcast_group1, mcast_group2])} streams.update({f'member_report{idx + 1}': { 'type': 'raw', 'protocol': 'ip', 'ip_source': dev_groups[tg_ports[idx + 1]][0]['name'], 'ip_destination': dev_groups[tg_ports[0]][0]['name'], 'srcMac': mac, 'dstMac': mcast_ip_to_mac(grp_addr), 'srcIp': dev_groups[tg_ports[idx + 1]][0]['ip'], 'dstIp': grp_addr, 'ipproto': igmpv_and_type[igmp_msg_ver]['igmp_msg_v'], 'totalLength': igmpv_and_type[igmp_msg_ver]['totalLength'], 'igmpType': igmpv_and_type[igmp_msg_ver]['igmp_type'], 'igmpGroupAddr': grp_addr, 'rate': 1, 'transmissionControlType': 'fixedPktCount', 'frameCount': 1 } for idx, (grp_addr, mac) in enumerate(zip(mcast_group_addr, macs[1:])) }) streams['member_report3']['igmpChecksum'] = '0' if igmp_msg_ver == 3: for name, stream in streams.items(): if 'member_report' in name: stream['numberOfSources'] = '1' await tgen_utils_setup_streams(tgen_dev, config_file_name=None, streams=streams) # 4.Send Traffic from tx_port and rx_ports await tgen_utils_start_traffic(tgen_dev) await asyncio.sleep(sleep_value) # 5.Verify MDB entries were created from clients mdb_entires, _ = await get_bridge_mdb(dev_name) > verify_mdb_entries(mdb_entires, dut_ports[1:3], mcast_group_addr[:-1]) /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py:253: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ mdb_entries = [{'dev': 'br0', 'flags': [], 'grp': 'ff02::6a', 'index': 124, ...}, {'dev': 'br0', 'flags': [], 'grp': 'ff02::1:fff7:2005', 'index': 124, ...}] port_names = ['swp34', 'swp35'], grp_addrs = ['227.1.1.1', '239.2.2.2'] exp = None def verify_mdb_entries(mdb_entries, port_names, grp_addrs, exp=None): """ Verify that expected Mdb entires are present in Mdb table Args: mdb_entries (dict): Dict with Mdb entries port_names (list): DUT port names expected to be in Mdb entries grp_addrs (list): Igmp group address to check exp (int): Expected num of entries """ ports_count = 0 ports_expected = exp if exp else len(port_names) for port, group in zip(port_names, grp_addrs): for mdb in mdb_entries: if mdb['port'] == port: assert mdb['grp'] == group, f'Mdb entry by port {port} is {mdb[port]} expected {group}' ports_count += 1 > assert ports_count == ports_expected, f'Ports {port_names} absent in Mdb {mdb_entries}' E AssertionError: Ports ['swp34', 'swp35'] absent in Mdb [{'index': 124, 'dev': 'br0', 'port': 'br0', 'grp': 'ff02::6a', 'state': 'temp', 'flags': [], 'vid': 1, 'timer': ' 109.93'}, {'index': 124, 'dev': 'br0', 'port': 'br0', 'grp': 'ff02::1:fff7:2005', 'state': 'temp', 'flags': [], 'vid': 1, 'timer': ' 109.93'}] E assert 0 == 2 /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py:130: AssertionError -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_igmp_snooping_mixed_ver[3-1]">Starting testcase:test_igmp_snooping_mixed_ver[3-1] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-5804' coro=<test_igmp_snooping_mixed_ver() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py:171> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=94, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=95] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=95] Local address: 172.17.0.3, port 44360 INFO asyncssh:logging.py:92 [conn=95] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=95] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=95] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=95, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=95, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 22:19:43 UTC 2023 INFO asyncssh:logging.py:92 [conn=95, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=95, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=95, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=95, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=95, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=95, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=95, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=95, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=95, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=95, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 type bridge mcast_snooping 1 mcast_igmp_version 3 INFO asyncssh:logging.py:92 [conn=95, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=6] Command: ip link set dev br0 type bridge mcast_snooping 1 mcast_igmp_version 3 INFO asyncssh:logging.py:92 [conn=95, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=95, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=95, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=95, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=8] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=95, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=95, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=95, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=9] Channel closed DEBUG infra2:Logger.py:156 bridge link set dev swp34 fastleave on INFO asyncssh:logging.py:92 [conn=95, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=10] Command: bridge link set dev swp34 fastleave on INFO asyncssh:logging.py:92 [conn=95, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_102.0.0.3/24', 'count': 1, 'ip': '102.0.0.3', 'gw': '102.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_100.0.0.3/24', 'count': 1, 'ip': '100.0.0.3', 'gw': '100.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_101.0.0.3/24', 'count': 1, 'ip': '101.0.0.3', 'gw': '101.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_99.0.0.3/24', 'count': 1, 'ip': '99.0.0.3', 'gw': '99.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mcast_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mcast_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_102.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_100.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_101.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_99.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=95, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=95, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=11] Channel closed DEBUG infra2:Logger.py:156 bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=95, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=12] Command: bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=95, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=12] Channel closed DEBUG infra2:Logger.py:156 [{"mdb":[{"index":124,"dev":"br0","port":"br0","grp":"ff02::6a","state":"temp","flags":[],"vid":1,"timer":" 109.93"},{"index":124,"dev":"br0","port":"br0","grp":"ff02::1:fff7:2005","state":"temp","flags":[],"vid":1,"timer":" 109.93"}],"router":{}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_igmp_snooping_mixed_ver[3-1] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py INFO asyncssh:logging.py:92 [conn=95, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=95, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=95, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=95, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=14] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 22:23:00 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=95, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=95, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=95, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=95, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":124,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=95, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=95, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=95, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=95, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=95, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=95, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=95, chan=18] Channel closed DEBUG infra2:Logger.py:156 | |||
| Failed | functional/igmp/test_igmp_snooping.py::test_igmp_snooping_mixed_ver[3-2] | 184.80 | |
|
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7fb7fd4457b0> igmp_ver = 3, igmp_msg_ver = 2 @pytest.mark.parametrize('igmp_ver, igmp_msg_ver', [(2, 2), (3, 3), (2, 1), (3, 1), (3, 2)]) async def test_igmp_snooping_mixed_ver(testbed, igmp_ver, igmp_msg_ver): """ Test Name: test_igmp_snooping Test Suite: suite_functional_igmp Test Overview: Test IGMP snooping mixed and identical versions Test Procedure: 1. Create bridge and enable IGMP Snooping, enslave all TG ports to bridge interface Config Fastleave on 1st rx_port 2. Init interfaces and create 2 mcast Streams 3. Create 3 membership report streams, 1 with invalid checksum 4. Send Traffic from router port and from clients 5. Verify Mdb entries were created from clients 6. Verify the multicast traffic is flooded to all bridge ports 7. Stop traffic, create a general query stream from tx_port and send traffic 8. Verify MDB entries were created for router 9. Verify the traffic is forwarded to the members only 10. Create and send Leave stream from 1st rx_port 11. Verify MDB entry for leave port is deleted and no traffic is received """ bridge = 'br0' sleep_value = 8 tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], 4) if not tgen_dev or not dent_devices: pytest.skip('The testbed does not have enough dent with tgen connections') dev_name = dent_devices[0].host_name tg_ports = tgen_dev.links_dict[dev_name][0] dut_ports = tgen_dev.links_dict[dev_name][1] mcast_group1 = '227.1.1.1' mcast_group2 = '239.2.2.2' mcast_group_addr = [mcast_group1, mcast_group2, mcast_group2] macs = ['a6:00:00:00:00:01', 'a6:00:00:00:00:02', 'a6:00:00:00:00:03', 'a6:00:00:00:00:04'] igmpv_and_type = {1: {'igmp_msg_v': 'igmpv2', 'igmp_type': '18', 'totalLength': '28'}, 2: {'igmp_msg_v': 'igmpv2', 'igmp_type': '22', 'totalLength': '28'}, 3: {'igmp_msg_v': 'igmpv3MembershipReport', 'igmp_type': '22', 'totalLength': '40'}} # 1.Create bridge and enable IGMP Snooping, enslave all TG ports to bridge interface # Config Fastleave on 1st rx_port await common_bridge_and_igmp_setup(dev_name, bridge, igmp_ver, dut_ports) out = await BridgeLink.set( input_data=[{dev_name: [ {'device': dut_ports[1], 'fastleave': 'on'}]}]) err_msg = f'Verify that port entities set to fastleave ON.\n{out}' assert out[0][dev_name]['rc'] == 0, err_msg # 2.Init interfaces and create 2 mcast Streams # 3.Create 3 membership report streams, 1 stream with invalid checksum dev_groups = tgen_utils_dev_groups_from_config( [{'ixp': tg_ports[0], 'ip': '102.0.0.3', 'gw': '102.0.0.1', 'plen': 24}, {'ixp': tg_ports[1], 'ip': '100.0.0.3', 'gw': '100.0.0.1', 'plen': 24}, {'ixp': tg_ports[2], 'ip': '101.0.0.3', 'gw': '101.0.0.1', 'plen': 24}, {'ixp': tg_ports[3], 'ip': '99.0.0.3', 'gw': '99.0.0.1', 'plen': 24}]) await tgen_utils_traffic_generator_connect(tgen_dev, tg_ports, dut_ports, dev_groups) tx_port = dev_groups[tg_ports[0]][0]['name'] rx_ports = [dev_groups[tg_ports[1]][0]['name'], dev_groups[tg_ports[2]][0]['name'], dev_groups[tg_ports[3]][0]['name']] streams = {f'mcast_{idx + 1}': { 'type': 'raw', 'protocol': 'ip', 'ip_source': tx_port, 'ip_destination': rx_ports[1], 'srcMac': macs[0], 'dstMac': mcast_ip_to_mac(dst_ip), 'srcIp': '0.0.0.0', 'dstIp': dst_ip, 'frame_rate_type': 'line_rate', 'rate': 40, } for idx, dst_ip in enumerate([mcast_group1, mcast_group2])} streams.update({f'member_report{idx + 1}': { 'type': 'raw', 'protocol': 'ip', 'ip_source': dev_groups[tg_ports[idx + 1]][0]['name'], 'ip_destination': dev_groups[tg_ports[0]][0]['name'], 'srcMac': mac, 'dstMac': mcast_ip_to_mac(grp_addr), 'srcIp': dev_groups[tg_ports[idx + 1]][0]['ip'], 'dstIp': grp_addr, 'ipproto': igmpv_and_type[igmp_msg_ver]['igmp_msg_v'], 'totalLength': igmpv_and_type[igmp_msg_ver]['totalLength'], 'igmpType': igmpv_and_type[igmp_msg_ver]['igmp_type'], 'igmpGroupAddr': grp_addr, 'rate': 1, 'transmissionControlType': 'fixedPktCount', 'frameCount': 1 } for idx, (grp_addr, mac) in enumerate(zip(mcast_group_addr, macs[1:])) }) streams['member_report3']['igmpChecksum'] = '0' if igmp_msg_ver == 3: for name, stream in streams.items(): if 'member_report' in name: stream['numberOfSources'] = '1' await tgen_utils_setup_streams(tgen_dev, config_file_name=None, streams=streams) # 4.Send Traffic from tx_port and rx_ports await tgen_utils_start_traffic(tgen_dev) await asyncio.sleep(sleep_value) # 5.Verify MDB entries were created from clients mdb_entires, _ = await get_bridge_mdb(dev_name) > verify_mdb_entries(mdb_entires, dut_ports[1:3], mcast_group_addr[:-1]) /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py:253: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ mdb_entries = [{'dev': 'br0', 'flags': [], 'grp': 'ff02::6a', 'index': 125, ...}, {'dev': 'br0', 'flags': [], 'grp': 'ff02::1:ffac:202f', 'index': 125, ...}] port_names = ['swp34', 'swp35'], grp_addrs = ['227.1.1.1', '239.2.2.2'] exp = None def verify_mdb_entries(mdb_entries, port_names, grp_addrs, exp=None): """ Verify that expected Mdb entires are present in Mdb table Args: mdb_entries (dict): Dict with Mdb entries port_names (list): DUT port names expected to be in Mdb entries grp_addrs (list): Igmp group address to check exp (int): Expected num of entries """ ports_count = 0 ports_expected = exp if exp else len(port_names) for port, group in zip(port_names, grp_addrs): for mdb in mdb_entries: if mdb['port'] == port: assert mdb['grp'] == group, f'Mdb entry by port {port} is {mdb[port]} expected {group}' ports_count += 1 > assert ports_count == ports_expected, f'Ports {port_names} absent in Mdb {mdb_entries}' E AssertionError: Ports ['swp34', 'swp35'] absent in Mdb [{'index': 125, 'dev': 'br0', 'port': 'br0', 'grp': 'ff02::6a', 'state': 'temp', 'flags': [], 'vid': 1, 'timer': ' 118.72'}, {'index': 125, 'dev': 'br0', 'port': 'br0', 'grp': 'ff02::1:ffac:202f', 'state': 'temp', 'flags': [], 'vid': 1, 'timer': ' 118.72'}] E assert 0 == 2 /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py:130: AssertionError -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_igmp_snooping_mixed_ver[3-2]">Starting testcase:test_igmp_snooping_mixed_ver[3-2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-5830' coro=<test_igmp_snooping_mixed_ver() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py:171> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=95, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=96] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=96] Local address: 172.17.0.3, port 55626 INFO asyncssh:logging.py:92 [conn=96] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=96] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=96] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=96, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 22:23:01 UTC 2023 INFO asyncssh:logging.py:92 [conn=96, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=96, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=96, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=96, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=96, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=96, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=96, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 type bridge mcast_snooping 1 mcast_igmp_version 3 INFO asyncssh:logging.py:92 [conn=96, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=6] Command: ip link set dev br0 type bridge mcast_snooping 1 mcast_igmp_version 3 INFO asyncssh:logging.py:92 [conn=96, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=96, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=96, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=8] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=96, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=96, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=9] Channel closed DEBUG infra2:Logger.py:156 bridge link set dev swp34 fastleave on INFO asyncssh:logging.py:92 [conn=96, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=10] Command: bridge link set dev swp34 fastleave on INFO asyncssh:logging.py:92 [conn=96, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_102.0.0.3/24', 'count': 1, 'ip': '102.0.0.3', 'gw': '102.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_100.0.0.3/24', 'count': 1, 'ip': '100.0.0.3', 'gw': '100.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_101.0.0.3/24', 'count': 1, 'ip': '101.0.0.3', 'gw': '101.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_99.0.0.3/24', 'count': 1, 'ip': '99.0.0.3', 'gw': '99.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mcast_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mcast_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_102.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_100.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_101.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_99.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=96, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=11] Channel closed DEBUG infra2:Logger.py:156 bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=96, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=12] Command: bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=96, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=12] Channel closed DEBUG infra2:Logger.py:156 [{"mdb":[{"index":125,"dev":"br0","port":"br0","grp":"ff02::6a","state":"temp","flags":[],"vid":1,"timer":" 118.72"},{"index":125,"dev":"br0","port":"br0","grp":"ff02::1:ffac:202f","state":"temp","flags":[],"vid":1,"timer":" 118.72"}],"router":{}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_igmp_snooping_mixed_ver[3-2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py INFO asyncssh:logging.py:92 [conn=96, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=96, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=14] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 22:26:05 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=96, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=96, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=96, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":125,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=96, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=96, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=96, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=96, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=96, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=96, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=96, chan=18] Channel closed DEBUG infra2:Logger.py:156 | |||
| Failed | functional/igmp/test_igmp_snooping.py::test_igmp_snooping_diff_source_addrs | 204.60 | |
|
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7fb7fd4457b0> async def test_igmp_snooping_diff_source_addrs(testbed): """ Test Name: test_igmp_snooping_diff_sources Test Suite: suite_functional_igmp Test Overview: Test IGMP snooping with different source addrs Test Procedure: 1. Create a bridge and enable IGMP Snooping v3, Enslave all TG ports to bridge interface and set all interfaces to up state 2. Init interfaces, create 4 multicast streams and 1 general query 3. Generate 3 Membership reports from the clients, 1 with invalid Checksum 4. Send Traffic from router port and from clients 5. Verify Mdb entries were created from clients and router 6. Verify the multicast traffic is flooded to the client #1 and #2 only 7. Statically un-subscribe client #1 from multicast group 227.1.1.1 8. Verify the Mdb entry for client #1 is deleted 9. Verify the traffic is not forwarded to client #1 and still is to client #2 """ bridge = 'br0' mcast_group1 = '226.1.1.1' mcast_group2 = '238.2.2.2' sleep_value = 5 tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], 4) if not tgen_dev or not dent_devices: pytest.skip('The testbed does not have enough dent with tgen connections') dev_name = dent_devices[0].host_name tg_ports = tgen_dev.links_dict[dev_name][0] dut_ports = tgen_dev.links_dict[dev_name][1] macs = ['a6:00:00:00:00:01', 'a6:00:00:00:00:02', 'a6:00:00:00:00:03', 'a6:00:00:00:00:04'] mcast_group_addr = [mcast_group1, mcast_group2, mcast_group2] mrouter_1 = '80.1.1.5' mrouter_2 = '70.1.1.5' # 1.Create a bridge and enable IGMP Snooping v3, # Enslave all TG ports to bridge interface and set all interfaces to up state await common_bridge_and_igmp_setup(dev_name, bridge, 3, dut_ports) # 2.Init interfaces, create 4 multicast streams and 1 general query dev_groups = tgen_utils_dev_groups_from_config( [{'ixp': tg_ports[0], 'ip': '102.0.0.3', 'gw': '102.0.0.1', 'plen': 24}, {'ixp': tg_ports[1], 'ip': '100.0.0.3', 'gw': '100.0.0.1', 'plen': 24}, {'ixp': tg_ports[2], 'ip': '101.0.0.3', 'gw': '101.0.0.1', 'plen': 24}, {'ixp': tg_ports[3], 'ip': '99.0.0.3', 'gw': '99.0.0.1', 'plen': 24}]) await tgen_utils_traffic_generator_connect(tgen_dev, tg_ports, dut_ports, dev_groups) tx_port = dev_groups[tg_ports[0]][0]['name'] rx_ports = [dev_groups[tg_ports[1]][0]['name'], dev_groups[tg_ports[2]][0]['name'], dev_groups[tg_ports[3]][0]['name']] streams = {f'mcast_{idx + 1}': { 'type': 'raw', 'protocol': 'ip', 'ip_source': tx_port, 'ip_destination': rx_ports[1], 'srcMac': macs[0], 'dstMac': mcast_ip_to_mac(dst_ip), 'srcIp': '0.0.0.0', 'dstIp': dst_ip, 'frame_rate_type': 'line_rate', 'rate': 20, } for idx, dst_ip in enumerate([mcast_group1, mcast_group2, mcast_group1, mcast_group2])} streams.update({'igmp_query': { 'type': 'raw', 'protocol': 'ip', 'ip_source': tx_port, 'ip_destination': rx_ports[2], 'frameSize': '82', 'srcMac': macs[0], 'dstMac': mcast_ip_to_mac(GENERAL_QUERY_IP), 'srcIp': dev_groups[tg_ports[0]][0]['ip'], 'dstIp': GENERAL_QUERY_IP, 'ipproto': 'igmpv3MembershipQuery', 'totalLength': '32', 'igmpType': '11', 'igmpGroupAddr': '0.0.0.0', 'maxResponseCode': '99', 'numberOfSources': '0', 'rate': 1, 'transmissionControlType': 'fixedPktCount', 'frameCount': 1 }}) # 3.Generate 3 Membership reports from the clients, 1 with invalid checksum streams.update({f'member_report{idx + 1}': { 'type': 'raw', 'protocol': 'ip', 'ip_source': dev_groups[tg_ports[idx + 1]][0]['name'], 'ip_destination': dev_groups[tg_ports[0]][0]['name'], 'srcMac': mac, 'dstMac': mcast_ip_to_mac(grp_addr), 'srcIp': dev_groups[tg_ports[idx + 1]][0]['ip'], 'dstIp': grp_addr, 'ipproto': 'igmpv3MembershipReport', 'totalLength': '40', 'igmpType': '22', 'igmpGroupAddr': grp_addr, 'igmpRecordType': '5', 'igmpSourceAddr': router, 'numberOfSources': '1', 'rate': 1, 'transmissionControlType': 'fixedPktCount', 'frameCount': 1 } for idx, (grp_addr, mac, router) in enumerate(zip(mcast_group_addr, macs[1:], [mrouter_1, mrouter_2, mrouter_2])) }) streams['member_report3']['igmpChecksum'] = '0' await tgen_utils_setup_streams(tgen_dev, config_file_name=None, streams=streams) # 4.Send Traffic from router port and from clients await tgen_utils_start_traffic(tgen_dev) await asyncio.sleep(8) # 5.Verify Mdb entries were created from clients and router mdb_entires, router_entires = await get_bridge_mdb(dev_name) > verify_mdb_entries(mdb_entires, dut_ports[1:3], mcast_group_addr[:-1], exp=4) /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py:456: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ mdb_entries = [{'dev': 'br0', 'flags': [], 'grp': 'ff02::6a', 'index': 126, ...}, {'dev': 'br0', 'flags': [], 'grp': 'ff02::1:ffc1:581d', 'index': 126, ...}] port_names = ['swp34', 'swp35'], grp_addrs = ['226.1.1.1', '238.2.2.2'], exp = 4 def verify_mdb_entries(mdb_entries, port_names, grp_addrs, exp=None): """ Verify that expected Mdb entires are present in Mdb table Args: mdb_entries (dict): Dict with Mdb entries port_names (list): DUT port names expected to be in Mdb entries grp_addrs (list): Igmp group address to check exp (int): Expected num of entries """ ports_count = 0 ports_expected = exp if exp else len(port_names) for port, group in zip(port_names, grp_addrs): for mdb in mdb_entries: if mdb['port'] == port: assert mdb['grp'] == group, f'Mdb entry by port {port} is {mdb[port]} expected {group}' ports_count += 1 > assert ports_count == ports_expected, f'Ports {port_names} absent in Mdb {mdb_entries}' E AssertionError: Ports ['swp34', 'swp35'] absent in Mdb [{'index': 126, 'dev': 'br0', 'port': 'br0', 'grp': 'ff02::6a', 'state': 'temp', 'flags': [], 'vid': 1, 'timer': ' 100.29'}, {'index': 126, 'dev': 'br0', 'port': 'br0', 'grp': 'ff02::1:ffc1:581d', 'state': 'temp', 'flags': [], 'vid': 1, 'timer': ' 100.29'}] E assert 0 == 4 /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py:130: AssertionError -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_igmp_snooping_diff_source_addrs">Starting testcase:test_igmp_snooping_diff_source_addrs from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-5856' coro=<test_igmp_snooping_diff_source_addrs() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py:363> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=96, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=97] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=97] Local address: 172.17.0.3, port 42478 INFO asyncssh:logging.py:92 [conn=97] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=97] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=97] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=97, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=97, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 22:26:06 UTC 2023 INFO asyncssh:logging.py:92 [conn=97, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=97, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=97, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=97, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=97, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=97, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=97, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=97, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=97, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=97, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 type bridge mcast_snooping 1 mcast_igmp_version 3 INFO asyncssh:logging.py:92 [conn=97, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=6] Command: ip link set dev br0 type bridge mcast_snooping 1 mcast_igmp_version 3 INFO asyncssh:logging.py:92 [conn=97, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=97, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=97, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=97, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=8] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=97, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_102.0.0.3/24', 'count': 1, 'ip': '102.0.0.3', 'gw': '102.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_100.0.0.3/24', 'count': 1, 'ip': '100.0.0.3', 'gw': '100.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_101.0.0.3/24', 'count': 1, 'ip': '101.0.0.3', 'gw': '101.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_99.0.0.3/24', 'count': 1, 'ip': '99.0.0.3', 'gw': '99.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mcast_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mcast_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mcast_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mcast_4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for igmp_query INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_102.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_100.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_101.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_99.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=97, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=97, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=9] Channel closed DEBUG infra2:Logger.py:156 bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=97, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=10] Command: bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=97, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=10] Channel closed DEBUG infra2:Logger.py:156 [{"mdb":[{"index":126,"dev":"br0","port":"br0","grp":"ff02::6a","state":"temp","flags":[],"vid":1,"timer":" 100.29"},{"index":126,"dev":"br0","port":"br0","grp":"ff02::1:ffc1:581d","state":"temp","flags":[],"vid":1,"timer":" 100.29"}],"router":{}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_igmp_snooping_diff_source_addrs from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py INFO asyncssh:logging.py:92 [conn=97, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=97, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=11] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=97, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=97, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=12] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 22:29:30 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=97, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=97, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=97, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=14] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=97, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=14] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":126,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=97, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=97, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=97, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=97, chan=16] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=97, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=97, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=97, chan=16] Channel closed DEBUG infra2:Logger.py:156 | |||
| Failed | functional/igmp/test_igmp_snooping.py::test_igmp_snooping_modified_query | 195.53 | |
|
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7fb7fd4457b0> async def test_igmp_snooping_modified_query(testbed): """ Test Name: test_igmp_querier Test Suite: suite_functional_igmp Test Overview: Test IGMP snooping with modified querier interval Test Procedure: 1. Create a bridge and enable IGMP Snooping, enable querrier and change query interval Enslave all TG ports to bridge interface and config fastleave on 1st rx_port 2. Init interfaces and create 2 multicast Streams 3. Create 3 membership report streams, 1 with invalid checksum 4. Send Traffic from router port and from clients 5. Verify Mdb entries were created for clients and router 6. Verify the multicast traffic is flooded to all bridge ports except last client 7. Create and send leave stream from 1st client 8. Verify MDB entry is deleted 9. Verify no traffic is received on the port that left the group """ bridge = 'br0' querrier_interval = 10 sleep_value = 5 tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], 4) if not tgen_dev or not dent_devices: pytest.skip('The testbed does not have enough dent with tgen connections') dev_name = dent_devices[0].host_name tg_ports = tgen_dev.links_dict[dev_name][0] dut_ports = tgen_dev.links_dict[dev_name][1] mcast_group1 = '227.1.1.1' mcast_group2 = '239.2.2.2' mcast_group_addr = [mcast_group1, mcast_group2, mcast_group2] macs = ['a6:00:00:00:00:01', 'a6:00:00:00:00:02', 'a6:00:00:00:00:03', 'a6:00:00:00:00:04'] # 1.Create a bridge and enable IGMP Snooping, enable querrier and change query interval # Config Fastleave on 1st rx_port await common_bridge_and_igmp_setup(dev_name, bridge, 2, dut_ports, querier_interval=querrier_interval) out = await BridgeLink.set( input_data=[{dev_name: [ {'device': dut_ports[1], 'fastleave': 'on'}]}]) err_msg = f'Verify that port entities set to fastleave ON.\n{out}' assert out[0][dev_name]['rc'] == 0, err_msg # 2.Init interfaces and create 2 multicast Streams # 3.Create 3 membership report streams, 1 with invalid checksum dev_groups = tgen_utils_dev_groups_from_config( [{'ixp': tg_ports[0], 'ip': '102.0.0.3', 'gw': '102.0.0.1', 'plen': 24}, {'ixp': tg_ports[1], 'ip': '100.0.0.3', 'gw': '100.0.0.1', 'plen': 24}, {'ixp': tg_ports[2], 'ip': '101.0.0.3', 'gw': '101.0.0.1', 'plen': 24}, {'ixp': tg_ports[3], 'ip': '99.0.0.3', 'gw': '99.0.0.1', 'plen': 24}]) tx_port = dev_groups[tg_ports[0]][0]['name'] rx_ports = [dev_groups[tg_ports[1]][0]['name'], dev_groups[tg_ports[2]][0]['name'], dev_groups[tg_ports[3]][0]['name']] await tgen_utils_traffic_generator_connect(tgen_dev, tg_ports, dut_ports, dev_groups) streams = {f'mcast_{idx + 1}': { 'type': 'raw', 'protocol': 'ip', 'ip_source': tx_port, 'ip_destination': rx_ports[1], 'srcMac': macs[0], 'dstMac': mcast_ip_to_mac(mcast_group), 'srcIp': '0.0.0.0', 'dstIp': mcast_group, 'frame_rate_type': 'line_rate', 'rate': 40, } for idx, mcast_group in enumerate([mcast_group1, mcast_group2])} streams.update({f'member_report{idx + 1}': { 'type': 'raw', 'protocol': 'ip', 'ip_source': dev_groups[tg_ports[idx + 1]][0]['name'], 'ip_destination': dev_groups[tg_ports[0]][0]['name'], 'srcMac': combined[1], 'dstMac': mcast_ip_to_mac(combined[0]), 'srcIp': dev_groups[tg_ports[idx + 1]][0]['ip'], 'dstIp': combined[0], 'ipproto': 'igmpv2', 'totalLength': '28', 'igmpType': '22', 'igmpGroupAddr': combined[0], 'rate': 1, 'transmissionControlType': 'fixedPktCount', 'frameCount': 1, } for idx, combined in enumerate(zip(mcast_group_addr, macs[1:])) }) streams['member_report3']['igmpChecksum'] = '0' await tgen_utils_setup_streams(tgen_dev, config_file_name=None, streams=streams) # 4.Send Traffic from router port and from clients await tgen_utils_start_traffic(tgen_dev) await asyncio.sleep(querrier_interval + 5) # 5.Verify Mdb entries were created for clients and router mdb_entires, router_entires = await get_bridge_mdb(dev_name) > verify_mdb_entries(mdb_entires, dut_ports[1:3], mcast_group_addr[:-1]) /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py:588: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ mdb_entries = [{'dev': 'br0', 'flags': [], 'grp': 'ff02::6a', 'index': 127, ...}, {'dev': 'br0', 'flags': [], 'grp': 'ff02::1:ffd9:b4a1', 'index': 127, ...}] port_names = ['swp34', 'swp35'], grp_addrs = ['227.1.1.1', '239.2.2.2'] exp = None def verify_mdb_entries(mdb_entries, port_names, grp_addrs, exp=None): """ Verify that expected Mdb entires are present in Mdb table Args: mdb_entries (dict): Dict with Mdb entries port_names (list): DUT port names expected to be in Mdb entries grp_addrs (list): Igmp group address to check exp (int): Expected num of entries """ ports_count = 0 ports_expected = exp if exp else len(port_names) for port, group in zip(port_names, grp_addrs): for mdb in mdb_entries: if mdb['port'] == port: assert mdb['grp'] == group, f'Mdb entry by port {port} is {mdb[port]} expected {group}' ports_count += 1 > assert ports_count == ports_expected, f'Ports {port_names} absent in Mdb {mdb_entries}' E AssertionError: Ports ['swp34', 'swp35'] absent in Mdb [{'index': 127, 'dev': 'br0', 'port': 'br0', 'grp': 'ff02::6a', 'state': 'temp', 'flags': [], 'vid': 1, 'timer': ' 225.46'}, {'index': 127, 'dev': 'br0', 'port': 'br0', 'grp': 'ff02::1:ffd9:b4a1', 'state': 'temp', 'flags': [], 'vid': 1, 'timer': ' 233.88'}] E assert 0 == 2 /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py:130: AssertionError -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_igmp_snooping_modified_query">Starting testcase:test_igmp_snooping_modified_query from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-5880' coro=<test_igmp_snooping_modified_query() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py:513> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=97, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=98] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=98] Local address: 172.17.0.3, port 39070 INFO asyncssh:logging.py:92 [conn=98] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=98] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=98] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=98, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 22:29:30 UTC 2023 INFO asyncssh:logging.py:92 [conn=98, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=98, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=98, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=98, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=98, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=98, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=98, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 type bridge mcast_snooping 1 mcast_igmp_version 2 INFO asyncssh:logging.py:92 [conn=98, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=6] Command: ip link set dev br0 type bridge mcast_snooping 1 mcast_igmp_version 2 INFO asyncssh:logging.py:92 [conn=98, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=98, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 type bridge mcast_querier 1 mcast_querier_interval 1000 INFO asyncssh:logging.py:92 [conn=98, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=8] Command: ip link set dev br0 type bridge mcast_querier 1 mcast_querier_interval 1000 INFO asyncssh:logging.py:92 [conn=98, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=98, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=98, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=10] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=98, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=98, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=11] Channel closed DEBUG infra2:Logger.py:156 bridge link set dev swp34 fastleave on INFO asyncssh:logging.py:92 [conn=98, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=12] Command: bridge link set dev swp34 fastleave on INFO asyncssh:logging.py:92 [conn=98, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_102.0.0.3/24', 'count': 1, 'ip': '102.0.0.3', 'gw': '102.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_100.0.0.3/24', 'count': 1, 'ip': '100.0.0.3', 'gw': '100.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_101.0.0.3/24', 'count': 1, 'ip': '101.0.0.3', 'gw': '101.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_99.0.0.3/24', 'count': 1, 'ip': '99.0.0.3', 'gw': '99.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mcast_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mcast_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for member_report3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_102.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_100.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_101.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_99.0.0.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=98, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=13] Channel closed DEBUG infra2:Logger.py:156 bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=98, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=14] Command: bridge -d -s -j mdb show INFO asyncssh:logging.py:92 [conn=98, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=14] Channel closed DEBUG infra2:Logger.py:156 [{"mdb":[{"index":127,"dev":"br0","port":"br0","grp":"ff02::6a","state":"temp","flags":[],"vid":1,"timer":" 225.46"},{"index":127,"dev":"br0","port":"br0","grp":"ff02::1:ffd9:b4a1","state":"temp","flags":[],"vid":1,"timer":" 233.88"}],"router":{}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_igmp_snooping_modified_query from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/igmp/test_igmp_snooping.py INFO asyncssh:logging.py:92 [conn=98, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=15] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=98, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=16] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 22:32:45 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=98, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=98, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=98, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=18] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":127,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=98, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=98, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=98, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=98, chan=20] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=98, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=98, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=98, chan=20] Channel closed DEBUG infra2:Logger.py:156 | |||
| Failed | functional/ipv6/test_ipv6_nei.py::test_ipv6_nei_ageing | 459.72 | |
|
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7fb7fd4457b0> async def test_ipv6_nei_ageing(testbed): """ Test Name: test_ipv6_nei_ageing Test Suite: suite_functional_ipv6 Test Overview: Verify neighbor ageing and flush Test Procedure: 0. Set IP addresses on DUT ports, add ip interfaces to TG 1.1 Set gc_interval, but leave default threshold values 1.2 Resolve neighbors 1.3 Check that neighbor entries are STALE 1.4 Check that neighbor entries are still STALE and not aged 2.1 Set a large gc_stale_time_s value, set small threshold values 2.2 Resolve neighbors 2.3 Check that neighbor entries are REACHABLE 2.4 Check that neighbor entries are STALE 2.5 Check that neighbor entries are aged 3.1 Set a large gc_stale_time_s value, set small threshold values 3.2 Resolve neighbors on first port 3.3 Resolve neighbors on second port in the next time window 3.4 Check that neighbor entries are STALE 3.5 Check that neighbor entries are aged only on the first port 3.6 Check that neighbor entries on the second port are aged in the next time window """ num_of_ports = 2 tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], num_of_ports) if not tgen_dev or not dent_devices: pytest.skip('The testbed does not have enough dent with tgen connections') dent_dev = dent_devices[0] dent = dent_dev.host_name tg_ports = tgen_dev.links_dict[dent][0][:num_of_ports] ports = tgen_dev.links_dict[dent][1][:num_of_ports] addr_info = namedtuple('addr_info', ['swp', 'tg', 'swp_ip', 'tg_ip', 'plen']) nei_update_time_s = 5 base_reach_time_s = 15 gc_interval_s = 5 gc_stale_time_s = 30 address_map = ( addr_info(ports[0], tg_ports[0], '2001:1111::1', '2001:1111::2', 64), addr_info(ports[0], tg_ports[0], '2001:2222::1', '2001:2222::2', 64), addr_info(ports[1], tg_ports[1], '2001:3333::1', '2001:3333::2', 64), addr_info(ports[1], tg_ports[1], '2001:4444::1', '2001:4444::2', 64), ) config = { 'net.ipv6.neigh.default.gc_interval': gc_interval_s, 'net.ipv6.neigh.default.gc_stale_time': gc_stale_time_s, f'net.ipv6.neigh.{ports[0]}.gc_stale_time': gc_stale_time_s, f'net.ipv6.neigh.{ports[1]}.gc_stale_time': gc_stale_time_s, 'net.ipv6.neigh.default.gc_thresh1': 1, 'net.ipv6.neigh.default.gc_thresh2': 20, 'net.ipv6.neigh.default.gc_thresh3': 30, 'net.ipv6.neigh.default.base_reachable_time_ms': base_reach_time_s * 1000, 'net.ipv6.neigh.default.delay_first_probe_time': nei_update_time_s, } # 0. Set IP addresses on DUT ports, add ip interfaces to TG out = await IpLink.set(input_data=[{dent: [ {'device': port, 'operstate': 'up'} for port in ports ]}]) assert out[0][dent]['rc'] == 0, 'Failed to set port state UP' out = await IpAddress.add(input_data=[{dent: [ {'dev': info.swp, 'prefix': f'{info.swp_ip}/{info.plen}'} for info in address_map ]}]) assert out[0][dent]['rc'] == 0, 'Failed to add IP addr to port' dev_groups = tgen_utils_dev_groups_from_config( {'ixp': info.tg, 'ip': info.tg_ip, 'gw': info.swp_ip, 'plen': info.plen, 'version': 'ipv6'} for info in address_map ) await tgen_utils_traffic_generator_connect(tgen_dev, tg_ports, ports, dev_groups) await tgen_utils_setup_streams(tgen_dev, None, { 'dummy': { 'type': 'raw', 'ep_source': ports[0], 'ep_destination': ports[1] }, }) expected_routes = [ {'dev': info.swp, 'dst': info.swp_ip[:-1] + f'/{info.plen}', 'should_exist': True, 'flags': ['rt_trap']} for info in address_map ] await verify_dut_routes(dent, expected_routes) # Scenario #1 # 1.1 Set gc_interval, but leave default threshold values out = await RecoverableSysctl.set(input_data=[{dent: [ {'variable': variable, 'value': value} for variable, value in config.items() if 'gc_thresh' not in variable ]}]) assert out[0][dent]['rc'] == 0, 'Failed to update sysctl values' # 1.2 Resolve neighbors out = await tgen_utils_send_ns(tgen_dev, ({'ixp': tg} for tg in tg_ports)) assert all(rc['success'] for rc in out), 'Failed to send NS from TG' out = await asyncio.gather(*[ tb_ping_device(dent_dev, info.tg_ip, pkt_loss_treshold=0, dump=True, count=1) for info in address_map ]) assert all(rc == 0 for rc in out), 'Some pings did not have a reply' # 1.3 Check that neighbor entries are STALE expected_neis = [ {'dev': info.swp, 'dst': info.tg_ip, 'should_exist': True, 'offload': True, 'states': ['STALE']} for info in address_map ] # Neighbor ageing depends on linux behavior. # Changing state from REACHABLE to STALE should take # between base_reach_time_s * 1/2 and base_reach_time_s * 3/2, # but we are waiting a little longer here. # If neighbors did not age in 60s then something is definitely wrong. await wait_for_nei_state(dent_dev, expected_neis, timeout=60) # 1.4 Check that neighbor entries are still STALE and not aged dent_dev.applog.info(f'Wait for a total of {gc_stale_time_s * 3 = }s to make sure that neighbors did not age') await asyncio.sleep(gc_stale_time_s * 3) await verify_dut_neighbors(dent, expected_neis) # no need for polling here # Scenario #2 # 2.1 Set a large gc_stale_time_s value, set small threshold values new_gc_stale_time_s = gc_stale_time_s * 3 out = await RecoverableSysctl.set(input_data=[{dent: [ {'variable': variable, 'value': value} for variable, value in config.items() if 'stale_time' not in variable ] + [ {'variable': variable, 'value': new_gc_stale_time_s} for variable in config if 'stale_time' in variable ]}]) assert out[0][dent]['rc'] == 0, 'Failed to update sysctl values' # 2.2 Resolve neighbors out = await tgen_utils_send_ns(tgen_dev, ({'ixp': tg} for tg in tg_ports)) assert all(rc['success'] for rc in out), 'Failed to send NS from TG' out = await asyncio.gather(*[ tb_ping_device(dent_dev, info.tg_ip, pkt_loss_treshold=0, dump=True, count=1) for info in address_map ]) assert all(rc == 0 for rc in out), 'Some pings did not have a reply' start = time.time() # 2.3 Check that neighbor entries are REACHABLE expected_neis = [ {'dev': info.swp, 'dst': info.tg_ip, 'should_exist': True, 'offload': True, 'states': ['REACHABLE']} for info in address_map ] await wait_for_nei_state(dent_dev, expected_neis, poll_interval=nei_update_time_s) elapsed = time.time() - start assert elapsed < base_reach_time_s, \ f'Expected neighbors to be REACHABLE after no more than {base_reach_time_s = }s, ' + \ f'but waited for {elapsed // 1}s' # 2.4 Check that neighbor entries are STALE [nei.update({'states': ['STALE']}) for nei in expected_neis] await wait_for_nei_state(dent_dev, expected_neis) elapsed = time.time() - start assert elapsed < new_gc_stale_time_s + gc_interval_s, \ f'Expected neighbors to be STALE after no more than {new_gc_stale_time_s + gc_interval_s = }s, ' + \ f'but waited for {elapsed // 1}s' # 2.5 Check that neighbor entries are aged [nei.update({'should_exist': False}) for nei in expected_neis] await wait_for_nei_state(dent_dev, expected_neis, timeout=new_gc_stale_time_s*2) elapsed = time.time() - start assert gc_stale_time_s*2 < elapsed < new_gc_stale_time_s*2, \ f'Expected neighbors to be STALE after no more than {new_gc_stale_time_s*2 = }s, ' + \ f'but waited for {elapsed // 1}s' # Scenario #3 # 3.1 Set a large gc_stale_time_s value, set small threshold values gc_stale_time_s = 60 gc_interval_s = 15 config.update({ 'net.ipv6.neigh.default.gc_interval': gc_interval_s, 'net.ipv6.neigh.default.gc_stale_time': gc_stale_time_s, f'net.ipv6.neigh.{ports[0]}.gc_stale_time': gc_stale_time_s, f'net.ipv6.neigh.{ports[1]}.gc_stale_time': gc_stale_time_s, }) out = await RecoverableSysctl.set(input_data=[{dent: [ {'variable': variable, 'value': value} for variable, value in config.items() ]}]) assert out[0][dent]['rc'] == 0, 'Failed to update sysctl values' # 3.2 Resolve neighbors on first port out = await tgen_utils_send_ns(tgen_dev, ({'ixp': tg_ports[0]},)) assert all(rc['success'] for rc in out), 'Failed to send NS from TG' out = await asyncio.gather(*[ tb_ping_device(dent_dev, info.tg_ip, pkt_loss_treshold=0, dump=True, count=1) for info in address_map if info.tg == tg_ports[0] ]) assert all(rc == 0 for rc in out), 'Some pings did not have a reply' # 3.3 Resolve neighbors on second port in the next time window dent_dev.applog.info(f'Wait {gc_interval_s = }s for the next GC interval') await asyncio.sleep(gc_interval_s) out = await tgen_utils_send_ns(tgen_dev, ({'ixp': tg_ports[1]},)) assert all(rc['success'] for rc in out), 'Failed to send NS from TG' out = await asyncio.gather(*[ tb_ping_device(dent_dev, info.tg_ip, pkt_loss_treshold=0, dump=True, count=1) for info in address_map if info.tg == tg_ports[1] ]) assert all(rc == 0 for rc in out), 'Some pings did not have a reply' # Changing state from REACHABLE to STALE is random, so don't bother to # check neighbors for REACHABLE state start = time.time() # 3.4 Check that neighbor entries are STALE expected_neis = [ {'dev': info.swp, 'dst': info.tg_ip, 'should_exist': True, 'offload': True, 'states': ['STALE']} for info in address_map ] await wait_for_nei_state(dent_dev, expected_neis, poll_interval=nei_update_time_s) elapsed = time.time() - start expected_time = base_reach_time_s*1.5 + gc_interval_s*2 + nei_update_time_s assert elapsed < expected_time, \ f'Expected neighbors to be STALE after no more than {expected_time}s, ' + \ f'but waited for {elapsed // 1}s' # 3.5 Check that neighbor entries are aged only on the first port expected_neis = [ {'dev': info.swp, 'dst': info.tg_ip, 'should_exist': info.tg == tg_ports[1], 'offload': True, 'states': ['STALE']} for info in address_map ] > await wait_for_nei_state(dent_dev, expected_neis, timeout=gc_stale_time_s + gc_interval_s*2) /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_nei.py:301: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ dent_dev = [DENT infrastructure 2: 10.36.118.23] expected_neis = [{'dev': 'swp33', 'dst': '2001:1111::2', 'offload': True, 'should_exist': False, ...}, {'dev': 'swp33', 'dst': '2001:2... True, 'should_exist': True, ...}, {'dev': 'swp34', 'dst': '2001:4444::2', 'offload': True, 'should_exist': True, ...}] timeout = 90, poll_interval = 10 async def wait_for_nei_state(dent_dev, expected_neis, timeout=60, poll_interval=10): dent_dev.applog.info('Begin neighbor polling') start = time.time() while time.time() < start + timeout: try: await verify_dut_neighbors(dent_dev.host_name, expected_neis) except (AssertionError, LookupError) as e: dent_dev.applog.debug(f'Neighbors did not match expectation. Trying again in {poll_interval}s\n{e}') await asyncio.sleep(poll_interval) else: dent_dev.applog.info(f'Neighbors matched expectation after {(time.time() - start) // 1}s') return > raise TimeoutError(f'Neighbors did not have expected state\n{expected_neis}') E TimeoutError: Neighbors did not have expected state E [{'dev': 'swp33', 'dst': '2001:1111::2', 'should_exist': False, 'offload': True, 'states': ['STALE']}, {'dev': 'swp33', 'dst': '2001:2222::2', 'should_exist': False, 'offload': True, 'states': ['STALE']}, {'dev': 'swp34', 'dst': '2001:3333::2', 'should_exist': True, 'offload': True, 'states': ['STALE']}, {'dev': 'swp34', 'dst': '2001:4444::2', 'should_exist': True, 'offload': True, 'states': ['STALE']}] /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_nei.py:54: TimeoutError -----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-7768' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv6_nei_ageing">Starting testcase:test_ipv6_nei_ageing from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_nei.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=136, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=137] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=137] Local address: 172.17.0.3, port 52194 INFO asyncssh:logging.py:92 [conn=137] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=137] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=137] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=137, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 23:59:35 UTC 2023 INFO asyncssh:logging.py:92 [conn=137, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=1] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=137, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=2] Command: sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=137, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=2] Channel closed DEBUG infra2:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO asyncssh:logging.py:92 [conn=137, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=3] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=137, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=4] Command: sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=137, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=4] Channel closed DEBUG infra2:Logger.py:156 net.ipv6.conf.all.forwarding = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=137, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=137, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=6] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 23:59:35 UTC 2023 INFO asyncssh:logging.py:92 [conn=137, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up INFO asyncssh:logging.py:92 [conn=137, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up INFO asyncssh:logging.py:92 [conn=137, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=137, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip address add 2001:1111::1/64 dev swp33 && ip address add 2001:2222::1/64 dev swp33 && ip address add 2001:3333::1/64 dev swp34 && ip address add 2001:4444::1/64 dev swp34 INFO asyncssh:logging.py:92 [conn=137, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=10] Command: ip address add 2001:1111::1/64 dev swp33 && ip address add 2001:2222::1/64 dev swp33 && ip address add 2001:3333::1/64 dev swp34 && ip address add 2001:4444::1/64 dev swp34 INFO asyncssh:logging.py:92 [conn=137, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_2001:1111::2/64', 'count': 1, 'ip': '2001:1111::2', 'gw': '2001:1111::1', 'plen': 64, 'vlan': None, 'version': 'ipv6'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_2001:2222::2/64', 'count': 1, 'ip': '2001:2222::2', 'gw': '2001:2222::1', 'plen': 64, 'vlan': None, 'version': 'ipv6'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2001:3333::2/64', 'count': 1, 'ip': '2001:3333::2', 'gw': '2001:3333::1', 'plen': 64, 'vlan': None, 'version': 'ipv6'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2001:4444::2/64', 'count': 1, 'ip': '2001:4444::2', 'gw': '2001:4444::1', 'plen': 64, 'vlan': None, 'version': 'ipv6'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for dummy INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_2001:1111::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2001:3333::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2001:4444::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=137, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=11] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=137, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=12] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=137, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=12] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.23","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=137, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=137, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=14] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=137, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=14] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"2001:1111::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:2222::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:3333::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:4444::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] INFO asyncssh:logging.py:92 [conn=137, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=15] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv6.neigh.default.gc_interval&& sysctl net.ipv6.neigh.default.gc_stale_time&& sysctl net.ipv6.neigh.swp33.gc_stale_time&& sysctl net.ipv6.neigh.swp34.gc_stale_time&& sysctl net.ipv6.neigh.default.base_reachable_time_ms&& sysctl net.ipv6.neigh.default.delay_first_probe_time INFO asyncssh:logging.py:92 [conn=137, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=16] Command: sysctl net.ipv6.neigh.default.gc_interval&& sysctl net.ipv6.neigh.default.gc_stale_time&& sysctl net.ipv6.neigh.swp33.gc_stale_time&& sysctl net.ipv6.neigh.swp34.gc_stale_time&& sysctl net.ipv6.neigh.default.base_reachable_time_ms&& sysctl net.ipv6.neigh.default.delay_first_probe_time INFO asyncssh:logging.py:92 [conn=137, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=16] Channel closed DEBUG infra2:Logger.py:156 net.ipv6.neigh.default.gc_interval = 30 net.ipv6.neigh.default.gc_stale_time = 60 net.ipv6.neigh.swp33.gc_stale_time = 60 net.ipv6.neigh.swp34.gc_stale_time = 60 net.ipv6.neigh.default.base_reachable_time_ms = 30000 net.ipv6.neigh.default.delay_first_probe_time = 5 INFO asyncssh:logging.py:92 [conn=137, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=17] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv6.neigh.default.gc_interval=5&& sysctl net.ipv6.neigh.default.gc_stale_time=30&& sysctl net.ipv6.neigh.swp33.gc_stale_time=30&& sysctl net.ipv6.neigh.swp34.gc_stale_time=30&& sysctl net.ipv6.neigh.default.base_reachable_time_ms=15000&& sysctl net.ipv6.neigh.default.delay_first_probe_time=5 INFO asyncssh:logging.py:92 [conn=137, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=18] Command: sysctl net.ipv6.neigh.default.gc_interval=5&& sysctl net.ipv6.neigh.default.gc_stale_time=30&& sysctl net.ipv6.neigh.swp33.gc_stale_time=30&& sysctl net.ipv6.neigh.swp34.gc_stale_time=30&& sysctl net.ipv6.neigh.default.base_reachable_time_ms=15000&& sysctl net.ipv6.neigh.default.delay_first_probe_time=5 INFO asyncssh:logging.py:92 [conn=137, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=18] Channel closed DEBUG infra2:Logger.py:156 net.ipv6.neigh.default.gc_interval = 5 net.ipv6.neigh.default.gc_stale_time = 30 net.ipv6.neigh.swp33.gc_stale_time = 30 net.ipv6.neigh.swp34.gc_stale_time = 30 net.ipv6.neigh.default.base_reachable_time_ms = 15000 net.ipv6.neigh.default.delay_first_probe_time = 5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending NS from 10.36.118.199:2:5_2001:1111::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending NS from 10.36.118.199:2:6_2001:3333::2/64 INFO asyncssh:logging.py:92 [conn=137, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=19] Channel closed INFO asyncssh:logging.py:92 [conn=137, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=21] Received channel close DEBUG infra2:Logger.py:156 echo onl | sudo -S ping -c 1 2001:1111::2 INFO asyncssh:logging.py:92 [conn=137, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=20] Channel closed INFO asyncssh:logging.py:92 [conn=137, chan=21] Channel closed INFO asyncssh:logging.py:92 [conn=137, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=22] Received channel close DEBUG infra2:Logger.py:156 echo onl | sudo -S ping -c 1 2001:2222::2 INFO asyncssh:logging.py:92 [conn=137, chan=24] Requesting new SSH session DEBUG infra2:Logger.py:156 echo onl | sudo -S ping -c 1 2001:3333::2 INFO asyncssh:logging.py:92 [conn=137, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=22] Channel closed INFO asyncssh:logging.py:92 [conn=137, chan=23] Command: echo onl | sudo -S ping -c 1 2001:1111::2 DEBUG infra2:Logger.py:156 echo onl | sudo -S ping -c 1 2001:4444::2 INFO asyncssh:logging.py:92 [conn=137, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=24] Command: echo onl | sudo -S ping -c 1 2001:2222::2 INFO asyncssh:logging.py:92 [conn=137, chan=25] Command: echo onl | sudo -S ping -c 1 2001:3333::2 INFO asyncssh:logging.py:92 [conn=137, chan=26] Command: echo onl | sudo -S ping -c 1 2001:4444::2 INFO asyncssh:logging.py:92 [conn=137, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=23] Channel closed DEBUG infra2:Logger.py:156 PING 2001:1111::2(2001:1111::2) 56 data bytes 64 bytes from 2001:1111::2: icmp_seq=1 ttl=64 time=0.238 ms --- 2001:1111::2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.238/0.238/0.238/0.000 ms INFO DENT:Logger.py:84 [DENT infrastructure 2] Ran ping -c 1 2001:1111::2 on infra2 with rc 0 and out PING 2001:1111::2(2001:1111::2) 56 data bytes 64 bytes from 2001:1111::2: icmp_seq=1 ttl=64 time=0.238 ms --- 2001:1111::2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.238/0.238/0.238/0.000 ms INFO asyncssh:logging.py:92 [conn=137, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=24] Channel closed INFO asyncssh:logging.py:92 [conn=137, chan=26] Channel closed INFO asyncssh:logging.py:92 [conn=137, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=25] Received channel close DEBUG infra2:Logger.py:156 PING 2001:2222::2(2001:2222::2) 56 data bytes 64 bytes from 2001:2222::2: icmp_seq=1 ttl=64 time=0.187 ms --- 2001:2222::2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.187/0.187/0.187/0.000 ms INFO DENT:Logger.py:84 [DENT infrastructure 2] Ran ping -c 1 2001:2222::2 on infra2 with rc 0 and out PING 2001:2222::2(2001:2222::2) 56 data bytes 64 bytes from 2001:2222::2: icmp_seq=1 ttl=64 time=0.187 ms --- 2001:2222::2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.187/0.187/0.187/0.000 ms DEBUG infra2:Logger.py:156 PING 2001:4444::2(2001:4444::2) 56 data bytes 64 bytes from 2001:4444::2: icmp_seq=1 ttl=64 time=0.381 ms --- 2001:4444::2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.381/0.381/0.381/0.000 ms INFO DENT:Logger.py:84 [DENT infrastructure 2] Ran ping -c 1 2001:4444::2 on infra2 with rc 0 and out PING 2001:4444::2(2001:4444::2) 56 data bytes 64 bytes from 2001:4444::2: icmp_seq=1 ttl=64 time=0.381 ms --- 2001:4444::2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.381/0.381/0.381/0.000 ms INFO asyncssh:logging.py:92 [conn=137, chan=25] Channel closed DEBUG infra2:Logger.py:156 PING 2001:3333::2(2001:3333::2) 56 data bytes 64 bytes from 2001:3333::2: icmp_seq=1 ttl=64 time=0.174 ms --- 2001:3333::2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.174/0.174/0.174/0.000 ms INFO DENT:Logger.py:84 [DENT infrastructure 2] Ran ping -c 1 2001:3333::2 on infra2 with rc 0 and out PING 2001:3333::2(2001:3333::2) 56 data bytes 64 bytes from 2001:3333::2: icmp_seq=1 ttl=64 time=0.174 ms --- 2001:3333::2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.174/0.174/0.174/0.000 ms INFO DENT:Logger.py:84 [DENT infrastructure 2] Begin neighbor polling INFO asyncssh:logging.py:92 [conn=137, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=27] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=28] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=28] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=137, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=29] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=30] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=30] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::210:20ff:fe30:4060","dev":"ma1","lladdr":"00:10:20:30:40:60","state":["STALE"]},{"dst":"fe80::923c:b3ff:fe8b:ef34","dev":"ma1","lladdr":"90:3c:b3:8b:ef:34","state":["STALE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"swp36","state":["FAILED"]},{"dst":"2001:3333::2","dev":"swp34","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::1abe:92ff:fe13:1c10","dev":"ma1","lladdr":"18:be:92:13:1c:10","state":["STALE"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["STALE"]},{"dst":"fe80::20c:29ff:fefe:dd05","dev":"ma1","lladdr":"00:0c:29:fe:dd:05","state":["STALE"]},{"dst":"fe80::36ef:b6ff:feec:26c0","dev":"ma1","lladdr":"34:ef:b6:ec:26:c0","state":["STALE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"swp34","lladdr":"00:14:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:4444::2","dev":"swp34","lladdr":"00:14:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::1abe:92ff:fe13:64a8","dev":"swp36","state":["FAILED"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp34","lladdr":"00:13:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp33","lladdr":"00:12:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:2222::2","dev":"swp33","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::d805:4bff:fe25:e4db","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=137, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=31] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=32] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=32] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=137, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=33] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=34] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=34] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::210:20ff:fe30:4060","dev":"ma1","lladdr":"00:10:20:30:40:60","state":["STALE"]},{"dst":"fe80::923c:b3ff:fe8b:ef34","dev":"ma1","lladdr":"90:3c:b3:8b:ef:34","state":["STALE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"swp36","state":["FAILED"]},{"dst":"2001:3333::2","dev":"swp34","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::1abe:92ff:fe13:1c10","dev":"ma1","lladdr":"18:be:92:13:1c:10","state":["STALE"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["STALE"]},{"dst":"fe80::20c:29ff:fefe:dd05","dev":"ma1","lladdr":"00:0c:29:fe:dd:05","state":["STALE"]},{"dst":"fe80::36ef:b6ff:feec:26c0","dev":"ma1","lladdr":"34:ef:b6:ec:26:c0","state":["STALE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"swp34","lladdr":"00:14:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:4444::2","dev":"swp34","lladdr":"00:14:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::1abe:92ff:fe13:64a8","dev":"swp36","state":["FAILED"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp34","lladdr":"00:13:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp33","lladdr":"00:12:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:2222::2","dev":"swp33","lladdr":"00:12:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::d805:4bff:fe25:e4db","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=137, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=35] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=36] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=36] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=137, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=37] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=38] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=38] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"fe80::210:20ff:fe30:4060","dev":"ma1","lladdr":"00:10:20:30:40:60","state":["STALE"]},{"dst":"fe80::923c:b3ff:fe8b:ef34","dev":"ma1","lladdr":"90:3c:b3:8b:ef:34","state":["STALE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"swp36","state":["FAILED"]},{"dst":"2001:3333::2","dev":"swp34","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::1abe:92ff:fe13:1c10","dev":"ma1","lladdr":"18:be:92:13:1c:10","state":["STALE"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["STALE"]},{"dst":"fe80::20c:29ff:fefe:dd05","dev":"ma1","lladdr":"00:0c:29:fe:dd:05","state":["STALE"]},{"dst":"fe80::36ef:b6ff:feec:26c0","dev":"ma1","lladdr":"34:ef:b6:ec:26:c0","state":["STALE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"swp34","lladdr":"00:14:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:4444::2","dev":"swp34","lladdr":"00:14:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::1abe:92ff:fe13:64a8","dev":"swp36","state":["FAILED"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp34","lladdr":"00:13:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp33","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"2001:2222::2","dev":"swp33","lladdr":"00:12:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::d805:4bff:fe25:e4db","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=137, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=39] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=40] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=40] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=137, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=41] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=42] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=42] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"fe80::210:20ff:fe30:4060","dev":"ma1","lladdr":"00:10:20:30:40:60","state":["STALE"]},{"dst":"fe80::923c:b3ff:fe8b:ef34","dev":"ma1","lladdr":"90:3c:b3:8b:ef:34","state":["STALE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"swp36","state":["FAILED"]},{"dst":"2001:3333::2","dev":"swp34","lladdr":"00:13:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::1abe:92ff:fe13:1c10","dev":"ma1","lladdr":"18:be:92:13:1c:10","state":["STALE"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["STALE"]},{"dst":"fe80::20c:29ff:fefe:dd05","dev":"ma1","lladdr":"00:0c:29:fe:dd:05","state":["STALE"]},{"dst":"fe80::36ef:b6ff:feec:26c0","dev":"ma1","lladdr":"34:ef:b6:ec:26:c0","state":["STALE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"swp34","lladdr":"00:14:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:4444::2","dev":"swp34","lladdr":"00:14:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::1abe:92ff:fe13:64a8","dev":"swp36","state":["FAILED"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp34","lladdr":"00:13:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp33","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"2001:2222::2","dev":"swp33","lladdr":"00:12:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::d805:4bff:fe25:e4db","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]}] INFO DENT:Logger.py:84 [DENT infrastructure 2] Neighbors matched expectation after 30.0s INFO DENT:Logger.py:84 [DENT infrastructure 2] Wait for a total of gc_stale_time_s * 3 = 90s to make sure that neighbors did not age INFO asyncssh:logging.py:92 [conn=137, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=43] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=44] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=44] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=137, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=45] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=46] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=46] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"fe80::210:20ff:fe30:4060","dev":"ma1","lladdr":"00:10:20:30:40:60","state":["STALE"]},{"dst":"fe80::923c:b3ff:fe8b:ef34","dev":"ma1","lladdr":"90:3c:b3:8b:ef:34","state":["STALE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"swp36","state":["FAILED"]},{"dst":"2001:3333::2","dev":"swp34","lladdr":"00:13:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::1abe:92ff:fe13:1c10","dev":"ma1","lladdr":"18:be:92:13:1c:10","state":["STALE"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["STALE"]},{"dst":"fe80::20c:29ff:fefe:dd05","dev":"ma1","lladdr":"00:0c:29:fe:dd:05","state":["STALE"]},{"dst":"fe80::36ef:b6ff:feec:26c0","dev":"ma1","lladdr":"34:ef:b6:ec:26:c0","state":["STALE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"swp34","lladdr":"00:14:01:00:00:01","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:4444::2","dev":"swp34","lladdr":"00:14:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::1abe:92ff:fe13:64a8","dev":"swp36","state":["FAILED"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp34","lladdr":"00:13:01:00:00:01","state":["STALE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp33","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"2001:2222::2","dev":"swp33","lladdr":"00:12:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::d805:4bff:fe25:e4db","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=137, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=47] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv6.neigh.default.gc_interval&& sysctl net.ipv6.neigh.default.gc_thresh1&& sysctl net.ipv6.neigh.default.gc_thresh2&& sysctl net.ipv6.neigh.default.gc_thresh3&& sysctl net.ipv6.neigh.default.base_reachable_time_ms&& sysctl net.ipv6.neigh.default.delay_first_probe_time&& sysctl net.ipv6.neigh.default.gc_stale_time&& sysctl net.ipv6.neigh.swp33.gc_stale_time&& sysctl net.ipv6.neigh.swp34.gc_stale_time INFO asyncssh:logging.py:92 [conn=137, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=48] Command: sysctl net.ipv6.neigh.default.gc_interval&& sysctl net.ipv6.neigh.default.gc_thresh1&& sysctl net.ipv6.neigh.default.gc_thresh2&& sysctl net.ipv6.neigh.default.gc_thresh3&& sysctl net.ipv6.neigh.default.base_reachable_time_ms&& sysctl net.ipv6.neigh.default.delay_first_probe_time&& sysctl net.ipv6.neigh.default.gc_stale_time&& sysctl net.ipv6.neigh.swp33.gc_stale_time&& sysctl net.ipv6.neigh.swp34.gc_stale_time INFO asyncssh:logging.py:92 [conn=137, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=48] Channel closed DEBUG infra2:Logger.py:156 net.ipv6.neigh.default.gc_interval = 5 net.ipv6.neigh.default.gc_thresh1 = 128 net.ipv6.neigh.default.gc_thresh2 = 512 net.ipv6.neigh.default.gc_thresh3 = 1024 net.ipv6.neigh.default.base_reachable_time_ms = 15000 net.ipv6.neigh.default.delay_first_probe_time = 5 net.ipv6.neigh.default.gc_stale_time = 30 net.ipv6.neigh.swp33.gc_stale_time = 30 net.ipv6.neigh.swp34.gc_stale_time = 30 INFO asyncssh:logging.py:92 [conn=137, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=49] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv6.neigh.default.gc_interval=5&& sysctl net.ipv6.neigh.default.gc_thresh1=1&& sysctl net.ipv6.neigh.default.gc_thresh2=20&& sysctl net.ipv6.neigh.default.gc_thresh3=30&& sysctl net.ipv6.neigh.default.base_reachable_time_ms=15000&& sysctl net.ipv6.neigh.default.delay_first_probe_time=5&& sysctl net.ipv6.neigh.default.gc_stale_time=90&& sysctl net.ipv6.neigh.swp33.gc_stale_time=90&& sysctl net.ipv6.neigh.swp34.gc_stale_time=90 INFO asyncssh:logging.py:92 [conn=137, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=50] Command: sysctl net.ipv6.neigh.default.gc_interval=5&& sysctl net.ipv6.neigh.default.gc_thresh1=1&& sysctl net.ipv6.neigh.default.gc_thresh2=20&& sysctl net.ipv6.neigh.default.gc_thresh3=30&& sysctl net.ipv6.neigh.default.base_reachable_time_ms=15000&& sysctl net.ipv6.neigh.default.delay_first_probe_time=5&& sysctl net.ipv6.neigh.default.gc_stale_time=90&& sysctl net.ipv6.neigh.swp33.gc_stale_time=90&& sysctl net.ipv6.neigh.swp34.gc_stale_time=90 INFO asyncssh:logging.py:92 [conn=137, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=50] Channel closed DEBUG infra2:Logger.py:156 net.ipv6.neigh.default.gc_interval = 5 net.ipv6.neigh.default.gc_thresh1 = 1 net.ipv6.neigh.default.gc_thresh2 = 20 net.ipv6.neigh.default.gc_thresh3 = 30 net.ipv6.neigh.default.base_reachable_time_ms = 15000 net.ipv6.neigh.default.delay_first_probe_time = 5 net.ipv6.neigh.default.gc_stale_time = 90 net.ipv6.neigh.swp33.gc_stale_time = 90 net.ipv6.neigh.swp34.gc_stale_time = 90 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending NS from 10.36.118.199:2:5_2001:1111::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending NS from 10.36.118.199:2:6_2001:3333::2/64 INFO asyncssh:logging.py:92 [conn=137, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=52] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=54] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=51] Channel closed INFO asyncssh:logging.py:92 [conn=137, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=53] Received channel close DEBUG infra2:Logger.py:156 echo onl | sudo -S ping -c 1 2001:1111::2 INFO asyncssh:logging.py:92 [conn=137, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=52] Channel closed INFO asyncssh:logging.py:92 [conn=137, chan=53] Channel closed INFO asyncssh:logging.py:92 [conn=137, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=54] Received channel close DEBUG infra2:Logger.py:156 echo onl | sudo -S ping -c 1 2001:2222::2 INFO asyncssh:logging.py:92 [conn=137, chan=56] Requesting new SSH session DEBUG infra2:Logger.py:156 echo onl | sudo -S ping -c 1 2001:3333::2 INFO asyncssh:logging.py:92 [conn=137, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=54] Channel closed INFO asyncssh:logging.py:92 [conn=137, chan=55] Command: echo onl | sudo -S ping -c 1 2001:1111::2 DEBUG infra2:Logger.py:156 echo onl | sudo -S ping -c 1 2001:4444::2 INFO asyncssh:logging.py:92 [conn=137, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=56] Command: echo onl | sudo -S ping -c 1 2001:2222::2 INFO asyncssh:logging.py:92 [conn=137, chan=57] Command: echo onl | sudo -S ping -c 1 2001:3333::2 INFO asyncssh:logging.py:92 [conn=137, chan=58] Command: echo onl | sudo -S ping -c 1 2001:4444::2 INFO asyncssh:logging.py:92 [conn=137, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=55] Channel closed DEBUG infra2:Logger.py:156 PING 2001:1111::2(2001:1111::2) 56 data bytes 64 bytes from 2001:1111::2: icmp_seq=1 ttl=64 time=0.400 ms --- 2001:1111::2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.400/0.400/0.400/0.000 ms INFO DENT:Logger.py:84 [DENT infrastructure 2] Ran ping -c 1 2001:1111::2 on infra2 with rc 0 and out PING 2001:1111::2(2001:1111::2) 56 data bytes 64 bytes from 2001:1111::2: icmp_seq=1 ttl=64 time=0.400 ms --- 2001:1111::2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.400/0.400/0.400/0.000 ms INFO asyncssh:logging.py:92 [conn=137, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=56] Channel closed DEBUG infra2:Logger.py:156 PING 2001:2222::2(2001:2222::2) 56 data bytes 64 bytes from 2001:2222::2: icmp_seq=1 ttl=64 time=0.176 ms --- 2001:2222::2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.176/0.176/0.176/0.000 ms INFO DENT:Logger.py:84 [DENT infrastructure 2] Ran ping -c 1 2001:2222::2 on infra2 with rc 0 and out PING 2001:2222::2(2001:2222::2) 56 data bytes 64 bytes from 2001:2222::2: icmp_seq=1 ttl=64 time=0.176 ms --- 2001:2222::2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.176/0.176/0.176/0.000 ms INFO asyncssh:logging.py:92 [conn=137, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=58] Channel closed INFO asyncssh:logging.py:92 [conn=137, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=57] Received channel close DEBUG infra2:Logger.py:156 PING 2001:4444::2(2001:4444::2) 56 data bytes 64 bytes from 2001:4444::2: icmp_seq=1 ttl=64 time=0.298 ms --- 2001:4444::2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.298/0.298/0.298/0.000 ms INFO DENT:Logger.py:84 [DENT infrastructure 2] Ran ping -c 1 2001:4444::2 on infra2 with rc 0 and out PING 2001:4444::2(2001:4444::2) 56 data bytes 64 bytes from 2001:4444::2: icmp_seq=1 ttl=64 time=0.298 ms --- 2001:4444::2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.298/0.298/0.298/0.000 ms INFO asyncssh:logging.py:92 [conn=137, chan=57] Channel closed DEBUG infra2:Logger.py:156 PING 2001:3333::2(2001:3333::2) 56 data bytes 64 bytes from 2001:3333::2: icmp_seq=1 ttl=64 time=0.174 ms --- 2001:3333::2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.174/0.174/0.174/0.000 ms INFO DENT:Logger.py:84 [DENT infrastructure 2] Ran ping -c 1 2001:3333::2 on infra2 with rc 0 and out PING 2001:3333::2(2001:3333::2) 56 data bytes 64 bytes from 2001:3333::2: icmp_seq=1 ttl=64 time=0.174 ms --- 2001:3333::2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.174/0.174/0.174/0.000 ms INFO DENT:Logger.py:84 [DENT infrastructure 2] Begin neighbor polling INFO asyncssh:logging.py:92 [conn=137, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=59] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=60] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=60] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=137, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=61] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=62] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=62] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"fe80::210:20ff:fe30:4060","dev":"ma1","lladdr":"00:10:20:30:40:60","state":["STALE"]},{"dst":"fe80::923c:b3ff:fe8b:ef34","dev":"ma1","lladdr":"90:3c:b3:8b:ef:34","state":["STALE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"swp36","state":["FAILED"]},{"dst":"2001:3333::2","dev":"swp34","lladdr":"00:13:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"fe80::1abe:92ff:fe13:1c10","dev":"ma1","lladdr":"18:be:92:13:1c:10","state":["STALE"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["STALE"]},{"dst":"fe80::20c:29ff:fefe:dd05","dev":"ma1","lladdr":"00:0c:29:fe:dd:05","state":["STALE"]},{"dst":"fe80::36ef:b6ff:feec:26c0","dev":"ma1","lladdr":"34:ef:b6:ec:26:c0","state":["STALE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"swp34","lladdr":"00:14:01:00:00:01","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"2001:4444::2","dev":"swp34","lladdr":"00:14:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"fe80::1abe:92ff:fe13:64a8","dev":"swp36","state":["FAILED"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp34","lladdr":"00:13:01:00:00:01","state":["STALE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp33","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"2001:2222::2","dev":"swp33","lladdr":"00:12:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"fe80::d805:4bff:fe25:e4db","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=137, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=63] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=64] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=64] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=137, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=65] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=66] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=66] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"2001:3333::2","dev":"swp34","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:4444::2","dev":"swp34","lladdr":"00:14:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:2222::2","dev":"swp33","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]}] INFO DENT:Logger.py:84 [DENT infrastructure 2] Neighbors matched expectation after 5.0s INFO DENT:Logger.py:84 [DENT infrastructure 2] Begin neighbor polling INFO asyncssh:logging.py:92 [conn=137, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=67] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=68] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=68] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=137, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=69] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=70] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=70] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"2001:3333::2","dev":"swp34","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:4444::2","dev":"swp34","lladdr":"00:14:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:2222::2","dev":"swp33","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=137, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=71] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=72] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=72] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["DELAY"]}] INFO asyncssh:logging.py:92 [conn=137, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=73] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=74] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=74] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:3333::2","dev":"swp34","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"swp34","lladdr":"00:14:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:4444::2","dev":"swp34","lladdr":"00:14:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp34","lladdr":"00:13:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp33","lladdr":"00:12:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:2222::2","dev":"swp33","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=137, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=75] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=76] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=76] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=137, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=77] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=78] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=78] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=78] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:3333::2","dev":"swp34","lladdr":"00:13:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"swp34","lladdr":"00:14:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:4444::2","dev":"swp34","lladdr":"00:14:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp34","lladdr":"00:13:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp33","lladdr":"00:12:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:2222::2","dev":"swp33","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=137, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=79] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=80] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=80] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=80] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=137, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=81] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=82] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=82] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=82] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:3333::2","dev":"swp34","lladdr":"00:13:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"swp34","lladdr":"00:14:01:00:00:01","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:4444::2","dev":"swp34","lladdr":"00:14:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp34","lladdr":"00:13:01:00:00:01","state":["STALE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp33","lladdr":"00:12:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:2222::2","dev":"swp33","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=137, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=83] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=84] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=84] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=84] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["DELAY"]}] INFO asyncssh:logging.py:92 [conn=137, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=85] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=86] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=86] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=86] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:3333::2","dev":"swp34","lladdr":"00:13:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"swp34","lladdr":"00:14:01:00:00:01","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:4444::2","dev":"swp34","lladdr":"00:14:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp34","lladdr":"00:13:01:00:00:01","state":["STALE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp33","lladdr":"00:12:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:2222::2","dev":"swp33","lladdr":"00:12:01:00:00:01","offload":null,"state":["STALE"]}] INFO DENT:Logger.py:84 [DENT infrastructure 2] Neighbors matched expectation after 40.0s INFO DENT:Logger.py:84 [DENT infrastructure 2] Begin neighbor polling INFO asyncssh:logging.py:92 [conn=137, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=87] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=88] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=88] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=88] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["DELAY"]}] INFO asyncssh:logging.py:92 [conn=137, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=89] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=90] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=90] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=90] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:3333::2","dev":"swp34","lladdr":"00:13:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"swp34","lladdr":"00:14:01:00:00:01","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:4444::2","dev":"swp34","lladdr":"00:14:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp34","lladdr":"00:13:01:00:00:01","state":["STALE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp33","lladdr":"00:12:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:2222::2","dev":"swp33","lladdr":"00:12:01:00:00:01","offload":null,"state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=137, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=91] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=92] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=92] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=92] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=137, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=93] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=94] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=94] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=94] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"2001:3333::2","dev":"swp34","lladdr":"00:13:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"swp34","lladdr":"00:14:01:00:00:01","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:4444::2","dev":"swp34","lladdr":"00:14:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp34","lladdr":"00:13:01:00:00:01","state":["STALE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp33","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"2001:2222::2","dev":"swp33","lladdr":"00:12:01:00:00:01","offload":null,"state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=137, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=95] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=96] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=96] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=96] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=137, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=97] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=98] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=98] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=98] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"2001:3333::2","dev":"swp34","lladdr":"00:13:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"swp34","lladdr":"00:14:01:00:00:01","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:4444::2","dev":"swp34","lladdr":"00:14:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp34","lladdr":"00:13:01:00:00:01","state":["STALE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp33","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"2001:2222::2","dev":"swp33","lladdr":"00:12:01:00:00:01","offload":null,"state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=137, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=99] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=100] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=100] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=100] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["DELAY"]}] INFO asyncssh:logging.py:92 [conn=137, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=101] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=102] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=102] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=102] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"2001:3333::2","dev":"swp34","lladdr":"00:13:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"swp34","lladdr":"00:14:01:00:00:01","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:4444::2","dev":"swp34","lladdr":"00:14:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp34","lladdr":"00:13:01:00:00:01","state":["STALE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp33","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"2001:2222::2","dev":"swp33","lladdr":"00:12:01:00:00:01","offload":null,"state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=137, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=103] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=104] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=104] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=104] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=137, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=105] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=106] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=106] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=106] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"2001:3333::2","dev":"swp34","lladdr":"00:13:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"swp34","lladdr":"00:14:01:00:00:01","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:4444::2","dev":"swp34","lladdr":"00:14:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp34","lladdr":"00:13:01:00:00:01","state":["STALE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp33","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"2001:2222::2","dev":"swp33","lladdr":"00:12:01:00:00:01","offload":null,"state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=137, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=107] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=108] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=108] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=108] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=137, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=109] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=110] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=110] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=110] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"2001:3333::2","dev":"swp34","lladdr":"00:13:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"swp34","lladdr":"00:14:01:00:00:01","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:4444::2","dev":"swp34","lladdr":"00:14:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp34","lladdr":"00:13:01:00:00:01","state":["STALE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp33","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"2001:2222::2","dev":"swp33","lladdr":"00:12:01:00:00:01","offload":null,"state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=137, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=111] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=112] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=112] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=112] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["DELAY"]}] INFO asyncssh:logging.py:92 [conn=137, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=113] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=114] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=114] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=114] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"swp34","lladdr":"00:14:01:00:00:01","state":["STALE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp34","lladdr":"00:13:01:00:00:01","state":["STALE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp33","lladdr":"00:12:01:00:00:01","state":["STALE"]}] INFO DENT:Logger.py:84 [DENT infrastructure 2] Neighbors matched expectation after 60.0s INFO asyncssh:logging.py:92 [conn=137, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=115] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv6.neigh.default.gc_interval&& sysctl net.ipv6.neigh.default.gc_stale_time&& sysctl net.ipv6.neigh.swp33.gc_stale_time&& sysctl net.ipv6.neigh.swp34.gc_stale_time&& sysctl net.ipv6.neigh.default.gc_thresh1&& sysctl net.ipv6.neigh.default.gc_thresh2&& sysctl net.ipv6.neigh.default.gc_thresh3&& sysctl net.ipv6.neigh.default.base_reachable_time_ms&& sysctl net.ipv6.neigh.default.delay_first_probe_time INFO asyncssh:logging.py:92 [conn=137, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=116] Command: sysctl net.ipv6.neigh.default.gc_interval&& sysctl net.ipv6.neigh.default.gc_stale_time&& sysctl net.ipv6.neigh.swp33.gc_stale_time&& sysctl net.ipv6.neigh.swp34.gc_stale_time&& sysctl net.ipv6.neigh.default.gc_thresh1&& sysctl net.ipv6.neigh.default.gc_thresh2&& sysctl net.ipv6.neigh.default.gc_thresh3&& sysctl net.ipv6.neigh.default.base_reachable_time_ms&& sysctl net.ipv6.neigh.default.delay_first_probe_time INFO asyncssh:logging.py:92 [conn=137, chan=116] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=116] Channel closed DEBUG infra2:Logger.py:156 net.ipv6.neigh.default.gc_interval = 5 net.ipv6.neigh.default.gc_stale_time = 90 net.ipv6.neigh.swp33.gc_stale_time = 90 net.ipv6.neigh.swp34.gc_stale_time = 90 net.ipv6.neigh.default.gc_thresh1 = 1 net.ipv6.neigh.default.gc_thresh2 = 20 net.ipv6.neigh.default.gc_thresh3 = 30 net.ipv6.neigh.default.base_reachable_time_ms = 15000 net.ipv6.neigh.default.delay_first_probe_time = 5 INFO asyncssh:logging.py:92 [conn=137, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=117] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv6.neigh.default.gc_interval=15&& sysctl net.ipv6.neigh.default.gc_stale_time=60&& sysctl net.ipv6.neigh.swp33.gc_stale_time=60&& sysctl net.ipv6.neigh.swp34.gc_stale_time=60&& sysctl net.ipv6.neigh.default.gc_thresh1=1&& sysctl net.ipv6.neigh.default.gc_thresh2=20&& sysctl net.ipv6.neigh.default.gc_thresh3=30&& sysctl net.ipv6.neigh.default.base_reachable_time_ms=15000&& sysctl net.ipv6.neigh.default.delay_first_probe_time=5 INFO asyncssh:logging.py:92 [conn=137, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=118] Command: sysctl net.ipv6.neigh.default.gc_interval=15&& sysctl net.ipv6.neigh.default.gc_stale_time=60&& sysctl net.ipv6.neigh.swp33.gc_stale_time=60&& sysctl net.ipv6.neigh.swp34.gc_stale_time=60&& sysctl net.ipv6.neigh.default.gc_thresh1=1&& sysctl net.ipv6.neigh.default.gc_thresh2=20&& sysctl net.ipv6.neigh.default.gc_thresh3=30&& sysctl net.ipv6.neigh.default.base_reachable_time_ms=15000&& sysctl net.ipv6.neigh.default.delay_first_probe_time=5 INFO asyncssh:logging.py:92 [conn=137, chan=118] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=118] Channel closed DEBUG infra2:Logger.py:156 net.ipv6.neigh.default.gc_interval = 15 net.ipv6.neigh.default.gc_stale_time = 60 net.ipv6.neigh.swp33.gc_stale_time = 60 net.ipv6.neigh.swp34.gc_stale_time = 60 net.ipv6.neigh.default.gc_thresh1 = 1 net.ipv6.neigh.default.gc_thresh2 = 20 net.ipv6.neigh.default.gc_thresh3 = 30 net.ipv6.neigh.default.base_reachable_time_ms = 15000 net.ipv6.neigh.default.delay_first_probe_time = 5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending NS from 10.36.118.199:2:5_2001:1111::2/64 INFO asyncssh:logging.py:92 [conn=137, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=120] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=119] Channel closed INFO asyncssh:logging.py:92 [conn=137, chan=120] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=120] Received channel close DEBUG infra2:Logger.py:156 echo onl | sudo -S ping -c 1 2001:1111::2 INFO asyncssh:logging.py:92 [conn=137, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=120] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S ping -c 1 2001:2222::2 INFO asyncssh:logging.py:92 [conn=137, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=121] Command: echo onl | sudo -S ping -c 1 2001:1111::2 INFO asyncssh:logging.py:92 [conn=137, chan=122] Command: echo onl | sudo -S ping -c 1 2001:2222::2 INFO asyncssh:logging.py:92 [conn=137, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=121] Channel closed DEBUG infra2:Logger.py:156 PING 2001:1111::2(2001:1111::2) 56 data bytes 64 bytes from 2001:1111::2: icmp_seq=1 ttl=64 time=0.231 ms --- 2001:1111::2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.231/0.231/0.231/0.000 ms INFO DENT:Logger.py:84 [DENT infrastructure 2] Ran ping -c 1 2001:1111::2 on infra2 with rc 0 and out PING 2001:1111::2(2001:1111::2) 56 data bytes 64 bytes from 2001:1111::2: icmp_seq=1 ttl=64 time=0.231 ms --- 2001:1111::2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.231/0.231/0.231/0.000 ms INFO asyncssh:logging.py:92 [conn=137, chan=122] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=122] Channel closed DEBUG infra2:Logger.py:156 PING 2001:2222::2(2001:2222::2) 56 data bytes 64 bytes from 2001:2222::2: icmp_seq=1 ttl=64 time=12.7 ms --- 2001:2222::2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 12.781/12.781/12.781/0.000 ms INFO DENT:Logger.py:84 [DENT infrastructure 2] Ran ping -c 1 2001:2222::2 on infra2 with rc 0 and out PING 2001:2222::2(2001:2222::2) 56 data bytes 64 bytes from 2001:2222::2: icmp_seq=1 ttl=64 time=12.7 ms --- 2001:2222::2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 12.781/12.781/12.781/0.000 ms INFO DENT:Logger.py:84 [DENT infrastructure 2] Wait gc_interval_s = 15s for the next GC interval INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending NS from 10.36.118.199:2:6_2001:3333::2/64 INFO asyncssh:logging.py:92 [conn=137, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=124] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=123] Channel closed INFO asyncssh:logging.py:92 [conn=137, chan=124] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=124] Received channel close DEBUG infra2:Logger.py:156 echo onl | sudo -S ping -c 1 2001:3333::2 INFO asyncssh:logging.py:92 [conn=137, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=124] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S ping -c 1 2001:4444::2 INFO asyncssh:logging.py:92 [conn=137, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=125] Command: echo onl | sudo -S ping -c 1 2001:3333::2 INFO asyncssh:logging.py:92 [conn=137, chan=126] Command: echo onl | sudo -S ping -c 1 2001:4444::2 INFO asyncssh:logging.py:92 [conn=137, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=125] Channel closed DEBUG infra2:Logger.py:156 PING 2001:3333::2(2001:3333::2) 56 data bytes 64 bytes from 2001:3333::2: icmp_seq=1 ttl=64 time=0.294 ms --- 2001:3333::2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.294/0.294/0.294/0.000 ms INFO DENT:Logger.py:84 [DENT infrastructure 2] Ran ping -c 1 2001:3333::2 on infra2 with rc 0 and out PING 2001:3333::2(2001:3333::2) 56 data bytes 64 bytes from 2001:3333::2: icmp_seq=1 ttl=64 time=0.294 ms --- 2001:3333::2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.294/0.294/0.294/0.000 ms INFO asyncssh:logging.py:92 [conn=137, chan=126] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=126] Channel closed DEBUG infra2:Logger.py:156 PING 2001:4444::2(2001:4444::2) 56 data bytes 64 bytes from 2001:4444::2: icmp_seq=1 ttl=64 time=0.373 ms --- 2001:4444::2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.373/0.373/0.373/0.000 ms INFO DENT:Logger.py:84 [DENT infrastructure 2] Ran ping -c 1 2001:4444::2 on infra2 with rc 0 and out PING 2001:4444::2(2001:4444::2) 56 data bytes 64 bytes from 2001:4444::2: icmp_seq=1 ttl=64 time=0.373 ms --- 2001:4444::2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.373/0.373/0.373/0.000 ms INFO DENT:Logger.py:84 [DENT infrastructure 2] Begin neighbor polling INFO asyncssh:logging.py:92 [conn=137, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=127] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=128] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=128] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=128] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=137, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=129] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=130] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=130] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=130] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:3333::2","dev":"swp34","lladdr":"00:13:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:4444::2","dev":"swp34","lladdr":"00:14:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:2222::2","dev":"swp33","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=137, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=131] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=132] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=132] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=132] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=137, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=133] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=134] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=134] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=134] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:3333::2","dev":"swp34","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:4444::2","dev":"swp34","lladdr":"00:14:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:2222::2","dev":"swp33","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=137, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=135] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=136] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=136] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=136] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=137, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=137] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=138] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=138] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=138] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:3333::2","dev":"swp34","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:4444::2","dev":"swp34","lladdr":"00:14:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp34","lladdr":"00:13:01:00:00:01","state":["DELAY"]},{"dst":"2001:2222::2","dev":"swp33","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=137, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=139] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=140] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=140] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=140] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["DELAY"]}] INFO asyncssh:logging.py:92 [conn=137, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=141] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=142] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=142] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=142] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:3333::2","dev":"swp34","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:4444::2","dev":"swp34","lladdr":"00:14:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp34","lladdr":"00:13:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:2222::2","dev":"swp33","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=137, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=143] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=144] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=144] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=144] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=137, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=145] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=146] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=146] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=146] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:3333::2","dev":"swp34","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:4444::2","dev":"swp34","lladdr":"00:14:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp34","lladdr":"00:13:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:2222::2","dev":"swp33","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=137, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=147] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=148] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=148] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=148] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=137, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=149] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=150] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=150] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=150] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:3333::2","dev":"swp34","lladdr":"00:13:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:4444::2","dev":"swp34","lladdr":"00:14:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp34","lladdr":"00:13:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:2222::2","dev":"swp33","lladdr":"00:12:01:00:00:01","offload":null,"state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=137, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=151] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=151] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=151] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=151] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=152] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=152] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=152] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=152] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=152] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=137, chan=153] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=153] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=153] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=153] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=153] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=154] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=154] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=154] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=154] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=154] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:3333::2","dev":"swp34","lladdr":"00:13:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:4444::2","dev":"swp34","lladdr":"00:14:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp34","lladdr":"00:13:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:2222::2","dev":"swp33","lladdr":"00:12:01:00:00:01","offload":null,"state":["STALE"]}] INFO DENT:Logger.py:84 [DENT infrastructure 2] Neighbors matched expectation after 30.0s INFO DENT:Logger.py:84 [DENT infrastructure 2] Begin neighbor polling INFO asyncssh:logging.py:92 [conn=137, chan=155] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=155] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=155] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=155] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=155] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=156] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=156] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=156] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=156] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=156] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=137, chan=157] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=157] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=157] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=157] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=157] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=158] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=158] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=158] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=158] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=158] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:3333::2","dev":"swp34","lladdr":"00:13:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:4444::2","dev":"swp34","lladdr":"00:14:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp34","lladdr":"00:13:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:2222::2","dev":"swp33","lladdr":"00:12:01:00:00:01","offload":null,"state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=137, chan=159] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=159] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=159] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=159] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=159] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=160] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=160] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=160] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=160] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=160] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=137, chan=161] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=161] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=161] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=161] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=161] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=162] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=162] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=162] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=162] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=162] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"2001:3333::2","dev":"swp34","lladdr":"00:13:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:4444::2","dev":"swp34","lladdr":"00:14:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp34","lladdr":"00:13:01:00:00:01","state":["STALE"]},{"dst":"2001:2222::2","dev":"swp33","lladdr":"00:12:01:00:00:01","offload":null,"state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=137, chan=163] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=163] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=163] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=163] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=163] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=164] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=164] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=164] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=164] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=164] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=137, chan=165] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=165] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=165] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=165] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=165] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=166] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=166] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=166] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=166] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=166] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"2001:3333::2","dev":"swp34","lladdr":"00:13:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:4444::2","dev":"swp34","lladdr":"00:14:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp34","lladdr":"00:13:01:00:00:01","state":["STALE"]},{"dst":"2001:2222::2","dev":"swp33","lladdr":"00:12:01:00:00:01","offload":null,"state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=137, chan=167] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=167] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=167] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=167] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=167] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=168] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=168] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=168] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=168] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=168] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=137, chan=169] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=169] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=169] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=169] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=169] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=170] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=170] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=170] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=170] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=170] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"2001:3333::2","dev":"swp34","lladdr":"00:13:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp34","lladdr":"00:13:01:00:00:01","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=137, chan=171] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=171] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=171] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=171] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=171] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=172] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=172] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=172] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=172] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=172] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=137, chan=173] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=173] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=173] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=173] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=173] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=174] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=174] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=174] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=174] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=174] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"fe80::213:1ff:fe00:1","dev":"swp34","lladdr":"00:13:01:00:00:01","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=137, chan=175] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=175] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=175] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=175] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=175] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=176] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=176] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=176] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=176] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=176] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["DELAY"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=137, chan=177] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=177] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=177] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=177] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=177] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=178] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=178] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=178] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=178] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=178] Channel closed DEBUG infra2:Logger.py:156 [] INFO asyncssh:logging.py:92 [conn=137, chan=179] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=179] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=179] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=179] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=179] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=180] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=180] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=180] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=180] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=180] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=137, chan=181] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=181] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=181] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=181] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=181] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=182] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=182] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=182] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=182] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=182] Channel closed DEBUG infra2:Logger.py:156 [] INFO asyncssh:logging.py:92 [conn=137, chan=183] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=183] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=183] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=183] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=183] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=184] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=184] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=184] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=184] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=184] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=137, chan=185] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=185] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=185] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=185] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=185] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=186] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=186] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=186] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=186] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=186] Channel closed DEBUG infra2:Logger.py:156 [] INFO asyncssh:logging.py:92 [conn=137, chan=187] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=187] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=187] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=187] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=187] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=188] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=188] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=188] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=188] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=188] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["DELAY"]}] INFO asyncssh:logging.py:92 [conn=137, chan=189] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=189] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=189] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=189] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=189] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=190] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=190] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=137, chan=190] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=190] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=190] Channel closed DEBUG infra2:Logger.py:156 [] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv6_nei_ageing from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_nei.py INFO DENT:Logger.py:147 Restoring sysctl values INFO asyncssh:logging.py:92 [conn=137, chan=191] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=191] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=191] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=191] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=191] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=0&& sysctl net.ipv6.neigh.default.gc_interval=30&& sysctl net.ipv6.neigh.default.gc_stale_time=60&& sysctl net.ipv6.neigh.swp33.gc_stale_time=60&& sysctl net.ipv6.neigh.swp34.gc_stale_time=60&& sysctl net.ipv6.neigh.default.base_reachable_time_ms=30000&& sysctl net.ipv6.neigh.default.delay_first_probe_time=5&& sysctl net.ipv6.neigh.default.gc_thresh1=128&& sysctl net.ipv6.neigh.default.gc_thresh2=512&& sysctl net.ipv6.neigh.default.gc_thresh3=1024 INFO asyncssh:logging.py:92 [conn=137, chan=192] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=192] Command: sysctl net.ipv6.conf.all.forwarding=0&& sysctl net.ipv6.neigh.default.gc_interval=30&& sysctl net.ipv6.neigh.default.gc_stale_time=60&& sysctl net.ipv6.neigh.swp33.gc_stale_time=60&& sysctl net.ipv6.neigh.swp34.gc_stale_time=60&& sysctl net.ipv6.neigh.default.base_reachable_time_ms=30000&& sysctl net.ipv6.neigh.default.delay_first_probe_time=5&& sysctl net.ipv6.neigh.default.gc_thresh1=128&& sysctl net.ipv6.neigh.default.gc_thresh2=512&& sysctl net.ipv6.neigh.default.gc_thresh3=1024 INFO asyncssh:logging.py:92 [conn=137, chan=192] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=192] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=192] Channel closed DEBUG infra2:Logger.py:156 net.ipv6.conf.all.forwarding = 0 net.ipv6.neigh.default.gc_interval = 30 net.ipv6.neigh.default.gc_stale_time = 60 net.ipv6.neigh.swp33.gc_stale_time = 60 net.ipv6.neigh.swp34.gc_stale_time = 60 net.ipv6.neigh.default.base_reachable_time_ms = 30000 net.ipv6.neigh.default.delay_first_probe_time = 5 net.ipv6.neigh.default.gc_thresh1 = 128 net.ipv6.neigh.default.gc_thresh2 = 512 net.ipv6.neigh.default.gc_thresh3 = 1024 INFO DENT:Logger.py:147 Restoring sysctl values INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=137, chan=193] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=193] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=193] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=193] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=193] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=137, chan=194] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=194] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=194] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=194] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=194] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 00:07:14 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=137, chan=195] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=195] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=195] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=195] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=195] Channel closed DEBUG infra2:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 INFO asyncssh:logging.py:92 [conn=137, chan=196] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=196] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 INFO asyncssh:logging.py:92 [conn=137, chan=196] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=196] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=196] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=137, chan=197] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=197] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=197] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=197] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=197] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=137, chan=198] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=198] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=137, chan=198] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=198] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=198] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"f6:33:41:29:6d:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=137, chan=199] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=199] Command: date INFO asyncssh:logging.py:92 [conn=137, chan=199] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=199] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=199] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=137, chan=200] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=137, chan=200] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=137, chan=200] Received exit status 0 INFO asyncssh:logging.py:92 [conn=137, chan=200] Received channel close INFO asyncssh:logging.py:92 [conn=137, chan=200] Channel closed DEBUG infra2:Logger.py:156 | |||
| Failed | functional/ipv6/test_ipv6_route.py::test_ipv6_icmp | 120.36 | |
|
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7fb7fd4457b0> async def test_ipv6_icmp(testbed): """ Test Name: test_ipv6_icmp Test Suite: suite_functional_ipv6 Test Overview: Verify ICMPv6 message types Test Procedure: 1. Add IP addresses - Verify IP addresses added, routes created 2. Send ICMP echo request from TG - Verify ICMP echo reply is sent from DUT 3. Send ICMP echo request from TG with DIP of random IP address in same subnet - Verify ICMP 'host unreachable' message is sent 4. Send ICMP echo request from TG with TTL (hop limit) equal to 1 - Verify ICMP 'time exceeded' message is sent 5. Delete IP from DUT, add a different IP address 6. Send ICMP echo request from TG - Verify ICMP message redirect is sent """ num_of_ports = 2 tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], num_of_ports) if not tgen_dev or not dent_devices: pytest.skip('The testbed does not have enough dent with tgen connections') dent_dev = dent_devices[0] dent = dent_dev.host_name tg_ports = tgen_dev.links_dict[dent][0][:num_of_ports] ports = tgen_dev.links_dict[dent][1][:num_of_ports] addr_info = namedtuple('addr_info', ['swp', 'tg', 'swp_ip', 'tg_ip', 'plen']) traffic_duration = 10 timeout = 20 address_map = ( addr_info(ports[0], tg_ports[0], '2001:1111::1', '2001:1111::2', 64), addr_info(ports[1], tg_ports[1], '2001:2222::1', '2001:2222::2', 64), ) out = await IpLink.show(input_data=[{dent: [ {'cmd_options': '-j'} ]}], parse_output=True) assert out[0][dent]['rc'] == 0, 'Failed to get port info' dut_mac = {link['ifname']: link['address'] for link in out[0][dent]['parsed_output'] if link['ifname'] in ports} # Configure ports up out = await IpLink.set(input_data=[{dent: [ {'device': port, 'operstate': 'up'} for port in ports ]}]) assert out[0][dent]['rc'] == 0, 'Failed to set port state UP' # 1. Add IP addresses out = await IpAddress.add(input_data=[{dent: [ {'dev': info.swp, 'prefix': f'{info.swp_ip}/{info.plen}'} for info in address_map ]}]) assert out[0][dent]['rc'] == 0, 'Failed to add IP addr to port' dev_groups = tgen_utils_dev_groups_from_config( {'ixp': info.tg, 'ip': info.tg_ip, 'gw': info.swp_ip, 'plen': info.plen, 'version': 'ipv6'} for info in address_map ) await tgen_utils_traffic_generator_connect(tgen_dev, tg_ports, ports, dev_groups) # Verify IP addresses added expected_addrs = [ {'ifname': info.swp, 'should_exist': True, 'addr_info': { 'family': 'inet6', 'local': info.swp_ip, 'prefixlen': info.plen}} for info in address_map ] await verify_dut_addrs(dent, expected_addrs) # Verify routes created expected_routes = [ {'dev': info.swp, 'dst': info.swp_ip[:-1] + f'/{info.plen}', 'should_exist': True, 'flags': ['rt_trap']} for info in address_map ] await verify_dut_routes(dent, expected_routes) # 2. Send ICMP echo request from TG streams = { f'icmpv6 {tg_ports[0]} -> {ports[0]}': { 'type': 'raw', 'protocol': 'ipv6', 'ip_source': dev_groups[tg_ports[0]][0]['name'], 'ip_destination': dev_groups[tg_ports[1]][0]['name'], 'srcMac': '02:00:00:00:00:01', 'dstMac': dut_mac[ports[0]], 'srcIp': dev_groups[tg_ports[0]][0]['ip'], 'dstIp': address_map[0].swp_ip, 'ipproto': 'icmpv6', 'icmpType': '128', 'icmpCode': '0', 'rate': 3, # pps }, f'icmpv6 {tg_ports[1]} -> {ports[1]}': { 'type': 'raw', 'protocol': 'ipv6', 'ip_source': dev_groups[tg_ports[1]][0]['name'], 'ip_destination': dev_groups[tg_ports[0]][0]['name'], 'srcMac': '02:00:00:00:00:02', 'dstMac': dut_mac[ports[1]], 'srcIp': dev_groups[tg_ports[1]][0]['ip'], 'dstIp': address_map[1].swp_ip, 'ipproto': 'icmpv6', 'icmpType': '128', 'icmpCode': '0', 'rate': 3, # pps }, } await tgen_utils_setup_streams(tgen_dev, None, streams) tcpdump = [asyncio.create_task(tb_device_tcpdump(dent_dev, info.swp, '-n -c 10 "icmp6 && ip6[40] == 129"', count_only=True, timeout=timeout)) for info in address_map] await tgen_utils_start_traffic(tgen_dev) await asyncio.sleep(traffic_duration) await tgen_utils_stop_traffic(tgen_dev) # Verify ICMP echo reply is sent from DUT captured = await asyncio.gather(*tcpdump) > assert all(pkts > 0 for pkts in captured), 'Expected DUT to send ICMPv6 reply' E AssertionError: Expected DUT to send ICMPv6 reply E assert False E + where False = all(<generator object test_ipv6_icmp.<locals>.<genexpr> at 0x7fb7f742ba70>) /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_route.py:820: AssertionError -----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-8302' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv6_icmp">Starting testcase:test_ipv6_icmp from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_route.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=142, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=143] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=143] Local address: 172.17.0.3, port 47092 INFO asyncssh:logging.py:92 [conn=143] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=143] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=143] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=143, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=0] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 00:21:44 UTC 2023 INFO asyncssh:logging.py:92 [conn=143, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=1] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=143, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=2] Command: sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=143, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=2] Channel closed DEBUG infra2:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO asyncssh:logging.py:92 [conn=143, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=3] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=143, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=4] Command: sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=143, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=4] Channel closed DEBUG infra2:Logger.py:156 net.ipv6.conf.all.forwarding = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=143, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=143, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=6] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 00:21:44 UTC 2023 INFO asyncssh:logging.py:92 [conn=143, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=143, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=8] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=143, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=8] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"f6:33:41:29:6d:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=143, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up INFO asyncssh:logging.py:92 [conn=143, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up INFO asyncssh:logging.py:92 [conn=143, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=143, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=11] Channel closed DEBUG infra2:Logger.py:156 ip address add 2001:1111::1/64 dev swp33 && ip address add 2001:2222::1/64 dev swp34 INFO asyncssh:logging.py:92 [conn=143, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=12] Command: ip address add 2001:1111::1/64 dev swp33 && ip address add 2001:2222::1/64 dev swp34 INFO asyncssh:logging.py:92 [conn=143, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_2001:1111::2/64', 'count': 1, 'ip': '2001:1111::2', 'gw': '2001:1111::1', 'plen': 64, 'vlan': None, 'version': 'ipv6'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2001:2222::2/64', 'count': 1, 'ip': '2001:2222::2', 'gw': '2001:2222::1', 'plen': 64, 'vlan': None, 'version': 'ipv6'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=143, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip -j address show INFO asyncssh:logging.py:92 [conn=143, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=14] Command: ip -j address show INFO asyncssh:logging.py:92 [conn=143, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=14] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","addr_info":[{"family":"inet","local":"127.0.0.1","prefixlen":8,"scope":"host","label":"lo","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet","local":"20.20.0.1","prefixlen":32,"scope":"global","label":"lo","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"::1","prefixlen":128,"scope":"host","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"f6:33:41:29:6d:87","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","addr_info":[]},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"10.36.118.23","prefixlen":24,"broadcast":"10.36.118.255","scope":"global","label":"ma1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:6482","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:1111::1","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a5","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:2222::1","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a6","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a7","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a8","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}] INFO asyncssh:logging.py:92 [conn=143, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=143, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=16] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=143, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.23","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=143, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=143, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=18] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=143, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=18] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"2001:1111::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:2222::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for icmpv6 10.36.118.199:2:5 -> swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for icmpv6 10.36.118.199:2:6 -> swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_2001:1111::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [DENT infrastructure 2] Starting timeout --preserve-status 20 tcpdump -i swp33 -n -c 10 "icmp6 && ip6[40] == 129" on infra2... INFO asyncssh:logging.py:92 [conn=143, chan=19] Requesting new SSH session INFO DENT:Logger.py:84 [DENT infrastructure 2] Starting timeout --preserve-status 20 tcpdump -i swp34 -n -c 10 "icmp6 && ip6[40] == 129" on infra2... INFO asyncssh:logging.py:92 [conn=143, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=19] Channel closed INFO asyncssh:logging.py:92 [conn=143, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=20] Received channel close DEBUG infra2:Logger.py:156 echo onl | sudo -S timeout --preserve-status 20 tcpdump -i swp33 -n -c 10 "icmp6 && ip6[40] == 129" INFO asyncssh:logging.py:92 [conn=143, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=20] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S timeout --preserve-status 20 tcpdump -i swp34 -n -c 10 "icmp6 && ip6[40] == 129" INFO asyncssh:logging.py:92 [conn=143, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=21] Command: echo onl | sudo -S timeout --preserve-status 20 tcpdump -i swp33 -n -c 10 "icmp6 && ip6[40] == 129" INFO asyncssh:logging.py:92 [conn=143, chan=22] Command: echo onl | sudo -S timeout --preserve-status 20 tcpdump -i swp34 -n -c 10 "icmp6 && ip6[40] == 129" INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=143, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=21] Channel closed INFO asyncssh:logging.py:92 [conn=143, chan=22] Received channel close DEBUG infra2:Logger.py:156 tcpdump: verbose output suppressed, use -v or -vv for full protocol decode listening on swp33, link-type EN10MB (Ethernet), capture size 262144 bytes 0 packets captured 0 packets received by filter 0 packets dropped by kernel INFO asyncssh:logging.py:92 [conn=143, chan=22] Channel closed DEBUG infra2:Logger.py:156 tcpdump: verbose output suppressed, use -v or -vv for full protocol decode listening on swp34, link-type EN10MB (Ethernet), capture size 262144 bytes 0 packets captured 0 packets received by filter 0 packets dropped by kernel -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv6_icmp from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_route.py INFO DENT:Logger.py:147 Restoring sysctl values INFO asyncssh:logging.py:92 [conn=143, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=23] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=143, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=24] Command: sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=143, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=24] Channel closed DEBUG infra2:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=143, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=25] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=143, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=26] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 00:23:44 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=143, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=27] Channel closed DEBUG infra2:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 INFO asyncssh:logging.py:92 [conn=143, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=28] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 INFO asyncssh:logging.py:92 [conn=143, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=28] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=143, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=29] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=143, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=30] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=143, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=30] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"f6:33:41:29:6d:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=143, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=143, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=31] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=143, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=143, chan=32] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=143, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=143, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=143, chan=32] Channel closed DEBUG infra2:Logger.py:156 | |||
| Failed | functional/port_isolation/test_port_isolation_interaction_route_between_vlan_devices.py::test_port_isolation_interaction_route_between_vlan_devices | 147.98 | |
|
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7fb7fd4457b0> async def test_port_isolation_interaction_route_between_vlan_devices(testbed): """ Test Name: test_port_isolation_interaction_route_between_vlan_devices Test Suite: suite_functional_port_isolation Test Overview: Verify Routing between VLAN devices when VLANs' enslaved ports defined as isolated. Test Author: Kostiantyn Stavruk Test Procedure: 1. Init bridge entity br0. 2. Set bridge br0 admin state UP. 3. Set ports swp1, swp2 master br0. 4. Create VLAN-devices br0.10 and br0.11. 5. Set all entities admin state UP. 6. Add bridges to VLAN of the VLAN-devices. 7. Set the first two bridge entities as isolated. 8. Add ports to VLANs, and then configure IP addresses on VLAN devices. 9. Verify the offload flag appears in VLAN-device default routes. 10. Prepare streams from one VLAN device's neighbor to the other. 11. Transmit traffic by TG. 12. Verify traffic is forwarded to both VLAN-device neighbors. """ bridge = 'br0' tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], 2) if not tgen_dev or not dent_devices: pytest.skip('The testbed does not have enough dent with tgen connections') device_host_name = dent_devices[0].host_name tg_ports = tgen_dev.links_dict[device_host_name][0] ports = tgen_dev.links_dict[device_host_name][1] traffic_duration = 15 pps_value = 1000 out = await IpLink.add( input_data=[{device_host_name: [ {'device': bridge, 'vlan_filtering': 1, 'type': 'bridge', 'vlan_default_pvid': 0}]}]) err_msg = f"Verify that bridge created, vlan filtering set to 'ON' and vlan_default_pvid set to '0'.\n{out}" assert out[0][device_host_name]['rc'] == 0, err_msg out = await IpLink.set( input_data=[{device_host_name: [ {'device': bridge, 'operstate': 'up'}]}]) assert out[0][device_host_name]['rc'] == 0, f"Verify that bridge set to 'UP' state.\n{out}" out = await IpLink.set( input_data=[{device_host_name: [ {'device': port, 'master': bridge, 'operstate': 'up'} for port in ports[:2]]}]) err_msg = f"Verify that bridge entities set to 'UP' state and links enslaved to bridge.\n{out}" assert out[0][device_host_name]['rc'] == 0, err_msg out = await IpLink.add( input_data=[{device_host_name: [ {'link': bridge, 'name': f'br0.1{x}', 'type': f'vlan id 1{x}'} for x in range(2)]}]) err_msg = f"Verify that links created and type set to 'vlan id 10' and 'vlan id 11'.\n{out}" assert out[0][device_host_name]['rc'] == 0, err_msg out = await IpLink.set( input_data=[{device_host_name: [ {'device': f'br0.1{x}', 'operstate': 'up'} for x in range(2)]}]) assert out[0][device_host_name]['rc'] == 0, f"Verify that links set to 'UP' state.\n{out}" out = await BridgeVlan.add( input_data=[{device_host_name: [ {'device': bridge, 'vid': f'1{x}', 'self': True} for x in range(2)]}]) assert out[0][device_host_name]['rc'] == 0, f"Verify that bridge added to vid '10' and '11'.\n{out}" out = await BridgeLink.set( input_data=[{device_host_name: [ {'device': port, 'isolated': True} for port in ports[:2]]}]) assert out[0][device_host_name]['rc'] == 0, f"Verify that entities set to isolated state 'ON'.\n{out}" out = await BridgeVlan.add( input_data=[{device_host_name: [ {'device': ports[x], 'vid': f'1{x}'} for x in range(2)]}]) assert out[0][device_host_name]['rc'] == 0, f"Verify that entitie added to vid '10' and '11'.\n{out}" out = await IpAddress.add( input_data=[{device_host_name: [ {'dev': 'br0.10', 'prefix': '1.1.1.1/24'}, {'dev': 'br0.11', 'prefix': '2.2.2.2/24'}]}]) assert out[0][device_host_name]['rc'] == 0, f"Failed to add IP address to 'br0.10'.\n{out}" for x in range(2): out = await IpRoute.show(input_data=[{device_host_name: [{'dev': f'br0.1{x}', 'cmd_options': '-j'}]}], parse_output=True) assert out[0][device_host_name]['rc'] == 0, f'Failed to execute the command IpRoute.show.\n{out}' ip_route_entries = out[0][device_host_name]['parsed_output'] offload_flag = str([en['flags'] for en in ip_route_entries if 'flags' in en]).strip("]'[") err_msg = 'Verify the offload flag appears in VLAN-device default routes.' assert 'rt_trap' in offload_flag, err_msg address_map = ( # swp port, tg port, tg ip, gw, plen (ports[0], tg_ports[0], '1.1.1.2', '1.1.1.1', 24), (ports[1], tg_ports[1], '2.2.2.3', '2.2.2.1', 24) ) dev_groups = tgen_utils_dev_groups_from_config( {'ixp': port, 'ip': ip, 'gw': gw, 'plen': plen} for _, port, ip, gw, plen in address_map ) await tgen_utils_traffic_generator_connect(tgen_dev, tg_ports, ports, dev_groups) """ Set up the following streams: — vlan_10 — | — vlan_11 — swp1 -> swp2 | swp2 -> swp1 """ streams = { 'vlan_10': { 'ip_source': dev_groups[tg_ports[0]][0]['name'], 'ip_destination': dev_groups[tg_ports[1]][0]['name'], 'srcIp': '0.0.0.0', 'dstIp': '2.2.2.3', 'srcMac': '00:00:00:00:00:01', 'dstMac': '00:00:00:00:00:02', 'frameSize': 150, 'rate': pps_value, 'protocol': '0x0800', 'type': 'raw', 'vlanID': 10 }, 'vlan_11': { 'ip_source': dev_groups[tg_ports[1]][0]['name'], 'ip_destination': dev_groups[tg_ports[0]][0]['name'], 'srcIp': '0.0.0.0', 'dstIp': '1.1.1.2', 'srcMac': '00:00:00:00:00:01', 'dstMac': '00:00:00:00:00:02', 'frameSize': 150, 'rate': pps_value, 'protocol': '0x0800', 'type': 'raw', 'vlanID': 11 } } await tgen_utils_setup_streams(tgen_dev, config_file_name=None, streams=streams) await tgen_utils_start_traffic(tgen_dev) await asyncio.sleep(traffic_duration) await tgen_utils_stop_traffic(tgen_dev) # check the traffic stats stats = await tgen_utils_get_traffic_stats(tgen_dev, 'Flow Statistics') for row in stats.Rows: > assert tgen_utils_get_loss(row) == 0.000, \ f"Verify that traffic from {row['Tx Port']} to {row['Rx Port']} forwarded.\n{out}" E AssertionError: Verify that traffic from 10.36.118.199:2:5 to 10.36.118.199:2:6 forwarded. E [{'infra2': {'command': 'ip -j route show dev br0.11 ', 'rc': 0, 'result': '[{"dst":"2.2.2.0/24","protocol":"kernel","scope":"link","prefsrc":"2.2.2.2","flags":["linkdown","rt_trap"]}]\n', 'parsed_output': [{'dst': '2.2.2.0/24', 'protocol': 'kernel', 'scope': 'link', 'prefsrc': '2.2.2.2', 'flags': ['linkdown', 'rt_trap']}]}}] E assert 100.0 == 0.0 E + where 100.0 = tgen_utils_get_loss(<ixnetwork_restpy.assistants.statistics.row.Row object at 0x7fb7f701a5f0>) /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_route_between_vlan_devices.py:174: AssertionError -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_port_isolation_interaction_route_between_vlan_devices">Starting testcase:test_port_isolation_interaction_route_between_vlan_devices from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_route_between_vlan_devices.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-9905' coro=<test_port_isolation_interaction_route_between_vlan_devices() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_route_between_vlan_devices.py:50> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=167, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=168] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=168] Local address: 172.17.0.3, port 59288 INFO asyncssh:logging.py:92 [conn=168] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=168] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=168] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=168, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=0] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 01:50:42 UTC 2023 INFO asyncssh:logging.py:92 [conn=168, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=168, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=168, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=168, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=168, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=168, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=168, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=168, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=168, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=168, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link add link br0 name br0.10 type vlan id 10 && ip link add link br0 name br0.11 type vlan id 11 INFO asyncssh:logging.py:92 [conn=168, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=8] Command: ip link add link br0 name br0.10 type vlan id 10 && ip link add link br0 name br0.11 type vlan id 11 INFO asyncssh:logging.py:92 [conn=168, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=168, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0.10 up && ip link set dev br0.11 up INFO asyncssh:logging.py:92 [conn=168, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=10] Command: ip link set dev br0.10 up && ip link set dev br0.11 up INFO asyncssh:logging.py:92 [conn=168, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=168, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=11] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev br0 vid 10 self && bridge vlan add dev br0 vid 11 self INFO asyncssh:logging.py:92 [conn=168, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=12] Command: bridge vlan add dev br0 vid 10 self && bridge vlan add dev br0 vid 11 self INFO asyncssh:logging.py:92 [conn=168, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=168, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=13] Channel closed DEBUG infra2:Logger.py:156 bridge link set dev swp33 isolated on && bridge link set dev swp34 isolated on INFO asyncssh:logging.py:92 [conn=168, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=14] Command: bridge link set dev swp33 isolated on && bridge link set dev swp34 isolated on INFO asyncssh:logging.py:92 [conn=168, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=168, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=15] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp33 vid 10 && bridge vlan add dev swp34 vid 11 INFO asyncssh:logging.py:92 [conn=168, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=16] Command: bridge vlan add dev swp33 vid 10 && bridge vlan add dev swp34 vid 11 INFO asyncssh:logging.py:92 [conn=168, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=168, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip address add 1.1.1.1/24 dev br0.10 && ip address add 2.2.2.2/24 dev br0.11 INFO asyncssh:logging.py:92 [conn=168, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=18] Command: ip address add 1.1.1.1/24 dev br0.10 && ip address add 2.2.2.2/24 dev br0.11 INFO asyncssh:logging.py:92 [conn=168, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=168, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip -j route show dev br0.10 INFO asyncssh:logging.py:92 [conn=168, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=20] Command: ip -j route show dev br0.10 INFO asyncssh:logging.py:92 [conn=168, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=20] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"1.1.1.0/24","protocol":"kernel","scope":"link","prefsrc":"1.1.1.1","flags":["linkdown","rt_trap"]}] INFO asyncssh:logging.py:92 [conn=168, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip -j route show dev br0.11 INFO asyncssh:logging.py:92 [conn=168, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=22] Command: ip -j route show dev br0.11 INFO asyncssh:logging.py:92 [conn=168, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=22] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"2.2.2.0/24","protocol":"kernel","scope":"link","prefsrc":"2.2.2.2","flags":["linkdown","rt_trap"]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2.2.2.3/24', 'count': 1, 'ip': '2.2.2.3', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:2:7' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for vlan_10 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for vlan_11 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f701a050>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI vlan_10 SIP-DIP N/A Tx 7965 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI vlan_11 SIP-DIP N/A Tx 7965 Rx 0 Loss 100.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_port_isolation_interaction_route_between_vlan_devices from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_route_between_vlan_devices.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=168, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=23] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=168, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=24] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 01:53:06 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=168, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=25] Channel closed DEBUG infra2:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 INFO asyncssh:logging.py:92 [conn=168, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=26] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 INFO asyncssh:logging.py:92 [conn=168, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=26] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=168, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=27] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=168, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=28] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=168, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=28] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"f6:33:41:29:6d:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":165,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":166,"link":"br0","ifname":"br0.10","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":167,"link":"br0","ifname":"br0.11","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=168, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=29] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=168, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=30] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=168, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=30] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=168, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=31] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=168, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=32] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 01:53:07 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=168, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=33] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=168, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=34] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 01:53:10 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=168, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=35] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=168, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=36] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=168, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=36] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":165,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=168, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=168, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=37] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=168, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=168, chan=38] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=168, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=168, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=168, chan=38] Channel closed DEBUG infra2:Logger.py:156 | |||
| XFailed | functional/ipv4/test_ipv4_icmp.py::test_ipv4_ping_size | 124.86 | |
|
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7fb7fd4457b0> @pytest.mark.xfail(reason='Device does not support fragmentation') async def test_ipv4_ping_size(testbed): """ Test Name: test_ipv4_ping_size Test Suite: suite_functional_ipv4 Test Overview: Test IPv4 ping size Test Procedure: 1. Init interfaces 2. Configure ports up 3. Configure IP addrs 4. Add dynamic arp entries 5. Generate ping with size smaller than mru and larger than mru and verify fragmentation on the larger ping """ # 1. Init interfaces tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], 4) if not tgen_dev or not dent_devices: pytest.skip('The testbed does not have enough dent with tgen connections') dent_dev = dent_devices[0] dent = dent_dev.host_name tg_ports = tgen_dev.links_dict[dent][0] ports = tgen_dev.links_dict[dent][1] address_map = ( # swp port, tg port, swp ip, tg ip, plen (ports[0], tg_ports[0], '1.1.1.1', '1.1.1.2', 24), (ports[1], tg_ports[1], '2.2.2.1', '2.2.2.2', 24), (ports[2], tg_ports[2], '3.3.3.1', '3.3.3.2', 24), (ports[3], tg_ports[3], '4.4.4.1', '4.4.4.2', 24), ) # 2. Configure ports up out = await IpLink.set(input_data=[{dent: [ {'device': port, 'operstate': 'up'} for port, *_ in address_map ]}]) assert out[0][dent]['rc'] == 0, 'Failed to set port state UP' # 3. Configure IP addrs out = await IpAddress.add(input_data=[{dent: [ {'dev': port, 'prefix': f'{ip}/{plen}'} for port, _, ip, _, plen in address_map ]}]) assert out[0][dent]['rc'] == 0, 'Failed to add IP addr to port' dev_groups = tgen_utils_dev_groups_from_config( {'ixp': port, 'ip': ip, 'gw': gw, 'plen': plen} for _, port, gw, ip, plen in address_map ) await tgen_utils_traffic_generator_connect(tgen_dev, tg_ports, ports, dev_groups) # 4. Add dynamic arp entries streams = { 'ipv4': {'ip_source': dev_groups[tg_ports[0]][0]['name'], 'ip_destination': dev_groups[tg_ports[1]][0]['name']} } await tgen_utils_setup_streams(tgen_dev, None, streams) # will send arps to all ports # 5. Generate ping with size smaller than mru await asyncio.gather(*(do_ping(dent_dev, port, dst, size=100, timeout=15) for port, *_, dst, _ in address_map)) # Generate ping with size larger than mru and verify fragmentation > await asyncio.gather(*(do_ping(dent_dev, port, dst, size=1473, timeout=15) for port, *_, dst, _ in address_map)) /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_icmp.py:278: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ dev = [DENT infrastructure 2: 10.36.118.23], port = 'swp33', dst = '1.1.1.2' count = 1, interval = 0.1, size = 1473, timeout = 15 async def do_ping(dev, port, dst, count=1, interval=0.1, size=0, timeout=120): cmd = f'ping -I {port} -c {count} -i {interval} -s {size} -w {timeout} {dst}' cmd += ' | grep "ping statistics" -A 2' # filter ouptut rc, out = await dev.run_cmd(cmd) assert rc == 0, f'Failed to send ping from {port} to {dst}' > assert ' 0% ' in out, f'Some pings did not reach their destination\n{out}' E AssertionError: Some pings did not reach their destination E --- 1.1.1.2 ping statistics --- E 145 packets transmitted, 0 received, 100% packet loss, time 14979ms E E E assert ' 0% ' in '--- 1.1.1.2 ping statistics ---\n145 packets transmitted, 0 received, 100% packet loss, time 14979ms\n\n' /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_icmp.py:35: AssertionError -----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-6821' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_ping_size">Starting testcase:test_ipv4_ping_size from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_icmp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=118, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=119] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=119] Local address: 172.17.0.3, port 50840 INFO asyncssh:logging.py:92 [conn=119] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=119] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=119] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=119, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=119, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 23:13:04 UTC 2023 INFO asyncssh:logging.py:92 [conn=119, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=119, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=1] Channel closed DEBUG infra2:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=119, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=119, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=2] Channel closed DEBUG infra2:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=119, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=119, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=3] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=119, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=119, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=4] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=119, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=119, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=119, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=119, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=6] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 23:13:04 UTC 2023 INFO asyncssh:logging.py:92 [conn=119, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=119, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=119, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=119, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=119, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=119, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=119, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=10] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=119, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ipv4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:5_1.1.1.2/24 to 10.36.118.199:2:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=119, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=119, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=119, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=119, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=119, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=11] Channel closed INFO asyncssh:logging.py:92 [conn=119, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=13] Received channel close DEBUG infra2:Logger.py:156 ping -I swp33 -c 1 -i 0.1 -s 100 -w 15 1.1.1.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=119, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=12] Channel closed INFO asyncssh:logging.py:92 [conn=119, chan=13] Channel closed INFO asyncssh:logging.py:92 [conn=119, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=14] Received channel close DEBUG infra2:Logger.py:156 ping -I swp34 -c 1 -i 0.1 -s 100 -w 15 2.2.2.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=119, chan=16] Requesting new SSH session DEBUG infra2:Logger.py:156 ping -I swp35 -c 1 -i 0.1 -s 100 -w 15 3.3.3.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=119, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=14] Channel closed INFO asyncssh:logging.py:92 [conn=119, chan=15] Command: ping -I swp33 -c 1 -i 0.1 -s 100 -w 15 1.1.1.2 | grep "ping statistics" -A 2 DEBUG infra2:Logger.py:156 ping -I swp36 -c 1 -i 0.1 -s 100 -w 15 4.4.4.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=119, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=16] Command: ping -I swp34 -c 1 -i 0.1 -s 100 -w 15 2.2.2.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=119, chan=17] Command: ping -I swp35 -c 1 -i 0.1 -s 100 -w 15 3.3.3.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=119, chan=18] Command: ping -I swp36 -c 1 -i 0.1 -s 100 -w 15 4.4.4.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=119, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=15] Channel closed DEBUG infra2:Logger.py:156 --- 1.1.1.2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.340/0.340/0.340/0.000 ms INFO asyncssh:logging.py:92 [conn=119, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=119, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=18] Received channel close DEBUG infra2:Logger.py:156 --- 3.3.3.2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.289/0.289/0.289/0.000 ms INFO asyncssh:logging.py:92 [conn=119, chan=16] Channel closed INFO asyncssh:logging.py:92 [conn=119, chan=18] Channel closed DEBUG infra2:Logger.py:156 --- 2.2.2.2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.277/0.277/0.277/0.000 ms DEBUG infra2:Logger.py:156 --- 4.4.4.2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.223/0.223/0.223/0.000 ms INFO asyncssh:logging.py:92 [conn=119, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=119, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=119, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=119, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=119, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=19] Channel closed INFO asyncssh:logging.py:92 [conn=119, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=21] Received channel close DEBUG infra2:Logger.py:156 ping -I swp33 -c 1 -i 0.1 -s 1473 -w 15 1.1.1.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=119, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=20] Channel closed INFO asyncssh:logging.py:92 [conn=119, chan=21] Channel closed INFO asyncssh:logging.py:92 [conn=119, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=22] Received channel close DEBUG infra2:Logger.py:156 ping -I swp34 -c 1 -i 0.1 -s 1473 -w 15 2.2.2.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=119, chan=24] Requesting new SSH session DEBUG infra2:Logger.py:156 ping -I swp35 -c 1 -i 0.1 -s 1473 -w 15 3.3.3.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=119, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=22] Channel closed INFO asyncssh:logging.py:92 [conn=119, chan=23] Command: ping -I swp33 -c 1 -i 0.1 -s 1473 -w 15 1.1.1.2 | grep "ping statistics" -A 2 DEBUG infra2:Logger.py:156 ping -I swp36 -c 1 -i 0.1 -s 1473 -w 15 4.4.4.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=119, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=24] Command: ping -I swp34 -c 1 -i 0.1 -s 1473 -w 15 2.2.2.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=119, chan=25] Command: ping -I swp35 -c 1 -i 0.1 -s 1473 -w 15 3.3.3.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=119, chan=26] Command: ping -I swp36 -c 1 -i 0.1 -s 1473 -w 15 4.4.4.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=119, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=23] Channel closed DEBUG infra2:Logger.py:156 --- 1.1.1.2 ping statistics --- 145 packets transmitted, 0 received, 100% packet loss, time 14979ms -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_ping_size from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_icmp.py INFO asyncssh:logging.py:92 [conn=119, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=24] Channel closed INFO asyncssh:logging.py:92 [conn=119, chan=25] Channel closed INFO asyncssh:logging.py:92 [conn=119, chan=26] Channel closed DEBUG infra2:Logger.py:156 --- 2.2.2.2 ping statistics --- 145 packets transmitted, 0 received, 100% packet loss, time 14974ms DEBUG infra2:Logger.py:156 --- 3.3.3.2 ping statistics --- 145 packets transmitted, 0 received, 100% packet loss, time 14984ms DEBUG infra2:Logger.py:156 --- 4.4.4.2 ping statistics --- 144 packets transmitted, 0 received, 100% packet loss, time 14898ms INFO asyncssh:logging.py:92 [conn=119, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=119, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=27] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=119, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=28] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=119, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=28] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=119, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=119, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=29] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=119, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=119, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=30] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 23:15:08 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=119, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=119, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=31] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=119, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=119, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=32] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 23:15:09 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=119, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=119, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=33] Channel closed DEBUG infra2:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 INFO asyncssh:logging.py:92 [conn=119, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=34] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 INFO asyncssh:logging.py:92 [conn=119, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=34] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=119, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=119, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=35] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=119, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=36] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=119, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=36] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"f6:33:41:29:6d:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=119, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=119, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=37] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=119, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=119, chan=38] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=119, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=119, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=119, chan=38] Channel closed DEBUG infra2:Logger.py:156 | |||
| XFailed | functional/ipv4/test_ipv4_mtu.py::test_ipv4_fragmentation | 133.21 | |
|
testbed = <dent_os_testbed.TestBed.TestBed object at 0x7fb7fd4457b0> @pytest.mark.xfail(reason='Device does not support fragmentation') async def test_ipv4_fragmentation(testbed): """ Test Name: test_ipv4_fragmentation Test Suite: suite_functional_ipv4 Test Overview: Test IPv4 fragmentation Test Procedure: 1. Init interfaces 2. Configure ports up 3. Configure IP addrs 4. Generate Non-fragment/fragment traffic and verify reception """ # 1. Init interfaces tgen_dev, dent_devices = await tgen_utils_get_dent_devices_with_tgen(testbed, [], 4) if not tgen_dev or not dent_devices: pytest.skip('The testbed does not have enough dent with tgen connections') dent = dent_devices[0].host_name tg_ports = tgen_dev.links_dict[dent][0] ports = tgen_dev.links_dict[dent][1] traffic_duration = 10 fragmented = 1522 non_fragmented = 1420 address_map = ( # swp port, tg port, swp ip, tg ip, plen (ports[0], tg_ports[0], '1.1.1.1', '1.1.1.2', 24), (ports[1], tg_ports[1], '2.2.2.1', '2.2.2.2', 24), (ports[2], tg_ports[2], '3.3.3.1', '3.3.3.2', 24), (ports[3], tg_ports[3], '4.4.4.1', '4.4.4.2', 24), ) # 2. Configure ports up out = await IpLink.set(input_data=[{dent: [ {'device': port, 'operstate': 'up'} for port, *_ in address_map ]}]) assert out[0][dent]['rc'] == 0, 'Failed to set port state UP' # 3. Configure IP addrs out = await IpAddress.add(input_data=[{dent: [ {'dev': port, 'prefix': f'{ip}/{plen}'} for port, _, ip, _, plen in address_map ]}]) assert out[0][dent]['rc'] == 0, 'Failed to add IP addr to port' dev_groups = tgen_utils_dev_groups_from_config( {'ixp': port, 'ip': ip, 'gw': gw, 'plen': plen} for _, port, gw, ip, plen in address_map ) await tgen_utils_traffic_generator_connect(tgen_dev, tg_ports, ports, dev_groups) streams = { f'{tg1} <-> {tg2} | frame size {size}': { 'type': 'ipv4', 'ip_source': dev_groups[tg1][0]['name'], 'ip_destination': dev_groups[tg2][0]['name'], 'protocol': 'ip', 'rate': '1000', # pps 'frameSize': size, 'bi_directional': True, } for tg1, tg2, size in ((tg_ports[0], tg_ports[1], non_fragmented), (tg_ports[2], tg_ports[3], fragmented)) } # 4. Generate Non-fragment/fragment traffic and verify reception await tgen_utils_setup_streams(tgen_dev, None, streams) await tgen_utils_start_traffic(tgen_dev) await asyncio.sleep(traffic_duration) await tgen_utils_stop_traffic(tgen_dev) # Verify packet discarded/fwd stats = await tgen_utils_get_traffic_stats(tgen_dev, 'Flow Statistics') for row in stats.Rows: loss = tgen_utils_get_loss(row) if str(non_fragmented) in row['Traffic Item']: assert loss == 0, f'Expected loss: 0%, actual: {loss}%' assert row['Tx Frames'] == row['Rx Frames'], \ f"Expected Tx Frames {row['Tx Frames']} to equal Rx Frames {row['Rx Frames']}" else: # fragmented traffic > assert int(row['Rx Frames']) == int(row['Tx Frames']) * 2, \ f"Expected Rx Frames {row['Rx Frames']} to equal 2 * Tx Frames {2 * int(row['Tx Frames'])}" E AssertionError: Expected Rx Frames 0 to equal 2 * Tx Frames 10118 E assert 0 == (5059 * 2) E + where 0 = int('0') E + and 5059 = int('5059') /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_mtu.py:214: AssertionError -----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-7027' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_fragmentation">Starting testcase:test_ipv4_fragmentation from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_mtu.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=122, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=123] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=123] Local address: 172.17.0.3, port 46144 INFO asyncssh:logging.py:92 [conn=123] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=123] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=123] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=123, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 23:21:28 UTC 2023 INFO asyncssh:logging.py:92 [conn=123, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=1] Channel closed DEBUG infra2:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=123, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=123, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=2] Channel closed DEBUG infra2:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=123, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=3] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=123, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=123, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=4] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=123, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=123, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=6] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 23:21:28 UTC 2023 INFO asyncssh:logging.py:92 [conn=123, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=123, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=123, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=123, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=123, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=10] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=123, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:5 <-> 10.36.118.199:2:6 | frame size 1420 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:5_1.1.1.2/24 to 10.36.118.199:2:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:7 <-> 10.36.118.199:2:8 | frame size 1522 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:7_3.3.3.2/24 to 10.36.118.199:2:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f7441cc0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:6 | frame size 1420 SIP-DIP 1.1.1.2-2.2.2.2 Tx 5059 Rx 5059 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:6 | frame size 1420 SIP-DIP 2.2.2.2-1.1.1.2 Tx 5059 Rx 5059 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:8 TI 10.36.118.199:2:7 <-> 10.36.118.199:2:8 | frame size 1522 SIP-DIP 3.3.3.2-4.4.4.2 Tx 5059 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:8 Rx 10.36.118.199:2:7 TI 10.36.118.199:2:7 <-> 10.36.118.199:2:8 | frame size 1522 SIP-DIP 4.4.4.2-3.3.3.2 Tx 5059 Rx 0 Loss 100.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_fragmentation from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_mtu.py INFO asyncssh:logging.py:92 [conn=123, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=11] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=123, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=12] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=123, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=12] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=123, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=123, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=14] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 23:23:40 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=123, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=15] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=123, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=16] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 23:23:41 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=123, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 INFO asyncssh:logging.py:92 [conn=123, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=18] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 INFO asyncssh:logging.py:92 [conn=123, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=123, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=123, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=20] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=123, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=20] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"f6:33:41:29:6d:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=123, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=123, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=123, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=123, chan=22] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=123, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=123, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=123, chan=22] Channel closed DEBUG infra2:Logger.py:156 | |||
| Skipped | functional/L1/test_l1_forced_speed.py::test_l1_forced_speed_[10000-full] | 10.80 | |
|
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_forced_speed.py', 69, 'Skipped: Can not run test in device infra2 with the speed: 10000') -----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-972' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_forced_speed_[10000-full]">Starting testcase:test_l1_forced_speed_[10000-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_forced_speed.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=17, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=18] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=18] Local address: 172.17.0.3, port 60920 INFO asyncssh:logging.py:92 [conn=18] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=18] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=18] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=18, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 17:48:33 UTC 2023 INFO asyncssh:logging.py:92 [conn=18, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=18, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=18, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=2] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"b2:b2:ed:f9:e0:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"f6:33:41:29:6d:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=18, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=18, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=4] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=18, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=18, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=18, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=6] Received channel close DEBUG infra2:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=18, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=6] Channel closed INFO asyncssh:logging.py:92 [conn=18, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=8] Received channel close DEBUG infra2:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=18, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=7] Channel closed INFO asyncssh:logging.py:92 [conn=18, chan=8] Channel closed INFO asyncssh:logging.py:92 [conn=18, chan=9] Command: ethtool swp33 DEBUG infra2:Logger.py:156 ethtool swp35 INFO asyncssh:logging.py:92 [conn=18, chan=11] Requesting new SSH session DEBUG infra2:Logger.py:156 ethtool swp36 INFO asyncssh:logging.py:92 [conn=18, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=10] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=18, chan=11] Command: ethtool swp35 INFO asyncssh:logging.py:92 [conn=18, chan=12] Command: ethtool swp36 INFO asyncssh:logging.py:92 [conn=18, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=9] Channel closed INFO asyncssh:logging.py:92 [conn=18, chan=10] Channel closed INFO asyncssh:logging.py:92 [conn=18, chan=11] Channel closed INFO asyncssh:logging.py:92 [conn=18, chan=12] Channel closed DEBUG infra2:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes DEBUG infra2:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes DEBUG infra2:Logger.py:156 Settings for swp35: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes DEBUG infra2:Logger.py:156 Settings for swp36: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=18, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=18, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=14] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 17:48:43 UTC 2023 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_forced_speed_[10000-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_forced_speed.py INFO asyncssh:logging.py:92 [conn=18, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=15] Channel closed DEBUG infra2:Logger.py:156 ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=18, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=16] Command: ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=18, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=18, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=17] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=18, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=18] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 17:48:43 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=18, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=19] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=18, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=20] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 17:48:43 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=18, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=18, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=18, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=18, chan=22] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=18, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=18, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=18, chan=22] Channel closed DEBUG infra2:Logger.py:156 [] | |||
| Skipped | functional/L1/test_l1_port_state.py::test_l1_link_up_state_software_power_cycle | 0.00 | |
|
('/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_port_state.py', 95, 'Skipped: https://github.com/dentproject/dentOS/issues/152') -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_link_up_state_software_power_cycle from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_port_state.py | |||
| Passed | functional/L1/test_l1_autodetect.py::test_l1_autodetect[10-full] | 166.75 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-16' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_autodetect[10-full]">Starting testcase:test_l1_autodetect[10-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autodetect.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=0, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=1] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=1] Local address: 172.17.0.3, port 50876 INFO asyncssh:logging.py:92 [conn=1] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=1] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=1] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=1, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 16:57:02 UTC 2023 INFO asyncssh:logging.py:92 [conn=1, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=1, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=1, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=2] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"b2:b2:ed:f9:e0:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"f6:33:41:29:6d:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=1, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=1, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=4] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=1, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=1, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=1, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=7] Received channel close DEBUG infra2:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=1, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=6] Channel closed INFO asyncssh:logging.py:92 [conn=1, chan=7] Channel closed INFO asyncssh:logging.py:92 [conn=1, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=8] Received channel close DEBUG infra2:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=1, chan=10] Requesting new SSH session DEBUG infra2:Logger.py:156 ethtool swp35 INFO asyncssh:logging.py:92 [conn=1, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=8] Channel closed INFO asyncssh:logging.py:92 [conn=1, chan=9] Command: ethtool swp33 DEBUG infra2:Logger.py:156 ethtool swp36 INFO asyncssh:logging.py:92 [conn=1, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=10] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=1, chan=11] Command: ethtool swp35 INFO asyncssh:logging.py:92 [conn=1, chan=12] Command: ethtool swp36 INFO asyncssh:logging.py:92 [conn=1, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=9] Channel closed INFO asyncssh:logging.py:92 [conn=1, chan=10] Channel closed INFO asyncssh:logging.py:92 [conn=1, chan=12] Channel closed INFO asyncssh:logging.py:92 [conn=1, chan=11] Channel closed DEBUG infra2:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes DEBUG infra2:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes DEBUG infra2:Logger.py:156 Settings for swp36: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes DEBUG infra2:Logger.py:156 Settings for swp35: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=1, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=1, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=14] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 16:57:12 UTC 2023 INFO asyncssh:logging.py:92 [conn=1, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=15] Channel closed DEBUG infra2:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=1, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=16] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=1, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=16] Channel closed DEBUG infra2:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=1, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=17] Channel closed DEBUG infra2:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=1, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=18] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=1, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=18] Channel closed DEBUG infra2:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=1, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=1, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=20] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=1, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=1, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=1, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=22] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=1, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=22] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=1, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=23] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=1, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=24] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=1, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=24] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=1, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=25] Channel closed DEBUG infra2:Logger.py:156 ethtool -s swp33 speed 10 autoneg off duplex full && ethtool -s swp34 speed 10 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=1, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=26] Command: ethtool -s swp33 speed 10 autoneg off duplex full && ethtool -s swp34 speed 10 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=1, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=26] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Change L1 port configuration (autoneg/speed/duplex) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 10 to None on tgen_port 10.36.118.199:2:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 10.36.118.199:2:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 10 to None on tgen_port 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'update_l1_config', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=1, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=27] Channel closed DEBUG infra2:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=1, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=28] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=1, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=28] Channel closed DEBUG infra2:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: Not reported Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 10Mb/s Duplex: Full Auto-negotiation: off Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=1, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=29] Channel closed DEBUG infra2:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=1, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=30] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=1, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=30] Channel closed DEBUG infra2:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: Not reported Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 10Mb/s Duplex: Full Auto-negotiation: off Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:5 --> 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:6 --> 10.36.118.199:2:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f7616e00>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5 --> 10.36.118.199:2:6 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6583 Rx 6581 Loss 0.030 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:6 --> 10.36.118.199:2:5 SIP-DIP 00:12:01:00:00:01-00:11:01:00:00:01 Tx 6583 Rx 6583 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_autodetect[10-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autodetect.py INFO asyncssh:logging.py:92 [conn=1, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=31] Channel closed DEBUG infra2:Logger.py:156 ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=1, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=32] Command: ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=1, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=32] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=1, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=33] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=1, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=34] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 16:59:48 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=1, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=35] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=1, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=36] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 16:59:48 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=1, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=37] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=1, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=38] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=1, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=38] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":58,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=1, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=1, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=39] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=1, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=1, chan=40] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=1, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=1, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=1, chan=40] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/L1/test_l1_autodetect.py::test_l1_autodetect[10-half] | 239.61 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-72' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_autodetect[10-half]">Starting testcase:test_l1_autodetect[10-half] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autodetect.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=1, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=2] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=2] Local address: 172.17.0.3, port 35790 INFO asyncssh:logging.py:92 [conn=2] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=2] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=2] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=2, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 16:59:48 UTC 2023 INFO asyncssh:logging.py:92 [conn=2, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=2, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=2, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=2] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"b2:b2:ed:f9:e0:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"f6:33:41:29:6d:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=2, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=2, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=4] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=2, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=2, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=2, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=7] Received channel close DEBUG infra2:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=2, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=6] Channel closed INFO asyncssh:logging.py:92 [conn=2, chan=7] Channel closed INFO asyncssh:logging.py:92 [conn=2, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=8] Received channel close DEBUG infra2:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=2, chan=10] Requesting new SSH session DEBUG infra2:Logger.py:156 ethtool swp35 INFO asyncssh:logging.py:92 [conn=2, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=8] Channel closed INFO asyncssh:logging.py:92 [conn=2, chan=9] Command: ethtool swp33 DEBUG infra2:Logger.py:156 ethtool swp36 INFO asyncssh:logging.py:92 [conn=2, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=10] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=2, chan=11] Command: ethtool swp35 INFO asyncssh:logging.py:92 [conn=2, chan=12] Command: ethtool swp36 INFO asyncssh:logging.py:92 [conn=2, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=9] Channel closed INFO asyncssh:logging.py:92 [conn=2, chan=10] Channel closed INFO asyncssh:logging.py:92 [conn=2, chan=11] Channel closed DEBUG infra2:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes DEBUG infra2:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes DEBUG infra2:Logger.py:156 Settings for swp35: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=2, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=12] Channel closed DEBUG infra2:Logger.py:156 Settings for swp36: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=2, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=2, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=14] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 16:59:59 UTC 2023 INFO asyncssh:logging.py:92 [conn=2, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=15] Channel closed DEBUG infra2:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=2, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=16] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=2, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=16] Channel closed DEBUG infra2:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=2, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=17] Channel closed DEBUG infra2:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=2, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=18] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=2, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=18] Channel closed DEBUG infra2:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=2, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=2, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=20] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=2, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=2, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=2, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=22] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=2, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=22] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=2, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=23] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=2, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=24] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=2, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=24] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=2, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=25] Channel closed DEBUG infra2:Logger.py:156 ethtool -s swp33 speed 10 autoneg off duplex half && ethtool -s swp34 speed 10 autoneg off duplex half INFO asyncssh:logging.py:92 [conn=2, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=26] Command: ethtool -s swp33 speed 10 autoneg off duplex half && ethtool -s swp34 speed 10 autoneg off duplex half INFO asyncssh:logging.py:92 [conn=2, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=26] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Change L1 port configuration (autoneg/speed/duplex) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 10 to None on tgen_port 10.36.118.199:2:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 10.36.118.199:2:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 10 to None on tgen_port 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'update_l1_config', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=2, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=27] Channel closed DEBUG infra2:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=2, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=28] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=2, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=28] Channel closed DEBUG infra2:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: Not reported Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 10Mb/s Duplex: Half Auto-negotiation: off Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=2, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=29] Channel closed DEBUG infra2:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=2, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=30] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=2, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=30] Channel closed DEBUG infra2:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: Not reported Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 10Mb/s Duplex: Half Auto-negotiation: off Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:5 --> 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f7aa4a30>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5 --> 10.36.118.199:2:6 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 4651 Rx 4651 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:2:5 --> 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:6 --> 10.36.118.199:2:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f7aa4460>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:6 --> 10.36.118.199:2:5 SIP-DIP 00:12:01:00:00:01-00:11:01:00:00:01 Tx 4725 Rx 4725 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:2:6 --> 10.36.118.199:2:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_autodetect[10-half] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autodetect.py INFO asyncssh:logging.py:92 [conn=2, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=31] Channel closed DEBUG infra2:Logger.py:156 ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=2, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=32] Command: ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=2, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=32] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=2, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=33] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=2, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=34] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 17:03:47 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=2, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=35] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=2, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=36] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 17:03:48 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=2, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=37] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=2, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=38] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=2, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=38] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":59,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=2, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=2, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=39] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=2, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=2, chan=40] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=2, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=2, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=2, chan=40] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/L1/test_l1_autodetect.py::test_l1_autodetect[100-full] | 171.41 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-128' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_autodetect[100-full]">Starting testcase:test_l1_autodetect[100-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autodetect.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=2, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=3] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=3] Local address: 172.17.0.3, port 52788 INFO asyncssh:logging.py:92 [conn=3] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=3] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=3] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=3, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 17:03:48 UTC 2023 INFO asyncssh:logging.py:92 [conn=3, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=3, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=3, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=2] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"b2:b2:ed:f9:e0:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"f6:33:41:29:6d:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=3, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=3, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=4] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=3, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=3, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=3, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=7] Received channel close DEBUG infra2:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=3, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=6] Channel closed INFO asyncssh:logging.py:92 [conn=3, chan=7] Channel closed INFO asyncssh:logging.py:92 [conn=3, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=8] Received channel close DEBUG infra2:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=3, chan=10] Requesting new SSH session DEBUG infra2:Logger.py:156 ethtool swp35 INFO asyncssh:logging.py:92 [conn=3, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=8] Channel closed INFO asyncssh:logging.py:92 [conn=3, chan=9] Command: ethtool swp33 DEBUG infra2:Logger.py:156 ethtool swp36 INFO asyncssh:logging.py:92 [conn=3, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=10] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=3, chan=11] Command: ethtool swp35 INFO asyncssh:logging.py:92 [conn=3, chan=12] Command: ethtool swp36 INFO asyncssh:logging.py:92 [conn=3, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=10] Channel closed INFO asyncssh:logging.py:92 [conn=3, chan=9] Channel closed DEBUG infra2:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes DEBUG infra2:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=3, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=12] Channel closed INFO asyncssh:logging.py:92 [conn=3, chan=11] Channel closed DEBUG infra2:Logger.py:156 Settings for swp36: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes DEBUG infra2:Logger.py:156 Settings for swp35: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=3, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=3, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=14] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 17:03:58 UTC 2023 INFO asyncssh:logging.py:92 [conn=3, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=15] Channel closed DEBUG infra2:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=3, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=16] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=3, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=16] Channel closed DEBUG infra2:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=3, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=17] Channel closed DEBUG infra2:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=3, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=18] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=3, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=18] Channel closed DEBUG infra2:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=3, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=3, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=20] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=3, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=3, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=3, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=22] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=3, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=22] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=3, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=23] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=3, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=24] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=3, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=24] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=3, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=25] Channel closed DEBUG infra2:Logger.py:156 ethtool -s swp33 speed 100 autoneg off duplex full && ethtool -s swp34 speed 100 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=3, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=26] Command: ethtool -s swp33 speed 100 autoneg off duplex full && ethtool -s swp34 speed 100 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=3, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=26] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Change L1 port configuration (autoneg/speed/duplex) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 100 to None on tgen_port 10.36.118.199:2:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 10.36.118.199:2:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 100 to None on tgen_port 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'update_l1_config', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=3, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=27] Channel closed DEBUG infra2:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=3, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=28] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=3, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=28] Channel closed DEBUG infra2:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: Not reported Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 100Mb/s Duplex: Full Auto-negotiation: off Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=3, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=29] Channel closed DEBUG infra2:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=3, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=30] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=3, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=30] Channel closed DEBUG infra2:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: Not reported Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 100Mb/s Duplex: Full Auto-negotiation: off Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:5 --> 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:6 --> 10.36.118.199:2:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f76875e0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5 --> 10.36.118.199:2:6 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 62444 Rx 55826 Loss 10.598 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:6 --> 10.36.118.199:2:5 SIP-DIP 00:12:01:00:00:01-00:11:01:00:00:01 Tx 24081 Rx 17367 Loss 27.881 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_autodetect[100-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autodetect.py INFO asyncssh:logging.py:92 [conn=3, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=31] Channel closed DEBUG infra2:Logger.py:156 ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=3, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=32] Command: ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=3, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=32] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=3, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=33] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=3, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=34] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 17:06:39 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=3, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=35] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=3, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=36] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 17:06:39 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=3, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=37] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=3, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=38] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=3, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=38] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":60,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=3, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=3, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=39] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=3, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=3, chan=40] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=3, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=3, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=3, chan=40] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/L1/test_l1_autodetect.py::test_l1_autodetect[100-half] | 238.35 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-184' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_autodetect[100-half]">Starting testcase:test_l1_autodetect[100-half] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autodetect.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=3, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=4] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=4] Local address: 172.17.0.3, port 42828 INFO asyncssh:logging.py:92 [conn=4] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=4] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=4] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=4, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 17:06:39 UTC 2023 INFO asyncssh:logging.py:92 [conn=4, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=4, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=4, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=2] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"b2:b2:ed:f9:e0:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"f6:33:41:29:6d:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=4, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=4, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=4] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=4, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=4, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=4, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=7] Received channel close DEBUG infra2:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=4, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=6] Channel closed INFO asyncssh:logging.py:92 [conn=4, chan=7] Channel closed INFO asyncssh:logging.py:92 [conn=4, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=8] Received channel close DEBUG infra2:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=4, chan=10] Requesting new SSH session DEBUG infra2:Logger.py:156 ethtool swp35 INFO asyncssh:logging.py:92 [conn=4, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=8] Channel closed INFO asyncssh:logging.py:92 [conn=4, chan=9] Command: ethtool swp33 DEBUG infra2:Logger.py:156 ethtool swp36 INFO asyncssh:logging.py:92 [conn=4, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=10] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=4, chan=11] Command: ethtool swp35 INFO asyncssh:logging.py:92 [conn=4, chan=12] Command: ethtool swp36 INFO asyncssh:logging.py:92 [conn=4, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=9] Channel closed INFO asyncssh:logging.py:92 [conn=4, chan=10] Channel closed INFO asyncssh:logging.py:92 [conn=4, chan=11] Channel closed DEBUG infra2:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes DEBUG infra2:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes DEBUG infra2:Logger.py:156 Settings for swp35: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=4, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=12] Channel closed DEBUG infra2:Logger.py:156 Settings for swp36: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=4, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=4, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=14] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 17:06:50 UTC 2023 INFO asyncssh:logging.py:92 [conn=4, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=15] Channel closed DEBUG infra2:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=4, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=16] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=4, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=16] Channel closed DEBUG infra2:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=4, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=17] Channel closed DEBUG infra2:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=4, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=18] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=4, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=18] Channel closed DEBUG infra2:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=4, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=4, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=20] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=4, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=4, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=4, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=22] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=4, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=22] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=4, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=23] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=4, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=24] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=4, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=24] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=4, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=25] Channel closed DEBUG infra2:Logger.py:156 ethtool -s swp33 speed 100 autoneg off duplex half && ethtool -s swp34 speed 100 autoneg off duplex half INFO asyncssh:logging.py:92 [conn=4, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=26] Command: ethtool -s swp33 speed 100 autoneg off duplex half && ethtool -s swp34 speed 100 autoneg off duplex half INFO asyncssh:logging.py:92 [conn=4, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=26] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Change L1 port configuration (autoneg/speed/duplex) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 100 to None on tgen_port 10.36.118.199:2:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 10.36.118.199:2:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 100 to None on tgen_port 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'update_l1_config', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=4, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=27] Channel closed DEBUG infra2:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=4, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=28] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=4, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=28] Channel closed DEBUG infra2:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: Not reported Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 100Mb/s Duplex: Half Auto-negotiation: off Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=4, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=29] Channel closed DEBUG infra2:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=4, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=30] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=4, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=30] Channel closed DEBUG infra2:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: Not reported Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 100Mb/s Duplex: Half Auto-negotiation: off Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:5 --> 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f7c61900>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5 --> 10.36.118.199:2:6 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 46556 Rx 46556 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:2:5 --> 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:6 --> 10.36.118.199:2:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f7684970>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:6 --> 10.36.118.199:2:5 SIP-DIP 00:12:01:00:00:01-00:11:01:00:00:01 Tx 47057 Rx 47057 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:2:6 --> 10.36.118.199:2:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_autodetect[100-half] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autodetect.py INFO asyncssh:logging.py:92 [conn=4, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=31] Channel closed DEBUG infra2:Logger.py:156 ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=4, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=32] Command: ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=4, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=32] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=4, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=33] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=4, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=34] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 17:10:37 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=4, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=35] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=4, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=36] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 17:10:37 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=4, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=37] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=4, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=38] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=4, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=38] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":61,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=4, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=4, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=39] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=4, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=4, chan=40] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=4, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=4, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=4, chan=40] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/L1/test_l1_autodetect.py::test_l1_autodetect[1000-full] | 167.79 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-240' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_autodetect[1000-full]">Starting testcase:test_l1_autodetect[1000-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autodetect.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=4, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=5] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=5] Local address: 172.17.0.3, port 58828 INFO asyncssh:logging.py:92 [conn=5] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=5] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=5] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=5, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 17:10:38 UTC 2023 INFO asyncssh:logging.py:92 [conn=5, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=5, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=5, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=2] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"b2:b2:ed:f9:e0:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"f6:33:41:29:6d:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=5, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=5, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=4] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=5, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=5, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=5, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=6] Received channel close DEBUG infra2:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=5, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=6] Channel closed INFO asyncssh:logging.py:92 [conn=5, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=8] Received channel close DEBUG infra2:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=5, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=7] Channel closed INFO asyncssh:logging.py:92 [conn=5, chan=8] Channel closed INFO asyncssh:logging.py:92 [conn=5, chan=9] Command: ethtool swp33 DEBUG infra2:Logger.py:156 ethtool swp35 INFO asyncssh:logging.py:92 [conn=5, chan=11] Requesting new SSH session DEBUG infra2:Logger.py:156 ethtool swp36 INFO asyncssh:logging.py:92 [conn=5, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=10] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=5, chan=11] Command: ethtool swp35 INFO asyncssh:logging.py:92 [conn=5, chan=12] Command: ethtool swp36 INFO asyncssh:logging.py:92 [conn=5, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=9] Channel closed DEBUG infra2:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=5, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=10] Channel closed INFO asyncssh:logging.py:92 [conn=5, chan=11] Channel closed INFO asyncssh:logging.py:92 [conn=5, chan=12] Channel closed DEBUG infra2:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes DEBUG infra2:Logger.py:156 Settings for swp35: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes DEBUG infra2:Logger.py:156 Settings for swp36: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=5, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=5, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=14] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 17:10:48 UTC 2023 INFO asyncssh:logging.py:92 [conn=5, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=15] Channel closed DEBUG infra2:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=5, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=16] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=5, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=16] Channel closed DEBUG infra2:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=5, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=17] Channel closed DEBUG infra2:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=5, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=18] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=5, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=18] Channel closed DEBUG infra2:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=5, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=5, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=20] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=5, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=5, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=5, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=22] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=5, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=22] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=5, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=23] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=5, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=24] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=5, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=24] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=5, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=25] Channel closed DEBUG infra2:Logger.py:156 ethtool -s swp33 speed 1000 autoneg off duplex full && ethtool -s swp34 speed 1000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=5, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=26] Command: ethtool -s swp33 speed 1000 autoneg off duplex full && ethtool -s swp34 speed 1000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=5, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=26] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Change L1 port configuration (autoneg/speed/duplex) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 1000 to None on tgen_port 10.36.118.199:2:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 10.36.118.199:2:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 1000 to None on tgen_port 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'update_l1_config', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=5, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=27] Channel closed DEBUG infra2:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=5, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=28] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=5, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=28] Channel closed DEBUG infra2:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: Not reported Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 1000Mb/s Duplex: Full Auto-negotiation: off Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=5, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=29] Channel closed DEBUG infra2:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=5, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=30] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=5, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=30] Channel closed DEBUG infra2:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: Not reported Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 1000Mb/s Duplex: Full Auto-negotiation: off Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:5 --> 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:6 --> 10.36.118.199:2:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f7686f80>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5 --> 10.36.118.199:2:6 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 424104 Rx 424104 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:6 --> 10.36.118.199:2:5 SIP-DIP 00:12:01:00:00:01-00:11:01:00:00:01 Tx 424104 Rx 424104 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_autodetect[1000-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autodetect.py INFO asyncssh:logging.py:92 [conn=5, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=31] Channel closed DEBUG infra2:Logger.py:156 ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=5, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=32] Command: ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=5, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=32] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=5, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=33] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=5, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=34] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 17:13:25 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=5, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=35] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=5, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=36] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 17:13:25 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=5, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=37] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=5, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=38] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=5, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=38] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":62,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=5, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=5, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=39] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=5, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=5, chan=40] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=5, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=5, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=5, chan=40] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/L1/test_l1_autoneg.py::test_l1_autoneg[10-full] | 177.34 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-296' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_autoneg[10-full]">Starting testcase:test_l1_autoneg[10-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autoneg.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=5, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=6] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=6] Local address: 172.17.0.3, port 40598 INFO asyncssh:logging.py:92 [conn=6] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=6] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=6] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=6, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 17:13:26 UTC 2023 INFO asyncssh:logging.py:92 [conn=6, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=6, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=6, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=2] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"b2:b2:ed:f9:e0:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"f6:33:41:29:6d:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=6, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=6, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=4] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=6, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=6, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=6, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=6] Received channel close DEBUG infra2:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=6, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=6] Channel closed INFO asyncssh:logging.py:92 [conn=6, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=8] Received channel close DEBUG infra2:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=6, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=7] Channel closed INFO asyncssh:logging.py:92 [conn=6, chan=8] Channel closed INFO asyncssh:logging.py:92 [conn=6, chan=9] Command: ethtool swp33 DEBUG infra2:Logger.py:156 ethtool swp35 INFO asyncssh:logging.py:92 [conn=6, chan=11] Requesting new SSH session DEBUG infra2:Logger.py:156 ethtool swp36 INFO asyncssh:logging.py:92 [conn=6, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=10] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=6, chan=11] Command: ethtool swp35 INFO asyncssh:logging.py:92 [conn=6, chan=12] Command: ethtool swp36 INFO asyncssh:logging.py:92 [conn=6, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=9] Channel closed DEBUG infra2:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=6, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=10] Channel closed INFO asyncssh:logging.py:92 [conn=6, chan=12] Channel closed INFO asyncssh:logging.py:92 [conn=6, chan=11] Channel closed DEBUG infra2:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes DEBUG infra2:Logger.py:156 Settings for swp36: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes DEBUG infra2:Logger.py:156 Settings for swp35: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=6, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=6, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=14] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 17:13:36 UTC 2023 INFO asyncssh:logging.py:92 [conn=6, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=15] Channel closed DEBUG infra2:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=6, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=16] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=6, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=16] Channel closed DEBUG infra2:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=6, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=17] Channel closed DEBUG infra2:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=6, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=18] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=6, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=18] Channel closed DEBUG infra2:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=6, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=6, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=20] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=6, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=6, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=6, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=22] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=6, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=22] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=6, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=23] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=6, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=24] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=6, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=24] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=6, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=25] Channel closed DEBUG infra2:Logger.py:156 ethtool -s swp33 speed 10 autoneg on duplex full advertise 0x002 && ethtool -s swp34 speed 10 autoneg on duplex full advertise 0x002 INFO asyncssh:logging.py:92 [conn=6, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=26] Command: ethtool -s swp33 speed 10 autoneg on duplex full advertise 0x002 && ethtool -s swp34 speed 10 autoneg on duplex full advertise 0x002 INFO asyncssh:logging.py:92 [conn=6, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=26] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Change L1 port configuration (autoneg/speed/duplex) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 10 to None on tgen_port 10.36.118.199:2:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 10.36.118.199:2:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 10 to None on tgen_port 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'update_l1_config', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=6, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=27] Channel closed DEBUG infra2:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=6, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=28] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=6, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=28] Channel closed DEBUG infra2:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 10Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=6, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=29] Channel closed DEBUG infra2:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=6, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=30] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=6, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=30] Channel closed DEBUG infra2:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 10Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:5 --> 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:6 --> 10.36.118.199:2:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f76bf070>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5 --> 10.36.118.199:2:6 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6584 Rx 6584 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:6 --> 10.36.118.199:2:5 SIP-DIP 00:12:01:00:00:01-00:11:01:00:00:01 Tx 6584 Rx 6584 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_autoneg[10-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autoneg.py INFO asyncssh:logging.py:92 [conn=6, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=31] Channel closed DEBUG infra2:Logger.py:156 ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=6, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=32] Command: ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=6, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=32] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=6, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=33] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=6, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=34] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 17:16:22 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=6, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=35] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=6, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=36] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 17:16:22 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=6, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=37] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=6, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=38] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=6, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=38] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":63,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=6, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=6, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=39] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=6, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=6, chan=40] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=6, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=6, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=6, chan=40] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/L1/test_l1_autoneg.py::test_l1_autoneg[10-half] | 240.48 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-352' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_autoneg[10-half]">Starting testcase:test_l1_autoneg[10-half] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autoneg.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=6, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=7] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=7] Local address: 172.17.0.3, port 48710 INFO asyncssh:logging.py:92 [conn=7] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=7] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=7] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=7, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 17:16:23 UTC 2023 INFO asyncssh:logging.py:92 [conn=7, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=7, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=7, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=2] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"b2:b2:ed:f9:e0:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"f6:33:41:29:6d:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=7, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=7, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=4] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=7, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=7, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=7, chan=6] Channel closed INFO asyncssh:logging.py:92 [conn=7, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=8] Received channel close DEBUG infra2:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=7, chan=9] Requesting new SSH session DEBUG infra2:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=7, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=7] Channel closed INFO asyncssh:logging.py:92 [conn=7, chan=8] Channel closed DEBUG infra2:Logger.py:156 ethtool swp35 INFO asyncssh:logging.py:92 [conn=7, chan=11] Requesting new SSH session DEBUG infra2:Logger.py:156 ethtool swp36 INFO asyncssh:logging.py:92 [conn=7, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=9] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=7, chan=10] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=7, chan=11] Command: ethtool swp35 INFO asyncssh:logging.py:92 [conn=7, chan=12] Command: ethtool swp36 INFO asyncssh:logging.py:92 [conn=7, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=10] Channel closed INFO asyncssh:logging.py:92 [conn=7, chan=9] Channel closed INFO asyncssh:logging.py:92 [conn=7, chan=11] Channel closed DEBUG infra2:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes DEBUG infra2:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes DEBUG infra2:Logger.py:156 Settings for swp35: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=7, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=12] Channel closed DEBUG infra2:Logger.py:156 Settings for swp36: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=7, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=7, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=14] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 17:16:33 UTC 2023 INFO asyncssh:logging.py:92 [conn=7, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=15] Channel closed DEBUG infra2:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=7, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=16] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=7, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=16] Channel closed DEBUG infra2:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=7, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=17] Channel closed DEBUG infra2:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=7, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=18] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=7, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=18] Channel closed DEBUG infra2:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=7, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=7, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=20] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=7, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=7, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=7, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=22] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=7, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=22] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=7, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=23] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=7, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=24] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=7, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=24] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=7, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=25] Channel closed DEBUG infra2:Logger.py:156 ethtool -s swp33 speed 10 autoneg on duplex half advertise 0x001 && ethtool -s swp34 speed 10 autoneg on duplex half advertise 0x001 INFO asyncssh:logging.py:92 [conn=7, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=26] Command: ethtool -s swp33 speed 10 autoneg on duplex half advertise 0x001 && ethtool -s swp34 speed 10 autoneg on duplex half advertise 0x001 INFO asyncssh:logging.py:92 [conn=7, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=26] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Change L1 port configuration (autoneg/speed/duplex) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 10 to None on tgen_port 10.36.118.199:2:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 10.36.118.199:2:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 10 to None on tgen_port 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'update_l1_config', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=7, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=27] Channel closed DEBUG infra2:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=7, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=28] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=7, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=28] Channel closed DEBUG infra2:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 10Mb/s Duplex: Half Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=7, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=29] Channel closed DEBUG infra2:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=7, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=30] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=7, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=30] Channel closed DEBUG infra2:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 10Mb/s Duplex: Half Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:5 --> 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f7684940>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5 --> 10.36.118.199:2:6 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 4667 Rx 4667 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:2:5 --> 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:6 --> 10.36.118.199:2:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f7687a30>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:6 --> 10.36.118.199:2:5 SIP-DIP 00:12:01:00:00:01-00:11:01:00:00:01 Tx 4692 Rx 4692 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:2:6 --> 10.36.118.199:2:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_autoneg[10-half] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autoneg.py INFO asyncssh:logging.py:92 [conn=7, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=31] Channel closed DEBUG infra2:Logger.py:156 ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=7, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=32] Command: ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=7, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=32] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=7, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=33] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=7, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=34] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 17:20:23 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=7, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=35] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=7, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=36] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 17:20:23 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=7, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=37] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=7, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=38] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=7, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=38] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":64,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=7, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=7, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=39] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=7, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=7, chan=40] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=7, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=7, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=7, chan=40] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/L1/test_l1_autoneg.py::test_l1_autoneg[100-full] | 178.34 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-408' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_autoneg[100-full]">Starting testcase:test_l1_autoneg[100-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autoneg.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=7, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=8] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=8] Local address: 172.17.0.3, port 33030 INFO asyncssh:logging.py:92 [conn=8] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=8] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=8] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=8, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 17:20:23 UTC 2023 INFO asyncssh:logging.py:92 [conn=8, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=8, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=8, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=2] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"b2:b2:ed:f9:e0:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"f6:33:41:29:6d:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=8, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=8, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=4] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=8, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=8, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=8, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=7] Received channel close DEBUG infra2:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=8, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=6] Channel closed INFO asyncssh:logging.py:92 [conn=8, chan=7] Channel closed INFO asyncssh:logging.py:92 [conn=8, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=8] Received channel close DEBUG infra2:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=8, chan=10] Requesting new SSH session DEBUG infra2:Logger.py:156 ethtool swp35 INFO asyncssh:logging.py:92 [conn=8, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=8] Channel closed INFO asyncssh:logging.py:92 [conn=8, chan=9] Command: ethtool swp33 DEBUG infra2:Logger.py:156 ethtool swp36 INFO asyncssh:logging.py:92 [conn=8, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=10] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=8, chan=11] Command: ethtool swp35 INFO asyncssh:logging.py:92 [conn=8, chan=12] Command: ethtool swp36 INFO asyncssh:logging.py:92 [conn=8, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=10] Channel closed DEBUG infra2:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=8, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=9] Channel closed INFO asyncssh:logging.py:92 [conn=8, chan=11] Channel closed DEBUG infra2:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes DEBUG infra2:Logger.py:156 Settings for swp35: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=8, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=12] Channel closed DEBUG infra2:Logger.py:156 Settings for swp36: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=8, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=8, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=14] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 17:20:34 UTC 2023 INFO asyncssh:logging.py:92 [conn=8, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=15] Channel closed DEBUG infra2:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=8, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=16] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=8, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=16] Channel closed DEBUG infra2:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=8, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=17] Channel closed DEBUG infra2:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=8, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=18] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=8, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=18] Channel closed DEBUG infra2:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=8, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=8, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=20] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=8, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=8, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=8, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=22] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=8, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=22] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=8, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=23] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=8, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=24] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=8, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=24] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=8, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=25] Channel closed DEBUG infra2:Logger.py:156 ethtool -s swp33 speed 100 autoneg on duplex full advertise 0x008 && ethtool -s swp34 speed 100 autoneg on duplex full advertise 0x008 INFO asyncssh:logging.py:92 [conn=8, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=26] Command: ethtool -s swp33 speed 100 autoneg on duplex full advertise 0x008 && ethtool -s swp34 speed 100 autoneg on duplex full advertise 0x008 INFO asyncssh:logging.py:92 [conn=8, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=26] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Change L1 port configuration (autoneg/speed/duplex) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 100 to None on tgen_port 10.36.118.199:2:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 10.36.118.199:2:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 100 to None on tgen_port 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'update_l1_config', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=8, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=27] Channel closed DEBUG infra2:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=8, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=28] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=8, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=28] Channel closed DEBUG infra2:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 100baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 100Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=8, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=29] Channel closed DEBUG infra2:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=8, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=30] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=8, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=30] Channel closed DEBUG infra2:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 100baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 100Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:5 --> 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:6 --> 10.36.118.199:2:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f76bcc10>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5 --> 10.36.118.199:2:6 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 65906 Rx 65906 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:6 --> 10.36.118.199:2:5 SIP-DIP 00:12:01:00:00:01-00:11:01:00:00:01 Tx 65906 Rx 65906 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_autoneg[100-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autoneg.py INFO asyncssh:logging.py:92 [conn=8, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=31] Channel closed DEBUG infra2:Logger.py:156 ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=8, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=32] Command: ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=8, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=32] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=8, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=33] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=8, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=34] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 17:23:21 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=8, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=35] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=8, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=36] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 17:23:21 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=8, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=37] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=8, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=38] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=8, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=38] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":65,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=8, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=8, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=39] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=8, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=8, chan=40] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=8, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=8, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=8, chan=40] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/L1/test_l1_autoneg.py::test_l1_autoneg[100-half] | 243.33 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-464' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_autoneg[100-half]">Starting testcase:test_l1_autoneg[100-half] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autoneg.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=8, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=9] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=9] Local address: 172.17.0.3, port 49374 INFO asyncssh:logging.py:92 [conn=9] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=9] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=9] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=9, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 17:23:22 UTC 2023 INFO asyncssh:logging.py:92 [conn=9, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=9, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=9, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=2] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"b2:b2:ed:f9:e0:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"f6:33:41:29:6d:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=9, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=9, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=4] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=9, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=9, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=9, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=6] Received channel close DEBUG infra2:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=9, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=6] Channel closed INFO asyncssh:logging.py:92 [conn=9, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=8] Received channel close DEBUG infra2:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=9, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=7] Channel closed INFO asyncssh:logging.py:92 [conn=9, chan=8] Channel closed INFO asyncssh:logging.py:92 [conn=9, chan=9] Command: ethtool swp33 DEBUG infra2:Logger.py:156 ethtool swp35 INFO asyncssh:logging.py:92 [conn=9, chan=11] Requesting new SSH session DEBUG infra2:Logger.py:156 ethtool swp36 INFO asyncssh:logging.py:92 [conn=9, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=10] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=9, chan=11] Command: ethtool swp35 INFO asyncssh:logging.py:92 [conn=9, chan=12] Command: ethtool swp36 INFO asyncssh:logging.py:92 [conn=9, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=9] Channel closed INFO asyncssh:logging.py:92 [conn=9, chan=11] Channel closed INFO asyncssh:logging.py:92 [conn=9, chan=12] Channel closed INFO asyncssh:logging.py:92 [conn=9, chan=10] Channel closed DEBUG infra2:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes DEBUG infra2:Logger.py:156 Settings for swp35: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes DEBUG infra2:Logger.py:156 Settings for swp36: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes DEBUG infra2:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=9, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=9, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=14] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 17:23:32 UTC 2023 INFO asyncssh:logging.py:92 [conn=9, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=15] Channel closed DEBUG infra2:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=9, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=16] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=9, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=16] Channel closed DEBUG infra2:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=9, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=17] Channel closed DEBUG infra2:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=9, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=18] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=9, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=18] Channel closed DEBUG infra2:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=9, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=9, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=20] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=9, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=9, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=9, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=22] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=9, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=22] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=9, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=23] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=9, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=24] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=9, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=24] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=9, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=25] Channel closed DEBUG infra2:Logger.py:156 ethtool -s swp33 speed 100 autoneg on duplex half advertise 0x004 && ethtool -s swp34 speed 100 autoneg on duplex half advertise 0x004 INFO asyncssh:logging.py:92 [conn=9, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=26] Command: ethtool -s swp33 speed 100 autoneg on duplex half advertise 0x004 && ethtool -s swp34 speed 100 autoneg on duplex half advertise 0x004 INFO asyncssh:logging.py:92 [conn=9, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=26] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Change L1 port configuration (autoneg/speed/duplex) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 100 to None on tgen_port 10.36.118.199:2:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 10.36.118.199:2:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 100 to None on tgen_port 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'update_l1_config', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=9, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=27] Channel closed DEBUG infra2:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=9, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=28] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=9, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=28] Channel closed DEBUG infra2:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 100baseT/Half Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 100Mb/s Duplex: Half Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=9, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=29] Channel closed DEBUG infra2:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=9, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=30] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=9, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=30] Channel closed DEBUG infra2:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 100baseT/Half Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 100Mb/s Duplex: Half Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:5 --> 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f7684970>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5 --> 10.36.118.199:2:6 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 48316 Rx 48316 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:2:5 --> 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:6 --> 10.36.118.199:2:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f7aa7130>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:6 --> 10.36.118.199:2:5 SIP-DIP 00:12:01:00:00:01-00:11:01:00:00:01 Tx 46962 Rx 46962 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:2:6 --> 10.36.118.199:2:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_autoneg[100-half] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autoneg.py INFO asyncssh:logging.py:92 [conn=9, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=31] Channel closed DEBUG infra2:Logger.py:156 ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=9, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=32] Command: ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=9, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=32] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=9, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=33] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=9, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=34] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 17:27:24 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=9, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=35] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=9, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=36] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 17:27:25 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=9, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=37] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=9, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=38] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=9, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=38] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":66,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=9, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=9, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=39] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=9, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=9, chan=40] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=9, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=9, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=9, chan=40] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/L1/test_l1_autoneg.py::test_l1_autoneg[1000-full] | 171.96 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-520' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_autoneg[1000-full]">Starting testcase:test_l1_autoneg[1000-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autoneg.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=9, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=10] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=10] Local address: 172.17.0.3, port 45254 INFO asyncssh:logging.py:92 [conn=10] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=10] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=10] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=10, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 17:27:25 UTC 2023 INFO asyncssh:logging.py:92 [conn=10, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=10, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=10, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=2] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"b2:b2:ed:f9:e0:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"f6:33:41:29:6d:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=10, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=10, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=4] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=10, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=10, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=10, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=7] Received channel close DEBUG infra2:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=10, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=6] Channel closed INFO asyncssh:logging.py:92 [conn=10, chan=7] Channel closed INFO asyncssh:logging.py:92 [conn=10, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=8] Received channel close DEBUG infra2:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=10, chan=10] Requesting new SSH session DEBUG infra2:Logger.py:156 ethtool swp35 INFO asyncssh:logging.py:92 [conn=10, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=8] Channel closed INFO asyncssh:logging.py:92 [conn=10, chan=9] Command: ethtool swp33 DEBUG infra2:Logger.py:156 ethtool swp36 INFO asyncssh:logging.py:92 [conn=10, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=10] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=10, chan=11] Command: ethtool swp35 INFO asyncssh:logging.py:92 [conn=10, chan=12] Command: ethtool swp36 INFO asyncssh:logging.py:92 [conn=10, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=9] Channel closed DEBUG infra2:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=10, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=10] Channel closed INFO asyncssh:logging.py:92 [conn=10, chan=11] Channel closed INFO asyncssh:logging.py:92 [conn=10, chan=12] Channel closed DEBUG infra2:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes DEBUG infra2:Logger.py:156 Settings for swp35: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes DEBUG infra2:Logger.py:156 Settings for swp36: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=10, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=10, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=14] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 17:27:35 UTC 2023 INFO asyncssh:logging.py:92 [conn=10, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=15] Channel closed DEBUG infra2:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=10, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=16] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=10, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=16] Channel closed DEBUG infra2:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=10, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=17] Channel closed DEBUG infra2:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=10, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=18] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=10, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=18] Channel closed DEBUG infra2:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=10, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=10, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=20] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=10, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=10, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=10, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=22] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=10, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=22] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=10, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=23] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=10, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=24] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=10, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=24] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=10, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=25] Channel closed DEBUG infra2:Logger.py:156 ethtool -s swp33 speed 1000 autoneg on duplex full advertise 0x020 && ethtool -s swp34 speed 1000 autoneg on duplex full advertise 0x020 INFO asyncssh:logging.py:92 [conn=10, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=26] Command: ethtool -s swp33 speed 1000 autoneg on duplex full advertise 0x020 && ethtool -s swp34 speed 1000 autoneg on duplex full advertise 0x020 INFO asyncssh:logging.py:92 [conn=10, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=26] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Change L1 port configuration (autoneg/speed/duplex) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 1000 to None on tgen_port 10.36.118.199:2:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 10.36.118.199:2:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 1000 to None on tgen_port 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'update_l1_config', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=10, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=27] Channel closed DEBUG infra2:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=10, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=28] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=10, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=28] Channel closed DEBUG infra2:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=10, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=29] Channel closed DEBUG infra2:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=10, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=30] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=10, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=30] Channel closed DEBUG infra2:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:5 --> 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:6 --> 10.36.118.199:2:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f76ec850>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5 --> 10.36.118.199:2:6 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 429321 Rx 429321 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:6 --> 10.36.118.199:2:5 SIP-DIP 00:12:01:00:00:01-00:11:01:00:00:01 Tx 429321 Rx 429321 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_autoneg[1000-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_autoneg.py INFO asyncssh:logging.py:92 [conn=10, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=31] Channel closed DEBUG infra2:Logger.py:156 ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=10, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=32] Command: ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=10, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=32] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=10, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=33] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=10, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=34] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 17:30:16 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=10, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=35] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=10, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=36] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 17:30:17 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=10, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=37] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=10, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=38] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=10, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=38] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":67,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=10, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=10, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=39] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=10, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=10, chan=40] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=10, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=10, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=10, chan=40] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/L1/test_l1_config.py::test_l1_settings_[autodetect] | 50.75 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-576' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_settings_[autodetect]">Starting testcase:test_l1_settings_[autodetect] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_config.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=10, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=11] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=11] Local address: 172.17.0.3, port 53252 INFO asyncssh:logging.py:92 [conn=11] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=11] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=11] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=11, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 17:30:17 UTC 2023 INFO asyncssh:logging.py:92 [conn=11, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=11, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=11, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=2] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"b2:b2:ed:f9:e0:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"f6:33:41:29:6d:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=11, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=11, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=4] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=11, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=11, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=11, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=6] Received channel close DEBUG infra2:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=11, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=6] Channel closed INFO asyncssh:logging.py:92 [conn=11, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=8] Received channel close DEBUG infra2:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=11, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=7] Channel closed INFO asyncssh:logging.py:92 [conn=11, chan=8] Channel closed INFO asyncssh:logging.py:92 [conn=11, chan=9] Command: ethtool swp33 DEBUG infra2:Logger.py:156 ethtool swp35 INFO asyncssh:logging.py:92 [conn=11, chan=11] Requesting new SSH session DEBUG infra2:Logger.py:156 ethtool swp36 INFO asyncssh:logging.py:92 [conn=11, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=10] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=11, chan=11] Command: ethtool swp35 INFO asyncssh:logging.py:92 [conn=11, chan=12] Command: ethtool swp36 INFO asyncssh:logging.py:92 [conn=11, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=9] Channel closed DEBUG infra2:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=11, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=10] Channel closed INFO asyncssh:logging.py:92 [conn=11, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=11] Received channel close DEBUG infra2:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=11, chan=12] Channel closed INFO asyncssh:logging.py:92 [conn=11, chan=11] Channel closed DEBUG infra2:Logger.py:156 Settings for swp36: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes DEBUG infra2:Logger.py:156 Settings for swp35: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=11, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=11, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=14] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 17:30:27 UTC 2023 INFO asyncssh:logging.py:92 [conn=11, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=15] Channel closed DEBUG infra2:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=11, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=16] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=11, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=16] Channel closed DEBUG infra2:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=11, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=17] Channel closed DEBUG infra2:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=11, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=18] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=11, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=18] Channel closed DEBUG infra2:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=11, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=19] Channel closed DEBUG infra2:Logger.py:156 ethtool swp35 INFO asyncssh:logging.py:92 [conn=11, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=20] Command: ethtool swp35 INFO asyncssh:logging.py:92 [conn=11, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=20] Channel closed DEBUG infra2:Logger.py:156 Settings for swp35: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=11, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=21] Channel closed DEBUG infra2:Logger.py:156 ethtool swp36 INFO asyncssh:logging.py:92 [conn=11, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=22] Command: ethtool swp36 INFO asyncssh:logging.py:92 [conn=11, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=22] Channel closed DEBUG infra2:Logger.py:156 Settings for swp36: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=11, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=23] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=11, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=24] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=11, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=24] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=11, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=25] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=11, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=26] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=11, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=26] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=11, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=27] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 INFO asyncssh:logging.py:92 [conn=11, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=28] Command: ip link set dev swp33 up master br0 INFO asyncssh:logging.py:92 [conn=11, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=28] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=11, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=29] Channel closed DEBUG infra2:Logger.py:156 ethtool -s swp33 speed 1000 duplex full INFO asyncssh:logging.py:92 [conn=11, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=30] Command: ethtool -s swp33 speed 1000 duplex full INFO asyncssh:logging.py:92 [conn=11, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=30] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] list index out of range INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Change L1 port configuration (autoneg/speed/duplex) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 100 to 1000 on tgen_port 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 100 to 1000 on tgen_port 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 100 to 1000 on tgen_port 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 100 to 1000 on tgen_port 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'update_l1_config', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=11, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=31] Channel closed DEBUG infra2:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=11, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=32] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=11, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=32] Channel closed DEBUG infra2:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_settings_[autodetect] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_config.py INFO asyncssh:logging.py:92 [conn=11, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=33] Channel closed DEBUG infra2:Logger.py:156 ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=11, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=34] Command: ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=11, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=34] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=11, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=35] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=11, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=36] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 17:31:07 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=11, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=37] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=11, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=38] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=38] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 17:31:07 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=11, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=39] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=11, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=40] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=11, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=40] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":68,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=11, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=11, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=41] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=11, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=11, chan=42] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=11, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=11, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=11, chan=42] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/L1/test_l1_config.py::test_l1_settings_[autoneg] | 44.72 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-634' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_settings_[autoneg]">Starting testcase:test_l1_settings_[autoneg] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_config.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=11, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=12] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=12] Local address: 172.17.0.3, port 46738 INFO asyncssh:logging.py:92 [conn=12] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=12] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=12] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=12, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 17:31:08 UTC 2023 INFO asyncssh:logging.py:92 [conn=12, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=12, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=12, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=2] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"b2:b2:ed:f9:e0:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"f6:33:41:29:6d:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=12, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=12, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=4] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=12, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=12, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=12, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=7] Received channel close DEBUG infra2:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=12, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=6] Channel closed INFO asyncssh:logging.py:92 [conn=12, chan=7] Channel closed INFO asyncssh:logging.py:92 [conn=12, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=8] Received channel close DEBUG infra2:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=12, chan=10] Requesting new SSH session DEBUG infra2:Logger.py:156 ethtool swp35 INFO asyncssh:logging.py:92 [conn=12, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=8] Channel closed INFO asyncssh:logging.py:92 [conn=12, chan=9] Command: ethtool swp33 DEBUG infra2:Logger.py:156 ethtool swp36 INFO asyncssh:logging.py:92 [conn=12, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=10] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=12, chan=11] Command: ethtool swp35 INFO asyncssh:logging.py:92 [conn=12, chan=12] Command: ethtool swp36 INFO asyncssh:logging.py:92 [conn=12, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=9] Channel closed DEBUG infra2:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=12, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=11] Channel closed INFO asyncssh:logging.py:92 [conn=12, chan=10] Channel closed DEBUG infra2:Logger.py:156 Settings for swp35: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes DEBUG infra2:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=12, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=12] Channel closed DEBUG infra2:Logger.py:156 Settings for swp36: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=12, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=12, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=14] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 17:31:18 UTC 2023 INFO asyncssh:logging.py:92 [conn=12, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=15] Channel closed DEBUG infra2:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=12, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=16] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=12, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=16] Channel closed DEBUG infra2:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=12, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=17] Channel closed DEBUG infra2:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=12, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=18] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=12, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=18] Channel closed DEBUG infra2:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=12, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=19] Channel closed DEBUG infra2:Logger.py:156 ethtool swp35 INFO asyncssh:logging.py:92 [conn=12, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=20] Command: ethtool swp35 INFO asyncssh:logging.py:92 [conn=12, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=20] Channel closed DEBUG infra2:Logger.py:156 Settings for swp35: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=12, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=21] Channel closed DEBUG infra2:Logger.py:156 ethtool swp36 INFO asyncssh:logging.py:92 [conn=12, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=22] Command: ethtool swp36 INFO asyncssh:logging.py:92 [conn=12, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=22] Channel closed DEBUG infra2:Logger.py:156 Settings for swp36: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=12, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=23] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=12, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=24] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=12, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=24] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=12, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=25] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=12, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=26] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=12, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=26] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=12, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=27] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 INFO asyncssh:logging.py:92 [conn=12, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=28] Command: ip link set dev swp33 up master br0 INFO asyncssh:logging.py:92 [conn=12, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=28] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=12, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=29] Channel closed DEBUG infra2:Logger.py:156 ethtool -s swp33 autoneg on advertise 0x020 INFO asyncssh:logging.py:92 [conn=12, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=30] Command: ethtool -s swp33 autoneg on advertise 0x020 INFO asyncssh:logging.py:92 [conn=12, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=30] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] list index out of range INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Change L1 port configuration (autoneg/speed/duplex) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 100 to 1000 on tgen_port 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 100 to 1000 on tgen_port 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 100 to 1000 on tgen_port 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 100 to 1000 on tgen_port 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'update_l1_config', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=12, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=31] Channel closed DEBUG infra2:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=12, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=32] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=12, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=32] Channel closed DEBUG infra2:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_settings_[autoneg] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_config.py INFO asyncssh:logging.py:92 [conn=12, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=33] Channel closed DEBUG infra2:Logger.py:156 ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=12, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=34] Command: ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=12, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=34] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=12, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=35] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=12, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=36] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 17:31:52 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=12, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=37] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=12, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=38] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=38] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 17:31:52 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=12, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=39] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=12, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=40] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=12, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=40] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":69,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=12, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=12, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=41] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=12, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=12, chan=42] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=12, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=12, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=12, chan=42] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/L1/test_l1_forced_speed.py::test_l1_forced_speed_[10-full] | 167.87 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-692' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_forced_speed_[10-full]">Starting testcase:test_l1_forced_speed_[10-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_forced_speed.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=12, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=13] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=13] Local address: 172.17.0.3, port 54214 INFO asyncssh:logging.py:92 [conn=13] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=13] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=13] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=13, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 17:31:52 UTC 2023 INFO asyncssh:logging.py:92 [conn=13, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=13, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=13, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=2] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"b2:b2:ed:f9:e0:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"f6:33:41:29:6d:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=13, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=13, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=4] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=13, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=13, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=13, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=7] Received channel close DEBUG infra2:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=13, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=6] Channel closed INFO asyncssh:logging.py:92 [conn=13, chan=7] Channel closed INFO asyncssh:logging.py:92 [conn=13, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=8] Received channel close DEBUG infra2:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=13, chan=10] Requesting new SSH session DEBUG infra2:Logger.py:156 ethtool swp35 INFO asyncssh:logging.py:92 [conn=13, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=8] Channel closed INFO asyncssh:logging.py:92 [conn=13, chan=9] Command: ethtool swp33 DEBUG infra2:Logger.py:156 ethtool swp36 INFO asyncssh:logging.py:92 [conn=13, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=10] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=13, chan=11] Command: ethtool swp35 INFO asyncssh:logging.py:92 [conn=13, chan=12] Command: ethtool swp36 INFO asyncssh:logging.py:92 [conn=13, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=9] Channel closed INFO asyncssh:logging.py:92 [conn=13, chan=10] Channel closed INFO asyncssh:logging.py:92 [conn=13, chan=11] Channel closed INFO asyncssh:logging.py:92 [conn=13, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=12] Received channel close DEBUG infra2:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes DEBUG infra2:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes DEBUG infra2:Logger.py:156 Settings for swp35: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=13, chan=12] Channel closed DEBUG infra2:Logger.py:156 Settings for swp36: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=13, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=13, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=14] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 17:32:03 UTC 2023 INFO asyncssh:logging.py:92 [conn=13, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=15] Channel closed DEBUG infra2:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=13, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=16] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=13, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=16] Channel closed DEBUG infra2:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=13, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=17] Channel closed DEBUG infra2:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=13, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=18] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=13, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=18] Channel closed DEBUG infra2:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=13, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=13, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=20] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=13, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=13, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=13, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=22] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=13, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=22] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=13, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=23] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=13, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=24] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=13, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=24] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=13, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=25] Channel closed DEBUG infra2:Logger.py:156 ethtool -s swp33 speed 10 autoneg off duplex full && ethtool -s swp34 speed 10 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=13, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=26] Command: ethtool -s swp33 speed 10 autoneg off duplex full && ethtool -s swp34 speed 10 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=13, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=26] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Change L1 port configuration (autoneg/speed/duplex) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 10 to 10 on tgen_port 10.36.118.199:2:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to False on tgen_port 10.36.118.199:2:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 10 to 10 on tgen_port 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to False on tgen_port 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'update_l1_config', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=13, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=27] Channel closed DEBUG infra2:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=13, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=28] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=13, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=28] Channel closed DEBUG infra2:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: Not reported Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 10Mb/s Duplex: Full Auto-negotiation: off Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=13, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=29] Channel closed DEBUG infra2:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=13, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=30] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=13, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=30] Channel closed DEBUG infra2:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: Not reported Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 10Mb/s Duplex: Full Auto-negotiation: off Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:5 --> 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:6 --> 10.36.118.199:2:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f76864d0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5 --> 10.36.118.199:2:6 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6634 Rx 6634 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:6 --> 10.36.118.199:2:5 SIP-DIP 00:12:01:00:00:01-00:11:01:00:00:01 Tx 6634 Rx 6634 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_forced_speed_[10-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_forced_speed.py INFO asyncssh:logging.py:92 [conn=13, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=31] Channel closed DEBUG infra2:Logger.py:156 ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=13, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=32] Command: ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=13, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=32] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=13, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=33] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=13, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=34] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 17:34:40 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=13, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=35] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=13, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=36] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 17:34:40 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=13, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=37] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=13, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=38] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=13, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=38] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":70,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=13, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=13, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=39] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=13, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=13, chan=40] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=13, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=13, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=13, chan=40] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/L1/test_l1_forced_speed.py::test_l1_forced_speed_[10-half] | 244.07 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-748' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_forced_speed_[10-half]">Starting testcase:test_l1_forced_speed_[10-half] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_forced_speed.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=13, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=14] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=14] Local address: 172.17.0.3, port 57124 INFO asyncssh:logging.py:92 [conn=14] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=14] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=14] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=14, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 17:34:40 UTC 2023 INFO asyncssh:logging.py:92 [conn=14, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=14, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=14, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=2] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"b2:b2:ed:f9:e0:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"f6:33:41:29:6d:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=14, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=14, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=4] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=14, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=14, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=14, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=7] Received channel close DEBUG infra2:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=14, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=6] Channel closed INFO asyncssh:logging.py:92 [conn=14, chan=7] Channel closed INFO asyncssh:logging.py:92 [conn=14, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=8] Received channel close DEBUG infra2:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=14, chan=10] Requesting new SSH session DEBUG infra2:Logger.py:156 ethtool swp35 INFO asyncssh:logging.py:92 [conn=14, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=8] Channel closed INFO asyncssh:logging.py:92 [conn=14, chan=9] Command: ethtool swp33 DEBUG infra2:Logger.py:156 ethtool swp36 INFO asyncssh:logging.py:92 [conn=14, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=10] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=14, chan=11] Command: ethtool swp35 INFO asyncssh:logging.py:92 [conn=14, chan=12] Command: ethtool swp36 INFO asyncssh:logging.py:92 [conn=14, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=9] Channel closed INFO asyncssh:logging.py:92 [conn=14, chan=10] Channel closed INFO asyncssh:logging.py:92 [conn=14, chan=12] Channel closed INFO asyncssh:logging.py:92 [conn=14, chan=11] Channel closed DEBUG infra2:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 10Mb/s Duplex: Half Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes DEBUG infra2:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 10Mb/s Duplex: Half Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes DEBUG infra2:Logger.py:156 Settings for swp36: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes DEBUG infra2:Logger.py:156 Settings for swp35: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=14, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=14, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=14] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 17:34:51 UTC 2023 INFO asyncssh:logging.py:92 [conn=14, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=15] Channel closed DEBUG infra2:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=14, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=16] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=14, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=16] Channel closed DEBUG infra2:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 10Mb/s Duplex: Half Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=14, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=17] Channel closed DEBUG infra2:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=14, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=18] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=14, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=18] Channel closed DEBUG infra2:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 10Mb/s Duplex: Half Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=14, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=14, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=20] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=14, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=14, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=14, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=22] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=14, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=22] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=14, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=23] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=14, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=24] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=14, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=24] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=14, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=25] Channel closed DEBUG infra2:Logger.py:156 ethtool -s swp33 speed 10 autoneg off duplex half && ethtool -s swp34 speed 10 autoneg off duplex half INFO asyncssh:logging.py:92 [conn=14, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=26] Command: ethtool -s swp33 speed 10 autoneg off duplex half && ethtool -s swp34 speed 10 autoneg off duplex half INFO asyncssh:logging.py:92 [conn=14, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=26] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Change L1 port configuration (autoneg/speed/duplex) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 10 to 10 on tgen_port 10.36.118.199:2:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to False on tgen_port 10.36.118.199:2:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 10 to 10 on tgen_port 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to False on tgen_port 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'update_l1_config', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=14, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=27] Channel closed DEBUG infra2:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=14, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=28] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=14, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=28] Channel closed DEBUG infra2:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: Not reported Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 10Mb/s Duplex: Half Auto-negotiation: off Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=14, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=29] Channel closed DEBUG infra2:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=14, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=30] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=14, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=30] Channel closed DEBUG infra2:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: Not reported Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 10Mb/s Duplex: Half Auto-negotiation: off Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:5 --> 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f76bdb70>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5 --> 10.36.118.199:2:6 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 4707 Rx 4707 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:2:5 --> 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:6 --> 10.36.118.199:2:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f76bf640>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:6 --> 10.36.118.199:2:5 SIP-DIP 00:12:01:00:00:01-00:11:01:00:00:01 Tx 4681 Rx 4681 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:2:6 --> 10.36.118.199:2:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_forced_speed_[10-half] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_forced_speed.py INFO asyncssh:logging.py:92 [conn=14, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=31] Channel closed DEBUG infra2:Logger.py:156 ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=14, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=32] Command: ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=14, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=32] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=14, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=33] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=14, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=34] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 17:38:44 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=14, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=35] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=14, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=36] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 17:38:44 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=14, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=37] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=14, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=38] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=14, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=38] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":71,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=14, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=14, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=39] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=14, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=14, chan=40] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=14, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=14, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=14, chan=40] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/L1/test_l1_forced_speed.py::test_l1_forced_speed_[100-full] | 171.27 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-804' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_forced_speed_[100-full]">Starting testcase:test_l1_forced_speed_[100-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_forced_speed.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=14, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=15] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=15] Local address: 172.17.0.3, port 55010 INFO asyncssh:logging.py:92 [conn=15] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=15] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=15] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=15, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 17:38:44 UTC 2023 INFO asyncssh:logging.py:92 [conn=15, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=15, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=15, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=2] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"b2:b2:ed:f9:e0:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"f6:33:41:29:6d:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=15, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=15, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=4] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=15, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=15, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=15, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=7] Received channel close DEBUG infra2:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=15, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=6] Channel closed INFO asyncssh:logging.py:92 [conn=15, chan=7] Channel closed INFO asyncssh:logging.py:92 [conn=15, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=8] Received channel close DEBUG infra2:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=15, chan=10] Requesting new SSH session DEBUG infra2:Logger.py:156 ethtool swp35 INFO asyncssh:logging.py:92 [conn=15, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=8] Channel closed INFO asyncssh:logging.py:92 [conn=15, chan=9] Command: ethtool swp33 DEBUG infra2:Logger.py:156 ethtool swp36 INFO asyncssh:logging.py:92 [conn=15, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=10] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=15, chan=11] Command: ethtool swp35 INFO asyncssh:logging.py:92 [conn=15, chan=12] Command: ethtool swp36 INFO asyncssh:logging.py:92 [conn=15, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=9] Channel closed INFO asyncssh:logging.py:92 [conn=15, chan=11] Channel closed DEBUG infra2:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 10Mb/s Duplex: Half Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes DEBUG infra2:Logger.py:156 Settings for swp35: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=15, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=12] Channel closed INFO asyncssh:logging.py:92 [conn=15, chan=10] Channel closed DEBUG infra2:Logger.py:156 Settings for swp36: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes DEBUG infra2:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 10Mb/s Duplex: Half Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=15, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=15, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=14] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 17:38:55 UTC 2023 INFO asyncssh:logging.py:92 [conn=15, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=15] Channel closed DEBUG infra2:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=15, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=16] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=15, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=16] Channel closed DEBUG infra2:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 10Mb/s Duplex: Half Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=15, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=17] Channel closed DEBUG infra2:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=15, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=18] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=15, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=18] Channel closed DEBUG infra2:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 10Mb/s Duplex: Half Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=15, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=15, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=20] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=15, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=15, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=15, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=22] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=15, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=22] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=15, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=23] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=15, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=24] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=15, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=24] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=15, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=25] Channel closed DEBUG infra2:Logger.py:156 ethtool -s swp33 speed 100 autoneg off duplex full && ethtool -s swp34 speed 100 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=15, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=26] Command: ethtool -s swp33 speed 100 autoneg off duplex full && ethtool -s swp34 speed 100 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=15, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=26] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Change L1 port configuration (autoneg/speed/duplex) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 100 to 100 on tgen_port 10.36.118.199:2:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to False on tgen_port 10.36.118.199:2:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 100 to 100 on tgen_port 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to False on tgen_port 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'update_l1_config', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=15, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=27] Channel closed DEBUG infra2:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=15, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=28] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=15, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=28] Channel closed DEBUG infra2:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: Not reported Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 100Mb/s Duplex: Full Auto-negotiation: off Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=15, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=29] Channel closed DEBUG infra2:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=15, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=30] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=15, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=30] Channel closed DEBUG infra2:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: Not reported Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 100Mb/s Duplex: Full Auto-negotiation: off Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:5 --> 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:6 --> 10.36.118.199:2:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f76ef220>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5 --> 10.36.118.199:2:6 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 42230 Rx 42230 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:6 --> 10.36.118.199:2:5 SIP-DIP 00:12:01:00:00:01-00:11:01:00:00:01 Tx 42230 Rx 42230 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_forced_speed_[100-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_forced_speed.py INFO asyncssh:logging.py:92 [conn=15, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=31] Channel closed DEBUG infra2:Logger.py:156 ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=15, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=32] Command: ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=15, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=32] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=15, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=33] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=15, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=34] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 17:41:35 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=15, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=35] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=15, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=36] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 17:41:35 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=15, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=37] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=15, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=38] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=15, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=38] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":72,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=15, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=15, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=39] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=15, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=15, chan=40] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=15, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=15, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=15, chan=40] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/L1/test_l1_forced_speed.py::test_l1_forced_speed_[100-half] | 242.32 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-860' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_forced_speed_[100-half]">Starting testcase:test_l1_forced_speed_[100-half] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_forced_speed.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=15, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=16] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=16] Local address: 172.17.0.3, port 35634 INFO asyncssh:logging.py:92 [conn=16] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=16] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=16] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=16, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 17:41:36 UTC 2023 INFO asyncssh:logging.py:92 [conn=16, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=16, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=16, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=2] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"b2:b2:ed:f9:e0:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"f6:33:41:29:6d:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=16, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=16, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=4] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=16, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=16, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=16, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=6] Received channel close DEBUG infra2:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=16, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=6] Channel closed INFO asyncssh:logging.py:92 [conn=16, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=8] Received channel close DEBUG infra2:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=16, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=7] Channel closed INFO asyncssh:logging.py:92 [conn=16, chan=8] Channel closed INFO asyncssh:logging.py:92 [conn=16, chan=9] Command: ethtool swp33 DEBUG infra2:Logger.py:156 ethtool swp35 INFO asyncssh:logging.py:92 [conn=16, chan=11] Requesting new SSH session DEBUG infra2:Logger.py:156 ethtool swp36 INFO asyncssh:logging.py:92 [conn=16, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=10] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=16, chan=11] Command: ethtool swp35 INFO asyncssh:logging.py:92 [conn=16, chan=12] Command: ethtool swp36 INFO asyncssh:logging.py:92 [conn=16, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=9] Channel closed INFO asyncssh:logging.py:92 [conn=16, chan=10] Channel closed DEBUG infra2:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 100Mb/s Duplex: Half Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes DEBUG infra2:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 100Mb/s Duplex: Half Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=16, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=11] Channel closed INFO asyncssh:logging.py:92 [conn=16, chan=12] Channel closed DEBUG infra2:Logger.py:156 Settings for swp35: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes DEBUG infra2:Logger.py:156 Settings for swp36: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=16, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=16, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=14] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 17:41:46 UTC 2023 INFO asyncssh:logging.py:92 [conn=16, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=15] Channel closed DEBUG infra2:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=16, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=16] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=16, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=16] Channel closed DEBUG infra2:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 100Mb/s Duplex: Half Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=16, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=17] Channel closed DEBUG infra2:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=16, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=18] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=16, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=18] Channel closed DEBUG infra2:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 100Mb/s Duplex: Half Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=16, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=16, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=20] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=16, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=16, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=16, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=22] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=16, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=22] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=16, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=23] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=16, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=24] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=16, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=24] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=16, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=25] Channel closed DEBUG infra2:Logger.py:156 ethtool -s swp33 speed 100 autoneg off duplex half && ethtool -s swp34 speed 100 autoneg off duplex half INFO asyncssh:logging.py:92 [conn=16, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=26] Command: ethtool -s swp33 speed 100 autoneg off duplex half && ethtool -s swp34 speed 100 autoneg off duplex half INFO asyncssh:logging.py:92 [conn=16, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=26] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Change L1 port configuration (autoneg/speed/duplex) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 100 to 100 on tgen_port 10.36.118.199:2:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to False on tgen_port 10.36.118.199:2:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 100 to 100 on tgen_port 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to False on tgen_port 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'update_l1_config', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=16, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=27] Channel closed DEBUG infra2:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=16, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=28] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=16, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=28] Channel closed DEBUG infra2:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: Not reported Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 100Mb/s Duplex: Half Auto-negotiation: off Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=16, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=29] Channel closed DEBUG infra2:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=16, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=30] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=16, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=30] Channel closed DEBUG infra2:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: Not reported Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 100Mb/s Duplex: Half Auto-negotiation: off Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:5 --> 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f76bd2a0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5 --> 10.36.118.199:2:6 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 47417 Rx 47417 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:2:5 --> 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:6 --> 10.36.118.199:2:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f76bc820>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:6 --> 10.36.118.199:2:5 SIP-DIP 00:12:01:00:00:01-00:11:01:00:00:01 Tx 46446 Rx 46446 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:2:6 --> 10.36.118.199:2:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_forced_speed_[100-half] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_forced_speed.py INFO asyncssh:logging.py:92 [conn=16, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=31] Channel closed DEBUG infra2:Logger.py:156 ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=16, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=32] Command: ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=16, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=32] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=16, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=33] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=16, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=34] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 17:45:37 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=16, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=35] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=16, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=36] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 17:45:38 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=16, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=37] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=16, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=38] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=16, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=38] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":73,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=16, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=16, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=39] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=16, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=16, chan=40] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=16, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=16, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=16, chan=40] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/L1/test_l1_forced_speed.py::test_l1_forced_speed_[1000-full] | 174.49 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-916' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_forced_speed_[1000-full]">Starting testcase:test_l1_forced_speed_[1000-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_forced_speed.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=16, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=17] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=17] Local address: 172.17.0.3, port 59334 INFO asyncssh:logging.py:92 [conn=17] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=17] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=17] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=17, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 17:45:38 UTC 2023 INFO asyncssh:logging.py:92 [conn=17, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=17, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=17, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=2] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"b2:b2:ed:f9:e0:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"f6:33:41:29:6d:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=17, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=17, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=4] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=17, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=17, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=17, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=7] Received channel close DEBUG infra2:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=17, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=6] Channel closed INFO asyncssh:logging.py:92 [conn=17, chan=7] Channel closed INFO asyncssh:logging.py:92 [conn=17, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=8] Received channel close DEBUG infra2:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=17, chan=10] Requesting new SSH session DEBUG infra2:Logger.py:156 ethtool swp35 INFO asyncssh:logging.py:92 [conn=17, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=8] Channel closed INFO asyncssh:logging.py:92 [conn=17, chan=9] Command: ethtool swp33 DEBUG infra2:Logger.py:156 ethtool swp36 INFO asyncssh:logging.py:92 [conn=17, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=10] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=17, chan=11] Command: ethtool swp35 INFO asyncssh:logging.py:92 [conn=17, chan=12] Command: ethtool swp36 INFO asyncssh:logging.py:92 [conn=17, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=9] Channel closed INFO asyncssh:logging.py:92 [conn=17, chan=11] Channel closed INFO asyncssh:logging.py:92 [conn=17, chan=10] Channel closed DEBUG infra2:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 100Mb/s Duplex: Half Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes DEBUG infra2:Logger.py:156 Settings for swp35: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes DEBUG infra2:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 100Mb/s Duplex: Half Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=17, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=12] Channel closed DEBUG infra2:Logger.py:156 Settings for swp36: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=17, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=17, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=14] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 17:45:48 UTC 2023 INFO asyncssh:logging.py:92 [conn=17, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=15] Channel closed DEBUG infra2:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=17, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=16] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=17, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=16] Channel closed DEBUG infra2:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 100Mb/s Duplex: Half Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=17, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=17] Channel closed DEBUG infra2:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=17, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=18] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=17, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=18] Channel closed DEBUG infra2:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 100Mb/s Duplex: Half Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=17, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=17, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=20] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=17, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=17, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=17, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=22] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=17, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=22] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=17, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=23] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=17, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=24] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 INFO asyncssh:logging.py:92 [conn=17, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=24] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=17, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=25] Channel closed DEBUG infra2:Logger.py:156 ethtool -s swp33 speed 1000 autoneg off duplex full && ethtool -s swp34 speed 1000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=17, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=26] Command: ethtool -s swp33 speed 1000 autoneg off duplex full && ethtool -s swp34 speed 1000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=17, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=26] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Change L1 port configuration (autoneg/speed/duplex) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 1000 to 1000 on tgen_port 10.36.118.199:2:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to False on tgen_port 10.36.118.199:2:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 1000 to 1000 on tgen_port 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to False on tgen_port 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'update_l1_config', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=17, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=27] Channel closed DEBUG infra2:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=17, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=28] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=17, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=28] Channel closed DEBUG infra2:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: Not reported Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 1000Mb/s Duplex: Full Auto-negotiation: off Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=17, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=29] Channel closed DEBUG infra2:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=17, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=30] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=17, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=30] Channel closed DEBUG infra2:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: Not reported Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Speed: 1000Mb/s Duplex: Full Auto-negotiation: off Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:5 --> 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:6 --> 10.36.118.199:2:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f76ed690>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5 --> 10.36.118.199:2:6 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 434474 Rx 434474 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:6 --> 10.36.118.199:2:5 SIP-DIP 00:12:01:00:00:01-00:11:01:00:00:01 Tx 434474 Rx 434474 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_forced_speed_[1000-full] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_forced_speed.py INFO asyncssh:logging.py:92 [conn=17, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=31] Channel closed DEBUG infra2:Logger.py:156 ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=17, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=32] Command: ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=17, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=32] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=17, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=33] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=17, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=34] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 17:48:32 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=17, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=35] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=17, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=36] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 17:48:32 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=17, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=37] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=17, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=38] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=17, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=38] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":74,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=17, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=17, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=39] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=17, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=17, chan=40] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=17, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=17, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=17, chan=40] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/L1/test_l1_mixed_speed.py::test_l1_mixed_speed | 213.19 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-1010' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_mixed_speed">Starting testcase:test_l1_mixed_speed from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_mixed_speed.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=18, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=19] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=19] Local address: 172.17.0.3, port 52968 INFO asyncssh:logging.py:92 [conn=19] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=19] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=19] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=19, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 17:48:43 UTC 2023 INFO asyncssh:logging.py:92 [conn=19, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=19, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=19, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=2] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"b2:b2:ed:f9:e0:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"f6:33:41:29:6d:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=19, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=19, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=4] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=19, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=19, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=5] Channel closed INFO asyncssh:logging.py:92 [conn=19, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=7] Received channel close DEBUG infra2:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=19, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=6] Channel closed INFO asyncssh:logging.py:92 [conn=19, chan=7] Channel closed INFO asyncssh:logging.py:92 [conn=19, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=8] Received channel close DEBUG infra2:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=19, chan=10] Requesting new SSH session DEBUG infra2:Logger.py:156 ethtool swp35 INFO asyncssh:logging.py:92 [conn=19, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=8] Channel closed INFO asyncssh:logging.py:92 [conn=19, chan=9] Command: ethtool swp33 DEBUG infra2:Logger.py:156 ethtool swp36 INFO asyncssh:logging.py:92 [conn=19, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=10] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=19, chan=11] Command: ethtool swp35 INFO asyncssh:logging.py:92 [conn=19, chan=12] Command: ethtool swp36 INFO asyncssh:logging.py:92 [conn=19, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=10] Channel closed INFO asyncssh:logging.py:92 [conn=19, chan=9] Channel closed INFO asyncssh:logging.py:92 [conn=19, chan=11] Channel closed DEBUG infra2:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes DEBUG infra2:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes DEBUG infra2:Logger.py:156 Settings for swp35: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=19, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=12] Channel closed DEBUG infra2:Logger.py:156 Settings for swp36: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=19, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=19, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=14] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 17:48:54 UTC 2023 INFO asyncssh:logging.py:92 [conn=19, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=15] Channel closed DEBUG infra2:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=19, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=16] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=19, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=16] Channel closed DEBUG infra2:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=19, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=17] Channel closed DEBUG infra2:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=19, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=18] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=19, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=18] Channel closed DEBUG infra2:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=19, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=19] Channel closed DEBUG infra2:Logger.py:156 ethtool swp35 INFO asyncssh:logging.py:92 [conn=19, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=20] Command: ethtool swp35 INFO asyncssh:logging.py:92 [conn=19, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=20] Channel closed DEBUG infra2:Logger.py:156 Settings for swp35: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=19, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=21] Channel closed DEBUG infra2:Logger.py:156 ethtool swp36 INFO asyncssh:logging.py:92 [conn=19, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=22] Command: ethtool swp36 INFO asyncssh:logging.py:92 [conn=19, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=22] Channel closed DEBUG infra2:Logger.py:156 Settings for swp36: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=19, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=23] Channel closed DEBUG infra2:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=19, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=24] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=19, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=24] Channel closed DEBUG infra2:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=19, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=25] Channel closed DEBUG infra2:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=19, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=26] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=19, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=26] Channel closed DEBUG infra2:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=19, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=27] Channel closed DEBUG infra2:Logger.py:156 ethtool swp35 INFO asyncssh:logging.py:92 [conn=19, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=28] Command: ethtool swp35 INFO asyncssh:logging.py:92 [conn=19, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=28] Channel closed DEBUG infra2:Logger.py:156 Settings for swp35: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=19, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=29] Channel closed DEBUG infra2:Logger.py:156 ethtool swp36 INFO asyncssh:logging.py:92 [conn=19, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=30] Command: ethtool swp36 INFO asyncssh:logging.py:92 [conn=19, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=30] Channel closed DEBUG infra2:Logger.py:156 Settings for swp36: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=19, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=31] Channel closed DEBUG infra2:Logger.py:156 ethtool swp33 INFO asyncssh:logging.py:92 [conn=19, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=32] Command: ethtool swp33 INFO asyncssh:logging.py:92 [conn=19, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=32] Channel closed DEBUG infra2:Logger.py:156 Settings for swp33: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=19, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=33] Channel closed DEBUG infra2:Logger.py:156 ethtool swp34 INFO asyncssh:logging.py:92 [conn=19, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=34] Command: ethtool swp34 INFO asyncssh:logging.py:92 [conn=19, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=34] Channel closed DEBUG infra2:Logger.py:156 Settings for swp34: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=19, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=35] Channel closed DEBUG infra2:Logger.py:156 ethtool swp35 INFO asyncssh:logging.py:92 [conn=19, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=36] Command: ethtool swp35 INFO asyncssh:logging.py:92 [conn=19, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=36] Channel closed DEBUG infra2:Logger.py:156 Settings for swp35: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: on (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=19, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=37] Channel closed DEBUG infra2:Logger.py:156 ethtool swp36 INFO asyncssh:logging.py:92 [conn=19, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=38] Command: ethtool swp36 INFO asyncssh:logging.py:92 [conn=19, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=38] Channel closed DEBUG infra2:Logger.py:156 Settings for swp36: Supported ports: [ TP ] Supported link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Supported pause frame use: No Supports auto-negotiation: Yes Supported FEC modes: None Advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Advertised pause frame use: No Advertised auto-negotiation: Yes Advertised FEC modes: None Link partner advertised link modes: 10baseT/Half 10baseT/Full 100baseT/Half 100baseT/Full 1000baseT/Full Link partner advertised pause frame use: Symmetric Link partner advertised auto-negotiation: Yes Link partner advertised FEC modes: Not reported Speed: 1000Mb/s Duplex: Full Auto-negotiation: on Port: Twisted Pair PHYAD: 0 Transceiver: internal MDI-X: off (auto) Link detected: yes INFO asyncssh:logging.py:92 [conn=19, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=39] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=19, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=40] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=19, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=40] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=19, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=41] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=19, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=42] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=19, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=42] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=19, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=43] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=19, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=44] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=19, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=44] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=19, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=45] Channel closed DEBUG infra2:Logger.py:156 ethtool -s swp33 speed 1000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=19, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=46] Command: ethtool -s swp33 speed 1000 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=19, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=46] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=19, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=47] Channel closed DEBUG infra2:Logger.py:156 ethtool -s swp34 speed 100 autoneg on duplex half INFO asyncssh:logging.py:92 [conn=19, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=48] Command: ethtool -s swp34 speed 100 autoneg on duplex half INFO asyncssh:logging.py:92 [conn=19, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=48] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=19, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=49] Channel closed DEBUG infra2:Logger.py:156 ethtool -s swp35 speed 10 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=19, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=50] Command: ethtool -s swp35 speed 10 autoneg off duplex full INFO asyncssh:logging.py:92 [conn=19, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=50] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=19, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=51] Channel closed DEBUG infra2:Logger.py:156 ethtool -s swp36 autoneg off advertise 0x004 INFO asyncssh:logging.py:92 [conn=19, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=52] Command: ethtool -s swp36 autoneg off advertise 0x004 INFO asyncssh:logging.py:92 [conn=19, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=52] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Change L1 port configuration (autoneg/speed/duplex) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 1000 to None on tgen_port 10.36.118.199:2:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 10.36.118.199:2:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 100 to None on tgen_port 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 10 to None on tgen_port 10.36.118.199:2:7 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 10.36.118.199:2:7 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing speed from 1000 to None on tgen_port 10.36.118.199:2:8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing autoneg to True on tgen_port 10.36.118.199:2:8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'update_l1_config', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:5 --> ('10.36.118.199:2:6', '10.36.118.199:2:7', '10.36.118.199:2:8') INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f76ee8c0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5 --> ('10.36.118.199:2:6' '10.36.118.199:2:7' '10.36.118.199:2:8') SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 11607 Rx 11607 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI 10.36.118.199:2:5 --> ('10.36.118.199:2:6' '10.36.118.199:2:7' '10.36.118.199:2:8') SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 11606 Rx 11606 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI 10.36.118.199:2:5 --> ('10.36.118.199:2:6' '10.36.118.199:2:7' '10.36.118.199:2:8') SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 11606 Rx 11606 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_mixed_speed from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_mixed_speed.py INFO asyncssh:logging.py:92 [conn=19, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=53] Channel closed DEBUG infra2:Logger.py:156 ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=19, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=54] Command: ethtool -s swp33 autoneg on advertise 2F && ethtool -s swp34 autoneg on advertise 2F && ethtool -s swp35 autoneg on advertise 2F && ethtool -s swp36 autoneg on advertise 2F INFO asyncssh:logging.py:92 [conn=19, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=54] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=19, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=55] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=19, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=56] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=56] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 17:52:16 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=19, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=57] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=19, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=58] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=58] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 17:52:16 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=19, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=59] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=19, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=60] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=19, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=60] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":75,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=19, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=19, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=61] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=19, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=19, chan=62] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=19, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=19, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=19, chan=62] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/L1/test_l1_port_state.py::test_l1_port_state_status | 5.59 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_l1_port_state_status">Starting testcase:test_l1_port_state_status from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_port_state.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-1087' coro=<test_l1_port_state_status() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_port_state.py:92> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete It took 0:00:00.034511 to grep count of entities. It took 0:00:05.088446 to set entities to 'UP' state. -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=19, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=20] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=20] Local address: 172.17.0.3, port 47062 INFO asyncssh:logging.py:92 [conn=20] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=20] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=20] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=20, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=20, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=20, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=20, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=20, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 17:52:17 UTC 2023 INFO asyncssh:logging.py:92 [conn=20, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=20, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=20, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=20, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=20, chan=1] Channel closed DEBUG infra2:Logger.py:156 ifconfig -a INFO asyncssh:logging.py:92 [conn=20, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=20, chan=2] Command: ifconfig -a INFO asyncssh:logging.py:92 [conn=20, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=20, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=20, chan=2] Channel closed DEBUG infra2:Logger.py:156 bond0: flags=5122<BROADCAST,MASTER,MULTICAST> mtu 1500 ether b2:b2:ed:f9:e0:51 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 dummy0: flags=130<BROADCAST,NOARP> mtu 1500 ether f6:33:41:29:6d:87 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 lo: flags=73<UP,LOOPBACK,RUNNING> mtu 65536 inet 127.0.0.1 netmask 255.0.0.0 inet6 ::1 prefixlen 128 scopeid 0x10<host> loop txqueuelen 1000 (Local Loopback) RX packets 2946 bytes 147300 (143.8 KiB) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 2946 bytes 147300 (143.8 KiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 ma1: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500 inet 10.36.118.23 netmask 255.255.255.0 broadcast 10.36.118.255 inet6 fe80::1abe:92ff:fe13:6482 prefixlen 64 scopeid 0x20<link> ether 18:be:92:13:64:82 txqueuelen 2048 (Ethernet) RX packets 20699 bytes 1592780 (1.5 MiB) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 8169 bytes 981902 (958.8 KiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 sit0: flags=128<NOARP> mtu 1480 sit txqueuelen 1000 (IPv6-in-IPv4) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp1: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:85 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp2: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:86 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp3: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:87 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp4: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:88 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp5: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:89 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp6: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:8a txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp7: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:8b txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp8: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:8c txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp9: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:8d txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp10: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:8e txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp11: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:8f txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp12: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:90 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp13: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:91 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp14: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:92 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp15: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:93 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp16: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:94 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp17: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:95 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp18: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:96 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp19: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:97 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp20: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:98 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp21: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:99 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp22: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:9a txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp23: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:9b txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp24: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:9c txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp25: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:9d txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp26: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:9e txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp27: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:9f txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp28: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:a0 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp29: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:a1 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp30: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:a2 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp31: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:a3 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp32: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:a4 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp33: flags=4099<UP,BROADCAST,MULTICAST> mtu 1500 inet6 fe80::1abe:92ff:fe13:64a5 prefixlen 64 scopeid 0x20<link> ether 18:be:92:13:64:a5 txqueuelen 1000 (Ethernet) RX packets 1662994 bytes 851362880 (811.9 MiB) RX errors 0 dropped 0 overruns 0 frame 6609 TX packets 1588455 bytes 813019536 (775.3 MiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp34: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500 inet6 fe80::1abe:92ff:fe13:64a6 prefixlen 64 scopeid 0x20<link> ether 18:be:92:13:64:a6 txqueuelen 1000 (Ethernet) RX packets 1587966 bytes 812948992 (775.2 MiB) RX errors 0 dropped 0 overruns 0 frame 6611 TX packets 1640188 bytes 839539536 (800.6 MiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp35: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500 inet6 fe80::1abe:92ff:fe13:64a7 prefixlen 64 scopeid 0x20<link> ether 18:be:92:13:64:a7 txqueuelen 1000 (Ethernet) RX packets 8 bytes 512 (512.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 11815 bytes 5978922 (5.7 MiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp36: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500 inet6 fe80::1abe:92ff:fe13:64a8 prefixlen 64 scopeid 0x20<link> ether 18:be:92:13:64:a8 txqueuelen 1000 (Ethernet) RX packets 8 bytes 512 (512.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 11814 bytes 5978828 (5.7 MiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp37: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:a9 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp38: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:aa txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp39: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:ab txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp40: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:ac txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp41: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:ad txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp42: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:ae txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp43: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:af txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp44: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:b0 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp45: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:b1 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp46: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:b2 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp47: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:b3 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp48: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:b4 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp49: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:b5 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp50: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:b6 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp51: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:b7 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp52: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:b8 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 INFO asyncssh:logging.py:92 [conn=20, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=20, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=20, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=20, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=20, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=20, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=20, chan=4] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=20, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=20, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=20, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=20, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=20, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=20, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=20, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=20, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=20, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=20, chan=6] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=20, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=20, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=20, chan=6] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"b2:b2:ed:f9:e0:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"f6:33:41:29:6d:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=20, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=20, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=20, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=20, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=20, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=20, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=20, chan=8] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=20, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=20, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=20, chan=8] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"b2:b2:ed:f9:e0:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"f6:33:41:29:6d:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_l1_port_state_status from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/L1/test_l1_port_state.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=20, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=20, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=20, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=20, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=20, chan=9] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=20, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=20, chan=10] Command: date INFO asyncssh:logging.py:92 [conn=20, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=20, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=20, chan=10] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 17:52:22 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] | |||
| Passed | functional/acl/test_acl.py::test_acl_skip_sw_hw_selector[pass] | 167.45 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_skip_sw_hw_selector[pass]">Starting testcase:test_acl_skip_sw_hw_selector[pass] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-1106' coro=<test_acl_skip_sw_hw_selector() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl.py:59> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=20, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=21] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=21] Local address: 172.17.0.3, port 58274 INFO asyncssh:logging.py:92 [conn=21] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=21] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=21] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=21, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 17:52:22 UTC 2023 INFO asyncssh:logging.py:92 [conn=21, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=21, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=2] Command: ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=21, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=21, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=21, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=4] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=21, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=21, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=5] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=21, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=6] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=21, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=21, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=7] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress pref 49000 flower skip_sw action pass INFO asyncssh:logging.py:92 [conn=21, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=8] Command: tc filter add dev swp33 ingress pref 49000 flower skip_sw action pass INFO asyncssh:logging.py:92 [conn=21, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f7685630>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI stream SIP-DIP N/A Tx 618 Rx 618 Loss 0.000 INFO asyncssh:logging.py:92 [conn=21, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=9] Channel closed DEBUG infra2:Logger.py:156 tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=21, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=10] Command: tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=21, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=10] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"all","pref":49000,"kind":"flower","chain":0},{"protocol":"all","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"pass"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":16,"stats":{"bytes":316416,"packets":618,"drops":0,"overlimits":0,"requeues":0,"sw_bytes":0,"sw_packets":0,"hw_bytes":316416,"hw_packets":618,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: stream Tx Frames: 618, Rx Frames: 618, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [DENT infrastructure 2] Rule action = 'pass', Tx Frames = 618, drops = 0, expected = 0, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 2] Rule action = 'pass', Tx Frames = 618, packets = 618, expected = 618, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 2] Rule action = 'pass', Tx Frames = 618, hw_packets = 618, expected = 618, max tolerance = 0.05 INFO asyncssh:logging.py:92 [conn=21, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=11] Channel closed DEBUG infra2:Logger.py:156 tc filter delete dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=21, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=12] Command: tc filter delete dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=21, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=21, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=13] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress pref 49000 flower skip_hw action pass INFO asyncssh:logging.py:92 [conn=21, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=14] Command: tc filter add dev swp33 ingress pref 49000 flower skip_hw action pass INFO asyncssh:logging.py:92 [conn=21, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f76ed6f0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI stream SIP-DIP N/A Tx 964 Rx 964 Loss 0.000 INFO asyncssh:logging.py:92 [conn=21, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=15] Channel closed DEBUG infra2:Logger.py:156 tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=21, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=16] Command: tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=21, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"all","pref":49000,"kind":"flower","chain":0},{"protocol":"all","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{},"skip_hw":true,"not_in_hw":true,"actions":[{"order":1,"kind":"gact","control_action":{"type":"pass"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":16,"last_used":6,"first_used":15,"stats":{"bytes":478080,"packets":960,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: stream Tx Frames: 964, Rx Frames: 964, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [DENT infrastructure 2] Rule action = 'pass', Tx Frames = 964, drops = 0, expected = 0, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 2] Rule action = 'pass', Tx Frames = 964, packets = 960, expected = 964, max tolerance = 0.05 INFO asyncssh:logging.py:92 [conn=21, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=17] Channel closed DEBUG infra2:Logger.py:156 tc filter delete dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=21, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=18] Command: tc filter delete dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=21, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=21, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=19] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress pref 49000 flower action pass INFO asyncssh:logging.py:92 [conn=21, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=20] Command: tc filter add dev swp33 ingress pref 49000 flower action pass INFO asyncssh:logging.py:92 [conn=21, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f76bf820>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI stream SIP-DIP N/A Tx 970 Rx 970 Loss 0.000 INFO asyncssh:logging.py:92 [conn=21, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=21] Channel closed DEBUG infra2:Logger.py:156 tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=21, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=22] Command: tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=21, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=22] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"all","pref":49000,"kind":"flower","chain":0},{"protocol":"all","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{},"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"pass"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":16,"first_used":15,"stats":{"bytes":978206,"packets":1937,"drops":0,"overlimits":0,"requeues":0,"sw_bytes":481566,"sw_packets":967,"hw_bytes":496640,"hw_packets":970,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: stream Tx Frames: 970, Rx Frames: 970, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [DENT infrastructure 2] Rule action = 'pass', Tx Frames = 970, drops = 0, expected = 0, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 2] Rule action = 'pass', Tx Frames = 970, packets = 1937, expected = 1940, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 2] Rule action = 'pass', Tx Frames = 970, hw_packets = 970, expected = 970, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 2] Rule action = 'pass', Tx Frames = 970, sw_packets = 967, expected = 970, max tolerance = 0.05 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_skip_sw_hw_selector[pass] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl.py INFO asyncssh:logging.py:92 [conn=21, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=23] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=21, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=24] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 17:55:08 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=21, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=25] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=21, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=26] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=21, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=26] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":76,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=21, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=27] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=21, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=28] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=21, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=28] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=21, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=29] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=21, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=30] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 17:55:09 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=21, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=31] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=21, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=32] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 17:55:09 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=21, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=33] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=21, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=34] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=21, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=34] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=21, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=35] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=21, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=36] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=21, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=21, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=36] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=21, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=37] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=21, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=38] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=21, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=21, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=38] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=21, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=21, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=21, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=21, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=40] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=21, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=21, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=21, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=21, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=42] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=21, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=21, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=21, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=21, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=21, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=21, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=21, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=21, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=46] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=21, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=21, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=21, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=21, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=48] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=21, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=21, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=21, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=21, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=50] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=21, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=21, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=52] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=21, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=21, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=52] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=21, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=21, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=54] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=21, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=21, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=54] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=21, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=55] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=21, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=56] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=21, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=21, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=56] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=21, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=57] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=21, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=58] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=21, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=58] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=21, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=59] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=21, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=60] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=21, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=21, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=60] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=21, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=61] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=21, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=62] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=21, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=21, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=62] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=21, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=21, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=21, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=63] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=21, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=21, chan=64] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=21, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=21, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=21, chan=64] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/acl/test_acl.py::test_acl_skip_sw_hw_selector[drop] | 173.15 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_skip_sw_hw_selector[drop]">Starting testcase:test_acl_skip_sw_hw_selector[drop] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-1183' coro=<test_acl_skip_sw_hw_selector() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl.py:59> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=21, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=22] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=22] Local address: 172.17.0.3, port 54744 INFO asyncssh:logging.py:92 [conn=22] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=22] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=22] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=22, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 17:55:10 UTC 2023 INFO asyncssh:logging.py:92 [conn=22, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=22, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=2] Command: ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=22, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=22, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=22, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=4] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=22, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=22, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=5] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=22, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=6] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=22, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=22, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=7] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress pref 49000 flower skip_sw action drop INFO asyncssh:logging.py:92 [conn=22, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=8] Command: tc filter add dev swp33 ingress pref 49000 flower skip_sw action drop INFO asyncssh:logging.py:92 [conn=22, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f757a0b0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI stream SIP-DIP N/A Tx 609 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=22, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=9] Channel closed DEBUG infra2:Logger.py:156 tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=22, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=10] Command: tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=22, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=10] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"all","pref":49000,"kind":"flower","chain":0},{"protocol":"all","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"drop"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":16,"stats":{"bytes":311808,"packets":609,"drops":609,"overlimits":0,"requeues":0,"sw_bytes":0,"sw_packets":0,"hw_bytes":311808,"hw_packets":609,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: stream Tx Frames: 609, Rx Frames: 0, loss = 100.0, expected_loss = 100.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [DENT infrastructure 2] Rule action = 'drop', Tx Frames = 609, drops = 609, expected = 609, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 2] Rule action = 'drop', Tx Frames = 609, packets = 609, expected = 609, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 2] Rule action = 'drop', Tx Frames = 609, hw_packets = 609, expected = 609, max tolerance = 0.05 INFO asyncssh:logging.py:92 [conn=22, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=11] Channel closed DEBUG infra2:Logger.py:156 tc filter delete dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=22, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=12] Command: tc filter delete dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=22, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=22, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=13] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress pref 49000 flower skip_hw action drop INFO asyncssh:logging.py:92 [conn=22, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=14] Command: tc filter add dev swp33 ingress pref 49000 flower skip_hw action drop INFO asyncssh:logging.py:92 [conn=22, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f76ec9a0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI stream SIP-DIP N/A Tx 966 Rx 966 Loss 0.000 INFO asyncssh:logging.py:92 [conn=22, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=15] Channel closed DEBUG infra2:Logger.py:156 tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=22, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=16] Command: tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=22, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"all","pref":49000,"kind":"flower","chain":0},{"protocol":"all","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{},"skip_hw":true,"not_in_hw":true,"actions":[{"order":1,"kind":"gact","control_action":{"type":"drop"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":16,"last_used":6,"first_used":15,"stats":{"bytes":478578,"packets":961,"drops":961,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: stream Tx Frames: 966, Rx Frames: 966, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [DENT infrastructure 2] Rule action = 'drop', Tx Frames = 966, drops = 961, expected = 966, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 2] Rule action = 'drop', Tx Frames = 966, packets = 961, expected = 966, max tolerance = 0.05 INFO asyncssh:logging.py:92 [conn=22, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=17] Channel closed DEBUG infra2:Logger.py:156 tc filter delete dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=22, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=18] Command: tc filter delete dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=22, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=22, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=19] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress pref 49000 flower action drop INFO asyncssh:logging.py:92 [conn=22, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=20] Command: tc filter add dev swp33 ingress pref 49000 flower action drop INFO asyncssh:logging.py:92 [conn=22, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f76ec670>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI stream SIP-DIP N/A Tx 962 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=22, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=21] Channel closed DEBUG infra2:Logger.py:156 tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=22, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=22] Command: tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=22, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=22] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"all","pref":49000,"kind":"flower","chain":0},{"protocol":"all","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{},"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"drop"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":16,"stats":{"bytes":492544,"packets":962,"drops":962,"overlimits":0,"requeues":0,"sw_bytes":0,"sw_packets":0,"hw_bytes":492544,"hw_packets":962,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: stream Tx Frames: 962, Rx Frames: 0, loss = 100.0, expected_loss = 100.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [DENT infrastructure 2] Rule action = 'drop', Tx Frames = 962, drops = 962, expected = 962, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 2] Rule action = 'drop', Tx Frames = 962, packets = 962, expected = 962, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 2] Rule action = 'drop', Tx Frames = 962, hw_packets = 962, expected = 962, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 2] Rule action = 'drop', Tx Frames = 962, sw_packets = 0, expected = 0, max tolerance = 0.05 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_skip_sw_hw_selector[drop] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl.py INFO asyncssh:logging.py:92 [conn=22, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=23] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=22, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=24] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 17:58:02 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=22, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=25] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=22, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=26] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=22, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=26] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":77,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=22, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=27] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=22, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=28] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=22, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=28] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=22, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=29] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=22, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=30] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 17:58:02 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=22, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=31] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=22, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=32] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 17:58:02 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=22, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=33] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=22, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=34] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=22, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=34] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=22, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=35] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=22, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=36] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=22, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=22, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=36] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=22, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=37] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=22, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=38] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=22, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=22, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=38] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=22, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=22, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=22, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=22, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=40] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=22, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=22, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=22, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=22, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=42] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=22, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=22, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=22, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=22, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=22, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=22, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=22, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=22, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=46] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=22, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=22, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=22, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=22, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=48] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=22, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=22, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=22, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=22, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=50] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=22, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=22, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=52] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=22, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=22, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=52] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=22, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=22, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=54] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=22, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=22, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=54] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=22, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=55] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=22, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=56] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=22, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=22, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=56] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=22, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=57] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=22, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=58] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=22, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=58] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=22, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=59] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=22, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=60] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=22, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=22, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=60] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=22, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=61] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=22, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=62] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=22, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=22, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=62] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=22, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=22, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=22, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=63] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=22, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=22, chan=64] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=22, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=22, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=22, chan=64] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/acl/test_acl.py::test_acl_skip_sw_hw_selector[trap] | 173.35 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_skip_sw_hw_selector[trap]">Starting testcase:test_acl_skip_sw_hw_selector[trap] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-1260' coro=<test_acl_skip_sw_hw_selector() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl.py:59> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=22, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=23] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=23] Local address: 172.17.0.3, port 45016 INFO asyncssh:logging.py:92 [conn=23] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=23] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=23] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=23, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 17:58:03 UTC 2023 INFO asyncssh:logging.py:92 [conn=23, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=23, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=2] Command: ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=23, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=23, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=23, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=4] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=23, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=23, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=5] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=23, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=6] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=23, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=23, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=7] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress pref 49000 flower skip_sw action trap INFO asyncssh:logging.py:92 [conn=23, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=8] Command: tc filter add dev swp33 ingress pref 49000 flower skip_sw action trap INFO asyncssh:logging.py:92 [conn=23, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f7512e60>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI stream SIP-DIP N/A Tx 609 Rx 609 Loss 0.000 INFO asyncssh:logging.py:92 [conn=23, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=9] Channel closed DEBUG infra2:Logger.py:156 tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=23, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=10] Command: tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=23, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=10] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"all","pref":49000,"kind":"flower","chain":0},{"protocol":"all","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":16,"stats":{"bytes":311808,"packets":609,"drops":0,"overlimits":0,"requeues":0,"sw_bytes":0,"sw_packets":0,"hw_bytes":311808,"hw_packets":609,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: stream Tx Frames: 609, Rx Frames: 609, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [DENT infrastructure 2] Rule action = 'trap', Tx Frames = 609, drops = 0, expected = 0, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 2] Rule action = 'trap', Tx Frames = 609, packets = 609, expected = 609, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 2] Rule action = 'trap', Tx Frames = 609, hw_packets = 609, expected = 609, max tolerance = 0.05 INFO asyncssh:logging.py:92 [conn=23, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=11] Channel closed DEBUG infra2:Logger.py:156 tc filter delete dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=23, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=12] Command: tc filter delete dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=23, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=23, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=13] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress pref 49000 flower skip_hw action trap INFO asyncssh:logging.py:92 [conn=23, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=14] Command: tc filter add dev swp33 ingress pref 49000 flower skip_hw action trap INFO asyncssh:logging.py:92 [conn=23, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f75783a0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI stream SIP-DIP N/A Tx 967 Rx 967 Loss 0.000 INFO asyncssh:logging.py:92 [conn=23, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=15] Channel closed DEBUG infra2:Logger.py:156 tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=23, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=16] Command: tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=23, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"all","pref":49000,"kind":"flower","chain":0},{"protocol":"all","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{},"skip_hw":true,"not_in_hw":true,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":16,"last_used":6,"first_used":15,"stats":{"bytes":479574,"packets":963,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: stream Tx Frames: 967, Rx Frames: 967, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [DENT infrastructure 2] Rule action = 'trap', Tx Frames = 967, drops = 0, expected = 0, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 2] Rule action = 'trap', Tx Frames = 967, packets = 963, expected = 967, max tolerance = 0.05 INFO asyncssh:logging.py:92 [conn=23, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=17] Channel closed DEBUG infra2:Logger.py:156 tc filter delete dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=23, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=18] Command: tc filter delete dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=23, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=23, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=19] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress pref 49000 flower action trap INFO asyncssh:logging.py:92 [conn=23, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=20] Command: tc filter add dev swp33 ingress pref 49000 flower action trap INFO asyncssh:logging.py:92 [conn=23, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f757ae00>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI stream SIP-DIP N/A Tx 964 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=23, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=21] Channel closed DEBUG infra2:Logger.py:156 tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=23, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=22] Command: tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=23, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=22] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"all","pref":49000,"kind":"flower","chain":0},{"protocol":"all","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{},"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":16,"first_used":15,"stats":{"bytes":973640,"packets":1928,"drops":0,"overlimits":0,"requeues":0,"sw_bytes":480072,"sw_packets":964,"hw_bytes":493568,"hw_packets":964,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: stream Tx Frames: 964, Rx Frames: 0, loss = 100.0, expected_loss = 100.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [DENT infrastructure 2] Rule action = 'trap', Tx Frames = 964, drops = 0, expected = 0, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 2] Rule action = 'trap', Tx Frames = 964, packets = 1928, expected = 1928, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 2] Rule action = 'trap', Tx Frames = 964, hw_packets = 964, expected = 964, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 2] Rule action = 'trap', Tx Frames = 964, sw_packets = 964, expected = 964, max tolerance = 0.05 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_skip_sw_hw_selector[trap] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl.py INFO asyncssh:logging.py:92 [conn=23, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=23] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=23, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=24] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 18:00:55 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=23, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=25] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=23, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=26] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=23, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=26] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":78,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=23, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=27] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=23, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=28] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=23, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=28] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=23, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=29] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=23, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=30] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 18:00:55 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=23, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=31] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=23, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=32] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 18:00:55 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=23, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=33] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=23, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=34] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=23, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=34] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=23, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=35] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=23, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=36] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=23, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=23, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=36] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=23, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=37] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=23, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=38] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=23, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=23, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=38] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=23, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=23, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=23, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=23, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=40] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=23, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=23, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=23, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=23, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=42] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=23, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=23, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=23, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=23, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=23, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=23, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=23, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=23, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=46] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=23, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=23, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=23, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=23, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=48] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=23, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=23, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=23, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=23, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=50] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=23, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=23, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=52] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=23, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=23, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=52] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=23, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=23, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=54] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=23, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=23, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=54] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=23, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=55] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=23, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=56] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=23, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=23, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=56] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=23, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=57] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=23, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=58] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=23, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=58] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=23, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=59] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=23, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=60] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=23, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=23, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=60] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=23, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=61] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=23, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=62] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=23, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=23, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=62] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=23, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=23, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=23, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=63] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=23, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=23, chan=64] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=23, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=23, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=23, chan=64] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/acl/test_acl.py::test_acl_rule_deletion | 17.92 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_rule_deletion">Starting testcase:test_acl_rule_deletion from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-1337' coro=<test_acl_rule_deletion() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl.py:198> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=23, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=24] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=24] Local address: 172.17.0.3, port 57346 INFO asyncssh:logging.py:92 [conn=24] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=24] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=24] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=24, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 18:00:56 UTC 2023 INFO asyncssh:logging.py:92 [conn=24, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=1] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=24, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=2] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=24, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=24, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=3] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol 0x9200 pref 10000 flower src_mac 02:08:6c:58:0e:c4 dst_mac 02:df:41:e0:42:3e action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10001 flower src_mac 02:c7:5e:81:6a:0e dst_mac 02:59:0d:cd:1f:f7 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10002 flower src_mac 02:67:94:98:6d:47 dst_mac 02:1e:3d:e6:0e:55 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10003 flower src_mac 02:12:0c:9a:60:94 dst_mac 02:2e:4a:df:18:8a action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10004 flower src_mac 02:81:a5:48:b1:40 dst_mac 02:83:d8:4b:c6:53 vlan_id 2138 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10005 flower src_mac 02:fb:b0:d8:c8:8c dst_mac 02:5f:2e:b2:f1:ff vlan_id 1788 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10006 flower src_mac 02:53:e3:61:5b:a3 dst_mac 02:c6:7c:74:6d:37 src_ip 56.128.43.50 dst_ip 33.209.94.51 ip_proto icmp code 52 type 18 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10007 flower src_mac 02:45:44:38:1a:45 dst_mac 02:29:75:57:67:5f vlan_id 1017 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10008 flower src_mac 02:22:c3:a4:94:c1 dst_mac 02:9d:a2:c5:a9:f1 vlan_id 3433 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol ip pref 10009 flower src_mac 02:fa:2b:c7:8e:92 dst_mac 02:7e:81:ba:10:5b src_ip 101.43.241.143 dst_ip 61.115.184.190 ip_proto tcp src_port 34704 dst_port 5163 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10010 flower src_mac 02:34:47:21:2b:cf dst_mac 02:f7:a3:63:7c:61 vlan_id 3599 vlan_ethtype ipv4 src_ip 43.255.201.177 dst_ip 73.59.13.105 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10011 flower src_mac 02:14:f1:d7:6f:6d dst_mac 02:47:b0:73:53:23 vlan_id 3934 vlan_ethtype ip src_ip 46.117.185.184 dst_ip 39.178.47.96 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10012 flower src_mac 02:d9:91:bb:0f:7f dst_mac 02:c9:20:94:96:a4 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10013 flower src_mac 02:d2:ea:cf:d2:38 dst_mac 02:51:49:71:08:37 vlan_id 3206 vlan_ethtype ip src_ip 103.39.124.235 dst_ip 87.128.165.32 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10014 flower src_mac 02:3f:21:7b:e6:d5 dst_mac 02:6d:d7:6f:49:8d vlan_id 1814 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10015 flower src_mac 02:63:84:67:17:06 dst_mac 02:88:54:b0:92:01 vlan_id 1878 vlan_ethtype ipv4 src_ip 104.233.110.180 dst_ip 64.67.140.52 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10016 flower src_mac 02:e8:9c:30:88:3c dst_mac 02:ce:18:c3:72:0e vlan_id 3230 vlan_ethtype 0x0800 src_ip 59.89.114.105 dst_ip 26.138.232.116 ip_proto tcp src_port 60864 dst_port 34713 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10017 flower src_mac 02:5d:46:24:92:9a dst_mac 02:97:1c:db:c2:6a src_ip 68.24.60.234 dst_ip 11.91.154.159 ip_proto icmp code 191 type 0 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10018 flower src_mac 02:64:3e:31:e4:64 dst_mac 02:4e:a7:a6:7c:be action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10019 flower src_mac 02:c3:bb:f8:8b:18 dst_mac 02:31:c1:fe:1b:eb action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10020 flower src_mac 02:2a:88:d3:de:58 dst_mac 02:4b:d5:0b:88:30 vlan_id 3416 vlan_ethtype 0x0800 src_ip 11.149.53.24 dst_ip 93.175.184.216 ip_proto udp src_port 9544 dst_port 14557 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10021 flower src_mac 02:0d:e9:cd:23:40 dst_mac 02:5c:1d:1d:7a:33 src_ip 23.167.16.140 dst_ip 95.94.157.18 ip_proto udp src_port 9663 dst_port 20891 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10022 flower src_mac 02:34:c3:65:20:16 dst_mac 02:23:e4:f5:36:2f vlan_id 1984 vlan_ethtype ipv4 src_ip 39.17.113.9 dst_ip 17.56.202.204 ip_proto udp src_port 25327 dst_port 64678 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10023 flower src_mac 02:e7:75:34:54:3e dst_mac 02:3c:51:ac:fc:3b src_ip 63.227.56.146 dst_ip 32.248.232.206 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10024 flower src_mac 02:eb:d6:d7:03:10 dst_mac 02:c9:d3:93:0e:2b vlan_id 2421 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10025 flower src_mac 02:8e:a1:a6:4f:58 dst_mac 02:a6:6a:b5:8d:fa action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10026 flower src_mac 02:5f:ee:4f:88:5c dst_mac 02:32:f4:65:a7:1e src_ip 82.184.162.104 dst_ip 62.107.41.94 ip_proto udp src_port 41517 dst_port 18829 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10027 flower src_mac 02:a8:90:ec:ed:0a dst_mac 02:93:4b:a2:c1:c5 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10028 flower src_mac 02:ca:d2:e3:7a:fd dst_mac 02:67:dc:d4:27:cb vlan_id 611 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10029 flower src_mac 02:34:a4:23:0d:08 dst_mac 02:08:0e:be:d8:ea vlan_id 2641 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10030 flower src_mac 02:66:45:76:13:e8 dst_mac 02:66:bd:55:eb:24 vlan_id 4023 vlan_ethtype ip src_ip 26.175.34.57 dst_ip 84.47.89.73 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10031 flower src_mac 02:5b:dc:d2:fd:dc dst_mac 02:b4:29:5b:fa:5d vlan_id 392 vlan_ethtype 0x0800 src_ip 12.130.199.217 dst_ip 23.220.251.50 ip_proto udp src_port 8718 dst_port 10101 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10032 flower src_mac 02:18:36:6d:98:fe dst_mac 02:a1:91:b7:74:ff src_ip 35.237.78.148 dst_ip 85.59.123.232 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10033 flower src_mac 02:54:0a:0a:dd:d5 dst_mac 02:3d:98:e4:91:b6 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10034 flower src_mac 02:4e:05:74:06:2b dst_mac 02:c5:73:cf:e5:0a src_ip 63.244.185.225 dst_ip 64.143.71.86 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10035 flower src_mac 02:ec:19:4f:22:2b dst_mac 02:06:7e:bb:8b:6a action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10036 flower src_mac 02:44:f3:3d:78:6f dst_mac 02:14:0c:d9:1d:d6 src_ip 27.53.73.228 dst_ip 48.175.118.49 ip_proto tcp src_port 48356 dst_port 18041 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10037 flower src_mac 02:e4:63:18:c8:02 dst_mac 02:8d:67:4f:0b:da src_ip 77.16.138.102 dst_ip 77.120.67.128 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10038 flower src_mac 02:22:a4:c4:c0:3f dst_mac 02:d0:76:cc:8d:af vlan_id 1783 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10039 flower src_mac 02:df:0b:76:bb:6e dst_mac 02:f0:ff:4c:38:ea action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10040 flower src_mac 02:f3:01:74:61:86 dst_mac 02:f1:4e:15:aa:8b action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10041 flower src_mac 02:76:b7:fb:22:8f dst_mac 02:88:e6:53:09:85 vlan_id 3049 vlan_ethtype ipv4 src_ip 105.229.68.178 dst_ip 25.48.162.237 ip_proto udp src_port 10542 dst_port 35103 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10042 flower src_mac 02:2e:e7:97:bb:42 dst_mac 02:d8:64:d0:1f:f2 vlan_id 189 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol ip pref 10043 flower src_mac 02:14:25:91:7a:99 dst_mac 02:ba:f1:6b:6b:a2 src_ip 89.92.39.216 dst_ip 74.154.246.194 ip_proto icmp code 211 type 3 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10044 flower src_mac 02:5f:ff:0f:d8:51 dst_mac 02:b4:10:e4:e9:42 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10045 flower src_mac 02:ad:e2:a7:62:f3 dst_mac 02:d4:40:0c:20:17 vlan_id 3742 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10046 flower src_mac 02:12:3c:ce:4b:bf dst_mac 02:a1:91:40:e5:e9 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10047 flower src_mac 02:e1:fa:42:1c:6e dst_mac 02:d8:fd:7f:31:5d src_ip 39.117.186.132 dst_ip 75.170.72.221 ip_proto tcp src_port 1995 dst_port 63636 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10048 flower src_mac 02:ea:09:36:08:a8 dst_mac 02:84:fb:d9:bc:9a vlan_id 2696 vlan_ethtype ipv4 src_ip 106.214.130.205 dst_ip 120.87.189.197 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10049 flower src_mac 02:99:55:21:eb:ef dst_mac 02:3c:ba:43:fd:4e vlan_id 904 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10050 flower src_mac 02:4f:2d:77:b3:b4 dst_mac 02:90:db:02:7f:e1 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10051 flower src_mac 02:7d:4c:c7:38:57 dst_mac 02:86:ad:0d:df:b8 vlan_id 369 vlan_ethtype 0x0800 src_ip 78.105.242.216 dst_ip 89.26.76.31 ip_proto tcp src_port 6226 dst_port 8781 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10052 flower src_mac 02:41:e9:bf:38:40 dst_mac 02:6f:79:bd:ed:15 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10053 flower src_mac 02:42:36:36:45:57 dst_mac 02:48:d1:e3:70:41 action trap && tc filter add dev swp33 ingress protocol ip pref 10054 flower src_mac 02:62:b4:0d:9d:41 dst_mac 02:c5:fb:93:28:85 src_ip 116.10.12.207 dst_ip 84.133.35.20 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10055 flower src_mac 02:7a:91:25:80:2b dst_mac 02:50:a5:9f:8e:54 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10056 flower src_mac 02:be:20:8d:26:11 dst_mac 02:b4:5f:78:fe:75 vlan_id 2344 vlan_ethtype ip src_ip 59.64.91.57 dst_ip 121.104.52.54 action trap && tc filter add dev swp33 ingress protocol ip pref 10057 flower src_mac 02:8d:a5:b4:8e:c0 dst_mac 02:a9:12:24:ea:41 src_ip 107.249.219.230 dst_ip 81.92.205.40 ip_proto tcp src_port 20524 dst_port 48934 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10058 flower src_mac 02:6b:40:04:35:9c dst_mac 02:e5:e3:4a:f0:68 src_ip 14.41.224.145 dst_ip 86.204.4.23 ip_proto udp src_port 57345 dst_port 56566 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10059 flower src_mac 02:00:f2:56:c5:3d dst_mac 02:2f:d4:ee:6a:9a vlan_id 2683 vlan_ethtype ipv4 src_ip 80.216.120.125 dst_ip 28.144.180.226 ip_proto udp src_port 21256 dst_port 44470 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10060 flower src_mac 02:59:b5:c7:fc:f6 dst_mac 02:bf:dd:de:5b:cf vlan_id 1190 vlan_ethtype ipv4 src_ip 121.148.200.176 dst_ip 106.218.177.146 ip_proto tcp src_port 45834 dst_port 15904 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10061 flower src_mac 02:88:61:38:51:37 dst_mac 02:ec:64:44:66:03 vlan_id 117 vlan_ethtype ipv4 src_ip 85.199.145.35 dst_ip 101.53.201.201 ip_proto tcp src_port 55903 dst_port 36158 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10062 flower src_mac 02:79:bc:13:56:48 dst_mac 02:80:c7:76:82:34 vlan_id 1019 vlan_ethtype ip src_ip 111.167.203.215 dst_ip 112.184.5.215 ip_proto tcp src_port 2154 dst_port 48735 action drop && tc filter add dev swp33 ingress protocol ip pref 10063 flower src_mac 02:d1:fb:7d:65:a3 dst_mac 02:51:56:9b:16:b7 src_ip 93.250.27.162 dst_ip 59.36.233.183 ip_proto udp src_port 13227 dst_port 64546 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10064 flower src_mac 02:a4:b7:b3:cd:ec dst_mac 02:93:90:81:07:40 vlan_id 3865 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10065 flower src_mac 02:d4:e1:d5:8b:79 dst_mac 02:d4:cb:e2:0f:1a src_ip 57.113.61.80 dst_ip 16.242.174.165 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10066 flower src_mac 02:16:8f:03:fe:ce dst_mac 02:92:e4:2c:f2:41 vlan_id 2438 vlan_ethtype 0x0800 src_ip 125.47.116.195 dst_ip 48.202.142.13 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10067 flower src_mac 02:67:51:e8:4d:8d dst_mac 02:aa:d7:87:72:2b vlan_id 502 vlan_ethtype ip src_ip 29.17.211.165 dst_ip 126.205.165.191 ip_proto tcp src_port 35989 dst_port 45928 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10068 flower src_mac 02:0f:79:11:6b:a0 dst_mac 02:ff:04:75:d0:b0 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10069 flower src_mac 02:29:9b:ae:8d:ab dst_mac 02:2e:57:a9:c8:5f src_ip 53.128.98.222 dst_ip 110.130.38.237 ip_proto tcp src_port 52796 dst_port 7526 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10070 flower src_mac 02:97:48:b9:48:5a dst_mac 02:b0:7a:8c:b2:63 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10071 flower src_mac 02:72:e2:a1:64:77 dst_mac 02:93:be:d8:29:ec vlan_id 2600 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10072 flower src_mac 02:19:06:e2:47:50 dst_mac 02:9a:db:b4:dc:98 src_ip 91.154.80.27 dst_ip 86.212.13.230 ip_proto tcp src_port 55563 dst_port 38300 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10073 flower src_mac 02:fa:44:cb:f4:75 dst_mac 02:02:03:39:45:a1 src_ip 116.54.209.97 dst_ip 111.66.245.51 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10074 flower src_mac 02:27:1c:27:72:c9 dst_mac 02:18:41:8b:6b:11 vlan_id 395 vlan_ethtype ip src_ip 25.118.222.245 dst_ip 79.147.20.89 ip_proto udp src_port 46105 dst_port 63732 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10075 flower src_mac 02:e6:e3:94:d9:67 dst_mac 02:bf:63:0a:57:1c action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10076 flower src_mac 02:07:f3:b2:93:1a dst_mac 02:fc:3c:f8:b7:dc vlan_id 2754 vlan_ethtype ipv4 src_ip 76.124.217.12 dst_ip 112.243.73.34 ip_proto tcp src_port 45911 dst_port 17716 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10077 flower src_mac 02:9f:f3:f8:f3:aa dst_mac 02:b7:2f:14:c9:69 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10078 flower src_mac 02:b8:fd:09:a7:9c dst_mac 02:57:8d:2e:1a:e0 src_ip 91.139.198.207 dst_ip 26.87.124.138 ip_proto tcp src_port 17807 dst_port 51841 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10079 flower src_mac 02:1b:a8:f5:59:2d dst_mac 02:c5:7c:ef:eb:ee vlan_id 3664 vlan_ethtype 0x0800 src_ip 46.75.135.170 dst_ip 44.44.131.136 ip_proto udp src_port 36756 dst_port 1856 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10080 flower src_mac 02:c2:79:c4:ad:6c dst_mac 02:fb:48:aa:30:36 src_ip 23.127.107.31 dst_ip 84.179.95.161 ip_proto udp src_port 7521 dst_port 17313 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10081 flower src_mac 02:d7:f8:c1:0d:3f dst_mac 02:54:f8:29:ca:9b action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10082 flower src_mac 02:81:49:da:29:9b dst_mac 02:45:b0:9d:e5:5b action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10083 flower src_mac 02:80:65:0b:ba:7d dst_mac 02:75:15:e6:25:2c vlan_id 549 vlan_ethtype ip src_ip 38.166.91.61 dst_ip 82.96.225.138 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10084 flower src_mac 02:e7:e1:06:fe:43 dst_mac 02:f2:c8:39:d0:1a src_ip 82.62.26.28 dst_ip 23.120.100.97 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10085 flower src_mac 02:da:e8:2f:cf:e2 dst_mac 02:08:19:0a:ef:49 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10086 flower src_mac 02:a1:80:dd:0a:84 dst_mac 02:bf:84:9a:a8:1e action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10087 flower src_mac 02:5c:c2:1a:cd:ae dst_mac 02:15:44:be:ed:a9 vlan_id 3810 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10088 flower src_mac 02:a3:e7:cf:f2:5c dst_mac 02:14:93:a2:f9:31 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10089 flower src_mac 02:11:a1:f1:e8:7f dst_mac 02:ad:27:d3:b5:56 vlan_id 542 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10090 flower src_mac 02:a4:1c:79:95:ea dst_mac 02:2f:a9:0d:0b:dd vlan_id 105 vlan_ethtype ip src_ip 52.78.232.234 dst_ip 13.130.66.163 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10091 flower src_mac 02:6c:13:5e:18:d7 dst_mac 02:4d:e5:a2:76:df action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10092 flower src_mac 02:ea:90:d2:b7:6c dst_mac 02:dd:5e:6a:e6:75 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10093 flower src_mac 02:00:f8:77:3b:80 dst_mac 02:e4:eb:73:7c:a5 vlan_id 2441 vlan_ethtype 0x0800 src_ip 94.3.43.207 dst_ip 75.136.208.198 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10094 flower src_mac 02:ef:00:b4:a4:a9 dst_mac 02:7a:89:a1:8c:76 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10095 flower src_mac 02:ba:36:a9:28:55 dst_mac 02:82:52:8d:52:ff src_ip 85.227.105.110 dst_ip 30.250.119.151 ip_proto icmp code 105 type 4 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10096 flower src_mac 02:64:52:47:ca:71 dst_mac 02:4a:bb:51:88:8e action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10097 flower src_mac 02:38:02:df:7e:d5 dst_mac 02:33:00:97:fe:0b action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10098 flower src_mac 02:9e:ee:d7:73:fc dst_mac 02:90:f3:03:14:36 vlan_id 2578 vlan_ethtype ip src_ip 91.255.102.142 dst_ip 51.73.135.230 ip_proto tcp src_port 33131 dst_port 13334 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10099 flower src_mac 02:10:0c:7a:dd:99 dst_mac 02:e4:77:fd:b9:c1 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10100 flower src_mac 02:57:95:4e:21:2c dst_mac 02:a3:ee:c7:09:c7 vlan_id 2221 vlan_ethtype ip src_ip 107.174.156.79 dst_ip 76.221.153.66 ip_proto udp src_port 49301 dst_port 46457 action pass && tc filter add dev swp33 ingress protocol ip pref 10101 flower src_mac 02:f1:f9:30:ad:26 dst_mac 02:8c:bb:61:33:8e src_ip 115.250.106.62 dst_ip 100.80.199.64 ip_proto icmp code 200 type 0 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10102 flower src_mac 02:71:cb:83:2f:fc dst_mac 02:7f:1c:26:b0:c7 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10103 flower src_mac 02:25:2f:5e:9d:6b dst_mac 02:7b:54:47:0a:c4 vlan_id 1009 vlan_ethtype 0x0800 src_ip 73.82.33.173 dst_ip 25.213.190.115 ip_proto tcp src_port 45472 dst_port 6346 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10104 flower src_mac 02:00:50:b3:8e:26 dst_mac 02:68:22:63:3e:cb action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10105 flower src_mac 02:8e:ed:95:46:a2 dst_mac 02:dc:c0:67:ee:1b action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10106 flower src_mac 02:59:65:8f:58:3a dst_mac 02:33:8d:51:67:cf src_ip 108.255.83.230 dst_ip 17.42.205.98 ip_proto udp src_port 56080 dst_port 35200 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10107 flower src_mac 02:e3:67:22:01:27 dst_mac 02:ee:ae:76:e3:bd vlan_id 997 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10108 flower src_mac 02:35:a7:55:6d:25 dst_mac 02:de:26:25:5f:23 vlan_id 3340 vlan_ethtype ip src_ip 64.82.187.114 dst_ip 51.66.82.143 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10109 flower src_mac 02:d9:70:8d:56:4a dst_mac 02:d3:34:be:1e:6d action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10110 flower src_mac 02:95:7d:66:01:60 dst_mac 02:ac:10:6c:40:20 vlan_id 2085 vlan_ethtype 0x0800 src_ip 75.70.172.69 dst_ip 35.76.218.87 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10111 flower src_mac 02:b3:eb:38:33:a2 dst_mac 02:66:7c:20:4c:e9 src_ip 125.241.33.118 dst_ip 64.229.103.30 ip_proto tcp src_port 691 dst_port 40440 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10112 flower src_mac 02:9d:0f:31:b3:25 dst_mac 02:6c:00:66:ed:b3 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10113 flower src_mac 02:fa:5c:7d:4d:ce dst_mac 02:88:2f:23:71:a5 vlan_id 2959 vlan_ethtype 0x0800 src_ip 68.148.175.168 dst_ip 119.78.0.132 ip_proto tcp src_port 57825 dst_port 39056 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10114 flower src_mac 02:57:88:46:78:4c dst_mac 02:76:40:9c:7d:89 vlan_id 972 vlan_ethtype 0x0800 src_ip 56.150.226.249 dst_ip 61.12.188.9 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10115 flower src_mac 02:e2:a8:30:9b:9a dst_mac 02:44:4c:b8:e0:87 src_ip 46.91.237.173 dst_ip 62.26.1.249 ip_proto icmp code 7 type 14 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10116 flower src_mac 02:e5:92:58:43:e4 dst_mac 02:41:16:a9:ff:88 src_ip 73.51.13.89 dst_ip 29.182.35.145 ip_proto icmp code 19 type 3 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10117 flower src_mac 02:af:0a:fa:43:a5 dst_mac 02:75:61:09:2a:41 vlan_id 3252 vlan_ethtype ip src_ip 22.206.141.94 dst_ip 58.212.15.221 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10118 flower src_mac 02:09:06:db:40:74 dst_mac 02:c9:d2:12:c0:39 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10119 flower src_mac 02:69:97:46:b7:8e dst_mac 02:ce:0d:3d:ab:2d vlan_id 1779 vlan_ethtype 0x0800 src_ip 42.92.220.138 dst_ip 94.228.149.18 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10120 flower src_mac 02:fc:47:e8:c5:ab dst_mac 02:3c:d3:4c:58:13 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10121 flower src_mac 02:ee:96:22:0f:1b dst_mac 02:09:bc:66:35:0c vlan_id 3717 vlan_ethtype ip src_ip 28.248.174.225 dst_ip 11.193.180.156 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10122 flower src_mac 02:b0:e4:a9:7b:51 dst_mac 02:01:01:85:0a:ac action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10123 flower src_mac 02:b8:b5:f0:e5:79 dst_mac 02:47:df:c3:ee:54 vlan_id 693 vlan_ethtype 0x0800 src_ip 119.83.69.97 dst_ip 19.203.217.46 ip_proto tcp src_port 58318 dst_port 42599 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10124 flower src_mac 02:1a:64:90:6a:2c dst_mac 02:75:1e:7f:c0:22 vlan_id 579 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10125 flower src_mac 02:46:be:7c:86:c1 dst_mac 02:0e:6d:7f:b5:54 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10126 flower src_mac 02:e7:45:eb:8e:52 dst_mac 02:fc:93:c9:7a:3c vlan_id 4008 vlan_ethtype ip src_ip 106.218.149.21 dst_ip 82.211.134.54 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10127 flower src_mac 02:ad:ca:70:f1:d2 dst_mac 02:7c:4b:e5:02:0d src_ip 99.25.72.56 dst_ip 58.64.104.173 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10128 flower src_mac 02:09:1d:6c:41:7b dst_mac 02:7e:c8:17:e5:56 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10129 flower src_mac 02:a4:b8:0a:d4:26 dst_mac 02:35:bc:46:6f:2b vlan_id 2959 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10130 flower src_mac 02:cf:dd:95:37:e0 dst_mac 02:a6:83:4f:93:5a src_ip 82.28.89.189 dst_ip 40.68.9.64 ip_proto tcp src_port 42464 dst_port 54233 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10131 flower src_mac 02:fa:ae:c3:d6:0b dst_mac 02:90:d1:50:1b:89 vlan_id 314 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10132 flower src_mac 02:e2:d8:7f:d0:30 dst_mac 02:36:24:a1:83:40 vlan_id 2039 vlan_ethtype ip src_ip 15.239.173.169 dst_ip 13.220.53.50 ip_proto tcp src_port 48813 dst_port 18244 action pass && tc filter add dev swp33 ingress protocol ip pref 10133 flower src_mac 02:b7:58:74:ad:fd dst_mac 02:2d:ad:28:96:eb src_ip 106.17.202.197 dst_ip 113.87.72.200 action pass && tc filter add dev swp33 ingress protocol ip pref 10134 flower src_mac 02:cc:5e:c7:0a:16 dst_mac 02:a9:fb:99:20:d0 src_ip 41.182.42.28 dst_ip 14.61.180.157 ip_proto tcp src_port 15838 dst_port 20649 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10135 flower src_mac 02:30:59:28:f5:eb dst_mac 02:9c:4c:48:48:5a vlan_id 2041 vlan_ethtype ip src_ip 67.47.65.109 dst_ip 99.13.68.226 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10136 flower src_mac 02:00:be:4e:e2:e9 dst_mac 02:d8:13:aa:de:ba vlan_id 2925 vlan_ethtype ipv4 src_ip 105.43.223.133 dst_ip 62.162.89.246 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10137 flower src_mac 02:59:11:2f:c3:8a dst_mac 02:d6:1c:a0:63:1f src_ip 36.5.180.213 dst_ip 24.90.215.123 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10138 flower src_mac 02:65:92:ac:80:99 dst_mac 02:04:76:c0:99:88 vlan_id 3188 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10139 flower src_mac 02:0f:0b:b2:8e:08 dst_mac 02:57:2e:36:67:00 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10140 flower src_mac 02:d7:5b:df:42:5d dst_mac 02:55:d5:96:1b:66 vlan_id 1739 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10141 flower src_mac 02:c3:06:46:f1:12 dst_mac 02:16:10:96:24:49 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10142 flower src_mac 02:68:d0:f3:99:a6 dst_mac 02:1d:bd:3c:5f:aa vlan_id 1495 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10143 flower src_mac 02:a5:fc:2f:5e:9f dst_mac 02:9d:90:cb:18:69 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10144 flower src_mac 02:3c:d5:35:61:3e dst_mac 02:2a:1e:bf:cf:8b vlan_id 49 vlan_ethtype 0x0800 src_ip 41.252.87.78 dst_ip 12.179.211.161 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10145 flower src_mac 02:af:f1:4b:05:ad dst_mac 02:6e:8c:91:2e:78 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10146 flower src_mac 02:9f:78:0c:47:0d dst_mac 02:f1:78:dc:dd:b6 vlan_id 1323 vlan_ethtype ipv4 src_ip 98.215.18.210 dst_ip 38.77.20.121 ip_proto udp src_port 44884 dst_port 39917 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10147 flower src_mac 02:07:d4:7b:22:5b dst_mac 02:93:8c:c0:4f:5e action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10148 flower src_mac 02:b2:87:f8:64:d6 dst_mac 02:da:23:dc:77:cb src_ip 112.102.15.245 dst_ip 74.166.0.197 ip_proto tcp src_port 53110 dst_port 50874 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10149 flower src_mac 02:aa:6b:35:96:26 dst_mac 02:51:b3:ed:40:e8 src_ip 17.111.182.102 dst_ip 72.57.40.43 ip_proto tcp src_port 13113 dst_port 42988 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10150 flower src_mac 02:22:7c:d8:96:5c dst_mac 02:ff:12:65:74:f8 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10151 flower src_mac 02:6c:ce:f0:26:ce dst_mac 02:9a:5d:2e:1e:6e action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10152 flower src_mac 02:5f:5e:df:fc:e8 dst_mac 02:62:f3:b1:2f:2d vlan_id 2294 vlan_ethtype 0x0800 src_ip 33.107.210.64 dst_ip 97.168.251.137 ip_proto udp src_port 46862 dst_port 10849 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10153 flower src_mac 02:3d:90:3b:3d:3b dst_mac 02:ca:8e:fe:1b:24 src_ip 86.37.135.159 dst_ip 92.253.248.193 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10154 flower src_mac 02:7a:fc:09:50:c3 dst_mac 02:34:68:d8:fc:dd vlan_id 3218 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10155 flower src_mac 02:8e:b7:0c:4d:98 dst_mac 02:9b:f5:d5:83:f3 vlan_id 3449 vlan_ethtype 0x0800 src_ip 69.4.229.28 dst_ip 82.85.188.212 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10156 flower src_mac 02:af:24:ac:f1:02 dst_mac 02:bc:c4:d7:2c:b6 vlan_id 2628 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10157 flower src_mac 02:a2:7e:5e:69:f6 dst_mac 02:20:fd:c2:23:0a src_ip 112.9.205.128 dst_ip 45.236.215.53 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10158 flower src_mac 02:ce:a1:81:23:3d dst_mac 02:1d:79:4f:8c:45 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10159 flower src_mac 02:3a:00:d7:41:61 dst_mac 02:9c:46:62:a4:64 action trap && tc filter add dev swp33 ingress protocol ip pref 10160 flower src_mac 02:73:4a:83:b3:f9 dst_mac 02:f3:5a:42:df:91 src_ip 91.79.63.18 dst_ip 64.208.5.37 ip_proto tcp src_port 57045 dst_port 1667 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10161 flower src_mac 02:38:86:29:f4:d4 dst_mac 02:01:33:a8:17:87 src_ip 47.221.105.33 dst_ip 65.244.193.176 ip_proto tcp src_port 55866 dst_port 51119 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10162 flower src_mac 02:e4:4d:18:35:03 dst_mac 02:5e:85:7c:b7:7c vlan_id 512 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10163 flower src_mac 02:68:a4:1a:f3:a2 dst_mac 02:87:1a:c9:7b:e2 vlan_id 2442 vlan_ethtype 0x0800 src_ip 93.71.77.133 dst_ip 78.202.166.166 ip_proto udp src_port 35191 dst_port 14861 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10164 flower src_mac 02:26:90:80:17:61 dst_mac 02:5b:66:3f:0c:b2 vlan_id 3531 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10165 flower src_mac 02:c6:6e:2e:b6:d1 dst_mac 02:fd:07:31:f1:77 vlan_id 212 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10166 flower src_mac 02:86:14:53:3a:73 dst_mac 02:da:16:9e:66:46 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10167 flower src_mac 02:02:d7:72:71:62 dst_mac 02:ec:1f:6a:f8:d5 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10168 flower src_mac 02:eb:86:11:43:fd dst_mac 02:c8:0a:d2:17:3c src_ip 117.172.152.167 dst_ip 93.176.206.73 ip_proto udp src_port 1864 dst_port 28186 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10169 flower src_mac 02:e2:10:39:86:2f dst_mac 02:60:98:6a:ac:0d action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10170 flower src_mac 02:c2:7c:64:01:8d dst_mac 02:86:ac:d5:7d:31 vlan_id 3109 vlan_ethtype ipv4 src_ip 86.247.105.161 dst_ip 83.250.184.245 action pass && tc filter add dev swp33 ingress protocol ip pref 10171 flower src_mac 02:44:14:11:7b:d0 dst_mac 02:76:ab:df:4f:97 src_ip 103.62.1.57 dst_ip 45.172.158.129 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10172 flower src_mac 02:c0:f8:1d:6e:e6 dst_mac 02:01:e5:89:12:f2 vlan_id 3118 vlan_ethtype 0x0800 src_ip 94.112.130.225 dst_ip 46.143.112.152 ip_proto tcp src_port 32410 dst_port 40160 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10173 flower src_mac 02:59:30:40:76:f0 dst_mac 02:33:36:ba:d2:09 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10174 flower src_mac 02:a9:f2:61:db:e1 dst_mac 02:c1:65:92:e5:67 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10175 flower src_mac 02:93:e0:71:fd:93 dst_mac 02:07:b9:a9:1c:64 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10176 flower src_mac 02:6f:46:c8:b3:c4 dst_mac 02:69:c3:b0:23:5a src_ip 71.102.39.227 dst_ip 98.194.34.29 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10177 flower src_mac 02:89:c5:a2:a3:fe dst_mac 02:40:09:36:19:d2 vlan_id 2509 vlan_ethtype 0x0800 src_ip 40.148.107.107 dst_ip 86.119.156.228 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10178 flower src_mac 02:f3:fe:87:88:e8 dst_mac 02:d9:7d:90:a5:a6 vlan_id 2339 vlan_ethtype ip src_ip 27.181.167.86 dst_ip 62.32.232.232 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10179 flower src_mac 02:91:72:db:6a:b3 dst_mac 02:7b:c1:5d:91:4f action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10180 flower src_mac 02:af:9c:4f:3f:b8 dst_mac 02:ab:f6:29:ca:21 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10181 flower src_mac 02:01:b2:dd:a7:df dst_mac 02:dd:46:0a:9b:0a action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10182 flower src_mac 02:d3:fe:88:53:5a dst_mac 02:40:c3:6b:4b:61 vlan_id 1604 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10183 flower src_mac 02:7b:ea:34:3a:25 dst_mac 02:80:c0:e1:8f:82 vlan_id 352 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol ip pref 10184 flower src_mac 02:43:31:03:98:57 dst_mac 02:28:3e:c3:eb:b7 src_ip 15.89.60.171 dst_ip 111.54.105.166 ip_proto icmp code 191 type 11 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10185 flower src_mac 02:17:86:0f:13:1e dst_mac 02:10:4c:5a:ef:57 src_ip 62.116.91.96 dst_ip 30.214.120.228 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10186 flower src_mac 02:64:7c:3e:7d:c0 dst_mac 02:8a:d4:b4:b1:95 vlan_id 2914 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol ip pref 10187 flower src_mac 02:a7:6b:d1:8e:2b dst_mac 02:cf:39:18:e5:f0 src_ip 51.34.32.190 dst_ip 24.52.95.54 ip_proto tcp src_port 33171 dst_port 33664 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10188 flower src_mac 02:70:4d:f6:f6:ed dst_mac 02:40:a0:e0:4a:03 vlan_id 3936 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10189 flower src_mac 02:92:1a:62:05:b0 dst_mac 02:53:22:d2:e4:63 vlan_id 1883 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10190 flower src_mac 02:c2:75:e7:39:e7 dst_mac 02:f9:9e:e4:6c:44 vlan_id 939 vlan_ethtype 0x0800 src_ip 65.82.65.249 dst_ip 49.198.4.123 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10191 flower src_mac 02:f0:4e:2d:a4:33 dst_mac 02:34:15:50:e4:e4 src_ip 27.120.10.70 dst_ip 19.194.2.194 ip_proto udp src_port 42448 dst_port 36345 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10192 flower src_mac 02:8a:a3:9b:92:06 dst_mac 02:e5:c0:21:db:b5 vlan_id 3992 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10193 flower src_mac 02:de:0f:1b:92:7b dst_mac 02:ca:6c:ef:5a:2e src_ip 104.119.1.160 dst_ip 55.161.74.125 ip_proto icmp code 97 type 18 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10194 flower src_mac 02:64:99:5b:38:49 dst_mac 02:80:ce:18:85:4c vlan_id 1186 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10195 flower src_mac 02:7e:10:e0:cc:37 dst_mac 02:fd:a9:2d:fd:bc vlan_id 1538 vlan_ethtype ipv4 src_ip 74.117.122.218 dst_ip 72.37.87.62 ip_proto tcp src_port 8124 dst_port 42967 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10196 flower src_mac 02:c9:c9:53:1a:fa dst_mac 02:ce:61:8b:6a:68 vlan_id 3038 vlan_ethtype ip src_ip 101.42.0.151 dst_ip 24.201.81.110 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10197 flower src_mac 02:78:e1:66:f2:cc dst_mac 02:8d:58:3a:ae:96 vlan_id 59 vlan_ethtype ipv4 src_ip 88.152.37.124 dst_ip 19.198.150.125 ip_proto tcp src_port 3084 dst_port 5001 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10198 flower src_mac 02:6f:65:f1:54:42 dst_mac 02:59:be:f2:1a:14 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10199 flower src_mac 02:a9:ad:33:3b:a1 dst_mac 02:90:57:0e:ce:64 vlan_id 2198 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10200 flower src_mac 02:bf:3c:41:30:ab dst_mac 02:c6:28:f0:f7:7c src_ip 37.88.15.84 dst_ip 114.180.172.17 ip_proto tcp src_port 49026 dst_port 479 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10201 flower src_mac 02:c9:be:29:67:c4 dst_mac 02:d5:a9:a8:36:49 vlan_id 1769 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10202 flower src_mac 02:32:7b:1c:a6:e3 dst_mac 02:f7:a5:9e:ae:a8 vlan_id 949 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10203 flower src_mac 02:14:2d:db:57:ca dst_mac 02:13:aa:5a:a1:9d vlan_id 3842 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10204 flower src_mac 02:af:a6:2e:0f:ca dst_mac 02:cc:50:59:dd:f9 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10205 flower src_mac 02:33:57:c1:a4:be dst_mac 02:33:0e:be:9e:ab vlan_id 2874 vlan_ethtype ipv4 src_ip 54.153.48.46 dst_ip 23.254.134.124 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10206 flower src_mac 02:9c:09:f8:8c:76 dst_mac 02:6e:a1:f8:f4:4e vlan_id 1803 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10207 flower src_mac 02:e8:3f:f6:db:cd dst_mac 02:2d:65:76:39:4d action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10208 flower src_mac 02:54:52:cc:bc:0e dst_mac 02:82:ee:03:08:0e vlan_id 414 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10209 flower src_mac 02:cc:fc:7b:dd:7d dst_mac 02:2f:68:b5:a9:87 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10210 flower src_mac 02:5b:77:6b:5d:03 dst_mac 02:3a:6e:ef:7f:2c src_ip 74.143.73.237 dst_ip 112.76.249.202 ip_proto icmp code 249 type 16 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10211 flower src_mac 02:7f:50:da:93:aa dst_mac 02:44:14:70:31:fd vlan_id 1989 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol ip pref 10212 flower src_mac 02:4c:e6:33:16:3f dst_mac 02:04:08:0c:94:ba src_ip 73.113.232.61 dst_ip 93.59.78.37 ip_proto udp src_port 18632 dst_port 2206 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10213 flower src_mac 02:b5:20:46:88:21 dst_mac 02:2f:f9:7a:40:0d action drop && tc filter add dev swp33 ingress protocol ip pref 10214 flower src_mac 02:1c:c3:a6:e7:8f dst_mac 02:6c:47:99:5a:85 src_ip 83.255.171.158 dst_ip 22.147.107.51 ip_proto tcp src_port 4477 dst_port 11103 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10215 flower src_mac 02:bc:8d:97:28:7c dst_mac 02:22:10:70:e2:4c src_ip 120.44.246.193 dst_ip 19.187.43.44 ip_proto udp src_port 7490 dst_port 19660 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10216 flower src_mac 02:2f:9b:ff:8f:49 dst_mac 02:08:90:cf:1a:0a vlan_id 430 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10217 flower src_mac 02:be:69:fe:ab:4d dst_mac 02:9e:74:5f:2c:43 vlan_id 3455 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10218 flower src_mac 02:16:89:34:b8:8b dst_mac 02:71:d3:7b:41:11 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10219 flower src_mac 02:55:64:1f:7b:46 dst_mac 02:19:a5:52:b3:0d action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10220 flower src_mac 02:72:3f:8b:70:5f dst_mac 02:c6:4f:ae:7f:aa vlan_id 1098 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10221 flower src_mac 02:f0:e9:2f:e1:77 dst_mac 02:18:ea:66:41:e5 src_ip 73.103.176.38 dst_ip 114.5.59.82 ip_proto tcp src_port 15518 dst_port 48019 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10222 flower src_mac 02:65:75:ab:6b:ee dst_mac 02:12:15:6d:32:ee action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10223 flower src_mac 02:b5:f5:ff:f5:c7 dst_mac 02:cd:d5:29:45:41 vlan_id 1595 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10224 flower src_mac 02:34:04:2a:e2:ac dst_mac 02:0a:53:17:7e:b9 src_ip 125.247.22.142 dst_ip 73.201.152.77 ip_proto icmp code 65 type 15 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10225 flower src_mac 02:17:25:0c:b8:10 dst_mac 02:00:0c:1f:18:a2 vlan_id 1515 vlan_ethtype 0x0800 src_ip 37.63.133.128 dst_ip 107.103.104.242 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10226 flower src_mac 02:34:fa:08:fa:c3 dst_mac 02:fc:e6:74:39:47 src_ip 50.247.163.55 dst_ip 102.128.199.183 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10227 flower src_mac 02:b2:8b:95:ee:c1 dst_mac 02:04:43:0b:ae:15 vlan_id 3989 vlan_ethtype ip src_ip 53.197.252.73 dst_ip 12.116.40.203 ip_proto tcp src_port 18689 dst_port 36460 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10228 flower src_mac 02:58:77:cd:65:28 dst_mac 02:bb:68:6a:06:38 vlan_id 1540 vlan_ethtype ip src_ip 90.62.89.29 dst_ip 45.144.5.218 action drop && tc filter add dev swp33 ingress protocol ip pref 10229 flower src_mac 02:a1:aa:bb:e0:fd dst_mac 02:68:40:69:b6:b6 src_ip 74.243.15.119 dst_ip 117.2.177.38 ip_proto udp src_port 4312 dst_port 60091 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10230 flower src_mac 02:dd:fd:71:20:9d dst_mac 02:17:60:95:05:fa action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10231 flower src_mac 02:4a:91:d3:76:9e dst_mac 02:3d:69:7a:c0:ed vlan_id 1557 vlan_ethtype 0x0800 src_ip 84.199.98.41 dst_ip 58.55.207.241 ip_proto tcp src_port 46268 dst_port 771 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10232 flower src_mac 02:df:e1:e4:94:08 dst_mac 02:cf:0d:a5:e4:ab src_ip 88.6.7.148 dst_ip 33.1.85.52 ip_proto tcp src_port 4059 dst_port 43686 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10233 flower src_mac 02:8d:50:ca:25:aa dst_mac 02:aa:28:a5:f0:8c src_ip 120.154.29.149 dst_ip 121.154.145.154 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10234 flower src_mac 02:56:e0:3e:5a:64 dst_mac 02:cc:74:e8:14:1b vlan_id 411 vlan_ethtype ip src_ip 57.85.34.76 dst_ip 32.223.187.187 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10235 flower src_mac 02:a9:6d:73:82:67 dst_mac 02:a2:52:31:6f:15 vlan_id 3949 vlan_ethtype 0x0800 src_ip 50.33.142.62 dst_ip 62.252.50.29 ip_proto tcp src_port 26867 dst_port 18844 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10236 flower src_mac 02:df:5b:bc:a6:5c dst_mac 02:8e:28:23:2e:ed src_ip 126.65.203.235 dst_ip 29.181.92.68 ip_proto udp src_port 31057 dst_port 31801 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10237 flower src_mac 02:eb:60:c1:81:50 dst_mac 02:73:52:63:bf:f2 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10238 flower src_mac 02:b0:74:47:c1:2b dst_mac 02:6c:01:14:02:0c src_ip 124.196.152.106 dst_ip 67.173.132.167 ip_proto udp src_port 39595 dst_port 32523 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10239 flower src_mac 02:6b:4f:a7:bd:78 dst_mac 02:88:fa:bc:38:90 src_ip 124.20.178.20 dst_ip 19.23.120.148 ip_proto udp src_port 21325 dst_port 3101 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10240 flower src_mac 02:af:46:0a:da:6b dst_mac 02:66:2f:2f:3a:c7 src_ip 52.39.225.175 dst_ip 47.148.39.129 ip_proto udp src_port 27618 dst_port 22930 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10241 flower src_mac 02:0b:0d:32:29:9b dst_mac 02:7b:e6:4c:7f:d7 vlan_id 466 vlan_ethtype 0x0800 src_ip 105.233.137.216 dst_ip 113.162.188.49 ip_proto tcp src_port 51292 dst_port 58856 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10242 flower src_mac 02:ab:c7:6a:db:2c dst_mac 02:9c:58:2b:58:36 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10243 flower src_mac 02:92:34:e1:8d:ec dst_mac 02:e7:21:eb:f8:4d vlan_id 1736 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10244 flower src_mac 02:52:1e:6e:82:89 dst_mac 02:05:99:fd:91:2c vlan_id 3802 vlan_ethtype 0x0800 src_ip 99.72.229.34 dst_ip 51.175.115.183 ip_proto udp src_port 63247 dst_port 49126 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10245 flower src_mac 02:00:8b:4f:38:22 dst_mac 02:50:04:86:a5:35 vlan_id 2160 vlan_ethtype 0x0800 src_ip 74.86.152.94 dst_ip 77.61.190.189 ip_proto udp src_port 29920 dst_port 48270 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10246 flower src_mac 02:d3:98:03:c8:35 dst_mac 02:a1:8b:bc:5a:c7 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10247 flower src_mac 02:fd:a7:32:41:78 dst_mac 02:7e:af:e0:6f:64 vlan_id 1917 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10248 flower src_mac 02:10:6a:46:f5:5d dst_mac 02:13:d1:ec:d7:65 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10249 flower src_mac 02:ba:d4:be:b4:5a dst_mac 02:d5:95:f9:27:47 vlan_id 2997 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10250 flower src_mac 02:33:19:3a:42:37 dst_mac 02:f7:c5:ab:aa:b7 src_ip 79.10.23.151 dst_ip 57.174.122.157 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10251 flower src_mac 02:01:97:d8:5b:82 dst_mac 02:8d:5a:69:d1:b6 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10252 flower src_mac 02:04:3b:44:33:f1 dst_mac 02:f4:4e:20:f6:fe vlan_id 3511 vlan_ethtype ip src_ip 31.250.21.28 dst_ip 76.240.180.145 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10253 flower src_mac 02:33:5a:18:be:8e dst_mac 02:65:f6:de:35:f0 src_ip 41.243.3.57 dst_ip 107.54.222.35 ip_proto udp src_port 42063 dst_port 32168 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10254 flower src_mac 02:ed:73:11:f0:43 dst_mac 02:21:a2:a8:5c:91 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10255 flower src_mac 02:44:39:1d:e3:6f dst_mac 02:98:0a:12:63:84 vlan_id 660 vlan_ethtype ipv4 src_ip 64.108.194.196 dst_ip 90.213.184.149 ip_proto udp src_port 59880 dst_port 43922 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10256 flower src_mac 02:6c:14:15:0f:ef dst_mac 02:de:7a:88:63:c6 src_ip 107.169.90.205 dst_ip 61.192.89.125 ip_proto tcp src_port 62418 dst_port 37759 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10257 flower src_mac 02:3e:62:41:bc:bb dst_mac 02:c1:82:a6:cc:df vlan_id 291 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol ip pref 10258 flower src_mac 02:4e:17:38:a5:9d dst_mac 02:01:17:50:f2:ce src_ip 83.237.243.144 dst_ip 18.165.200.61 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10259 flower src_mac 02:37:2b:24:69:44 dst_mac 02:52:18:8c:4c:96 src_ip 46.133.255.191 dst_ip 25.96.3.66 ip_proto udp src_port 33011 dst_port 29412 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10260 flower src_mac 02:56:31:dd:58:32 dst_mac 02:f8:fd:80:98:3a src_ip 69.102.24.233 dst_ip 59.238.76.99 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10261 flower src_mac 02:f7:94:fb:e5:56 dst_mac 02:18:7c:8c:2f:f3 src_ip 85.73.91.233 dst_ip 20.247.42.163 ip_proto icmp code 42 type 16 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10262 flower src_mac 02:be:13:19:71:c9 dst_mac 02:97:60:3b:54:db src_ip 89.223.79.79 dst_ip 118.198.100.188 ip_proto tcp src_port 3759 dst_port 53373 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10263 flower src_mac 02:ab:fb:92:35:c5 dst_mac 02:19:55:5c:74:78 vlan_id 658 vlan_ethtype 0x0800 src_ip 122.136.53.100 dst_ip 126.202.245.119 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10264 flower src_mac 02:98:7b:c7:32:a2 dst_mac 02:d7:c1:8b:81:2c vlan_id 1857 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10265 flower src_mac 02:54:b6:3a:9a:5c dst_mac 02:5d:d4:f4:aa:31 vlan_id 3971 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10266 flower src_mac 02:55:e3:6f:c9:fa dst_mac 02:05:62:6b:f4:59 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10267 flower src_mac 02:f9:a2:74:d4:cf dst_mac 02:45:41:90:ec:c9 vlan_id 3175 vlan_ethtype ipv4 src_ip 87.90.120.170 dst_ip 76.88.50.106 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10268 flower src_mac 02:3d:a1:fe:3b:87 dst_mac 02:65:7c:da:15:98 vlan_id 3400 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10269 flower src_mac 02:38:b7:08:44:20 dst_mac 02:92:27:f2:7a:dd vlan_id 246 vlan_ethtype ip src_ip 95.133.184.246 dst_ip 113.177.154.92 ip_proto tcp src_port 2116 dst_port 30166 action trap && tc filter add dev swp33 ingress protocol ip pref 10270 flower src_mac 02:fd:07:0d:39:3e dst_mac 02:de:de:62:e4:05 src_ip 95.134.239.183 dst_ip 33.200.147.114 ip_proto udp src_port 52645 dst_port 17953 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10271 flower src_mac 02:ed:7f:d1:08:da dst_mac 02:ce:9e:43:63:bd vlan_id 2313 vlan_ethtype 0x0800 src_ip 112.231.205.27 dst_ip 38.1.45.186 ip_proto tcp src_port 40164 dst_port 57467 action pass && tc filter add dev swp33 ingress protocol ip pref 10272 flower src_mac 02:5e:d3:a7:d7:eb dst_mac 02:84:e3:3d:6f:5c src_ip 59.219.62.220 dst_ip 80.224.41.25 ip_proto udp src_port 58299 dst_port 29597 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10273 flower src_mac 02:e4:55:d2:9d:90 dst_mac 02:2f:10:87:14:9f action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10274 flower src_mac 02:59:1f:9f:1d:63 dst_mac 02:0a:32:c3:9c:f2 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10275 flower src_mac 02:d1:5b:7d:74:bf dst_mac 02:72:f0:f9:b4:f6 src_ip 82.122.46.61 dst_ip 122.19.134.66 ip_proto udp src_port 2699 dst_port 25358 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10276 flower src_mac 02:9a:d6:2c:6c:45 dst_mac 02:1d:84:a5:42:96 vlan_id 2535 vlan_ethtype ip src_ip 39.159.101.189 dst_ip 76.183.199.21 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10277 flower src_mac 02:21:ab:11:3e:a8 dst_mac 02:57:40:1b:65:26 vlan_id 3252 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10278 flower src_mac 02:92:45:67:89:d8 dst_mac 02:9a:11:9f:a1:e1 vlan_id 3734 vlan_ethtype ip src_ip 33.181.188.55 dst_ip 76.72.22.232 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10279 flower src_mac 02:b5:9f:d1:97:b7 dst_mac 02:c4:c9:4f:40:79 vlan_id 2250 vlan_ethtype ipv4 src_ip 37.62.200.22 dst_ip 40.147.210.222 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10280 flower src_mac 02:19:07:d2:8f:8f dst_mac 02:71:ae:28:21:4f src_ip 103.208.98.70 dst_ip 59.219.78.209 ip_proto tcp src_port 12734 dst_port 43212 action trap && tc filter add dev swp33 ingress protocol ip pref 10281 flower src_mac 02:e8:fe:05:ee:f6 dst_mac 02:6e:4b:b6:be:52 src_ip 53.135.111.140 dst_ip 33.213.91.40 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10282 flower src_mac 02:61:f5:8e:ee:b6 dst_mac 02:a7:56:6f:db:8a src_ip 92.78.21.37 dst_ip 15.199.75.130 ip_proto icmp code 164 type 17 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10283 flower src_mac 02:17:8a:2e:97:87 dst_mac 02:eb:ab:71:cd:d0 vlan_id 3477 vlan_ethtype ip src_ip 99.127.185.169 dst_ip 79.25.11.77 ip_proto udp src_port 24043 dst_port 13512 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10284 flower src_mac 02:ae:7a:de:0e:87 dst_mac 02:2f:0d:a9:f4:9c action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10285 flower src_mac 02:6a:25:f4:3a:82 dst_mac 02:8c:68:94:8c:e7 vlan_id 3307 vlan_ethtype ipv4 src_ip 50.80.228.167 dst_ip 74.36.66.101 ip_proto tcp src_port 46956 dst_port 42823 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10286 flower src_mac 02:9a:f2:6b:b6:a1 dst_mac 02:ca:4f:1c:d2:82 vlan_id 2966 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol ip pref 10287 flower src_mac 02:81:be:91:97:4e dst_mac 02:e2:91:c6:e5:d4 src_ip 13.189.215.146 dst_ip 42.118.175.239 ip_proto tcp src_port 8350 dst_port 27537 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10288 flower src_mac 02:51:f4:d7:a9:08 dst_mac 02:3b:8b:73:ad:96 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10289 flower src_mac 02:0f:8e:8f:39:94 dst_mac 02:3f:00:c5:50:e4 src_ip 60.127.64.2 dst_ip 99.184.180.117 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10290 flower src_mac 02:d9:5e:78:fc:90 dst_mac 02:3f:6e:3f:eb:39 vlan_id 3091 vlan_ethtype ipv4 src_ip 102.172.18.21 dst_ip 72.51.127.145 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10291 flower src_mac 02:6f:1f:2c:a2:92 dst_mac 02:73:1b:05:bb:d0 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10292 flower src_mac 02:5d:7a:09:b1:eb dst_mac 02:80:0a:42:1d:2b vlan_id 113 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol ip pref 10293 flower src_mac 02:43:db:50:15:e5 dst_mac 02:7a:52:59:e6:4d src_ip 123.187.135.138 dst_ip 55.81.110.226 ip_proto tcp src_port 51670 dst_port 1534 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10294 flower src_mac 02:f6:61:41:f3:36 dst_mac 02:b7:88:05:ad:b8 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10295 flower src_mac 02:89:78:68:6c:76 dst_mac 02:3d:5f:e6:ae:23 vlan_id 2969 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10296 flower src_mac 02:4d:b3:59:77:1d dst_mac 02:bb:8b:4a:30:43 vlan_id 392 vlan_ethtype ip src_ip 82.68.177.88 dst_ip 69.64.171.34 action pass && tc filter add dev swp33 ingress protocol ip pref 10297 flower src_mac 02:0d:9a:37:7c:5a dst_mac 02:d3:c3:56:82:4f src_ip 77.156.137.48 dst_ip 99.52.32.249 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10298 flower src_mac 02:f2:97:1e:ad:4f dst_mac 02:f9:2b:42:46:95 src_ip 32.31.105.57 dst_ip 50.14.59.227 ip_proto icmp code 223 type 0 action trap && tc filter add dev swp33 ingress protocol ip pref 10299 flower src_mac 02:9a:6d:c2:83:84 dst_mac 02:db:12:58:8d:a2 src_ip 113.62.53.234 dst_ip 51.48.29.67 ip_proto icmp code 172 type 18 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10300 flower src_mac 02:2b:2f:f2:39:c0 dst_mac 02:d1:9c:04:d8:8f vlan_id 2602 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10301 flower src_mac 02:6d:9d:ca:a6:89 dst_mac 02:55:d2:25:9e:ec vlan_id 3710 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10302 flower src_mac 02:93:eb:8d:1a:ba dst_mac 02:e4:56:53:13:75 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10303 flower src_mac 02:eb:c2:36:eb:3c dst_mac 02:73:9d:fd:bb:bf action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10304 flower src_mac 02:29:1c:99:87:5a dst_mac 02:00:ad:bf:c7:19 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10305 flower src_mac 02:25:c4:9b:b4:2f dst_mac 02:12:0d:b4:a0:5a vlan_id 2886 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10306 flower src_mac 02:12:78:16:b7:d1 dst_mac 02:8d:39:6e:27:30 vlan_id 650 vlan_ethtype ip src_ip 27.74.134.59 dst_ip 104.233.182.113 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10307 flower src_mac 02:48:dd:b2:b6:50 dst_mac 02:f3:1a:ba:73:fb vlan_id 3159 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10308 flower src_mac 02:e0:f9:af:f4:4e dst_mac 02:9c:63:f5:93:90 vlan_id 3339 vlan_ethtype ipv4 src_ip 61.235.140.58 dst_ip 77.101.35.113 ip_proto udp src_port 35321 dst_port 28614 action trap && tc filter add dev swp33 ingress protocol ip pref 10309 flower src_mac 02:b3:a8:92:19:57 dst_mac 02:85:7b:bb:22:2e src_ip 21.226.50.72 dst_ip 107.140.18.105 ip_proto udp src_port 39645 dst_port 14665 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10310 flower src_mac 02:8a:d2:a0:ba:ae dst_mac 02:01:db:99:04:b0 src_ip 113.107.73.151 dst_ip 58.209.98.30 action trap && tc filter add dev swp33 ingress protocol ip pref 10311 flower src_mac 02:e9:91:05:8a:83 dst_mac 02:3c:2c:4a:6a:68 src_ip 64.212.50.22 dst_ip 33.212.211.203 ip_proto icmp code 199 type 13 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10312 flower src_mac 02:f9:97:17:48:0b dst_mac 02:51:d7:e4:ad:4b src_ip 69.50.208.9 dst_ip 125.26.79.175 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10313 flower src_mac 02:c0:3f:89:16:57 dst_mac 02:4a:48:01:91:24 vlan_id 2321 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10314 flower src_mac 02:d8:c6:5b:c2:36 dst_mac 02:a6:61:63:fc:c2 vlan_id 3892 vlan_ethtype 0x0800 src_ip 84.43.191.61 dst_ip 67.79.5.46 ip_proto udp src_port 21389 dst_port 61158 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10315 flower src_mac 02:00:b1:71:5a:53 dst_mac 02:56:aa:c7:0c:12 vlan_id 2286 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10316 flower src_mac 02:5c:b1:b4:7a:2d dst_mac 02:34:1a:90:c3:bb vlan_id 3587 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10317 flower src_mac 02:7f:32:98:38:aa dst_mac 02:71:5a:35:47:80 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10318 flower src_mac 02:6a:94:67:76:31 dst_mac 02:d6:f8:0c:9d:8d vlan_id 3566 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10319 flower src_mac 02:21:9e:8e:98:13 dst_mac 02:cc:75:77:39:db src_ip 108.26.58.165 dst_ip 104.56.41.215 ip_proto icmp code 65 type 12 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10320 flower src_mac 02:0e:b3:58:4d:f0 dst_mac 02:ed:37:82:0d:f6 vlan_id 2157 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol ip pref 10321 flower src_mac 02:bd:d4:a7:f1:02 dst_mac 02:a5:93:db:a5:77 src_ip 71.98.169.181 dst_ip 60.236.209.30 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10322 flower src_mac 02:2c:3b:d7:59:5f dst_mac 02:d3:54:a7:ad:68 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10323 flower src_mac 02:9e:d9:03:1f:df dst_mac 02:f2:28:d5:ac:a8 src_ip 65.95.9.217 dst_ip 91.154.30.190 ip_proto icmp code 26 type 12 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10324 flower src_mac 02:19:11:30:a3:cb dst_mac 02:5b:6b:ea:b6:44 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10325 flower src_mac 02:6b:3f:15:85:36 dst_mac 02:d3:a0:5c:fa:93 vlan_id 1233 vlan_ethtype ipv4 src_ip 53.240.167.103 dst_ip 112.197.146.225 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10326 flower src_mac 02:7d:d1:27:4c:7a dst_mac 02:eb:32:58:a6:5e src_ip 126.30.58.63 dst_ip 75.18.247.172 ip_proto udp src_port 21140 dst_port 30726 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10327 flower src_mac 02:04:ad:36:f4:3f dst_mac 02:6c:92:04:33:c6 src_ip 112.227.216.17 dst_ip 50.201.144.128 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10328 flower src_mac 02:f2:45:46:3d:e9 dst_mac 02:55:dc:c8:18:33 vlan_id 1137 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10329 flower src_mac 02:15:08:06:a1:5b dst_mac 02:20:33:f8:8a:ad vlan_id 1093 vlan_ethtype ip src_ip 39.117.76.110 dst_ip 23.48.90.35 ip_proto tcp src_port 3162 dst_port 1197 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10330 flower src_mac 02:e0:69:17:ef:85 dst_mac 02:8c:6b:8b:90:72 vlan_id 3500 vlan_ethtype ipv4 src_ip 43.148.119.33 dst_ip 113.207.88.249 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10331 flower src_mac 02:bb:31:89:33:26 dst_mac 02:09:ba:eb:06:11 src_ip 40.183.161.240 dst_ip 41.153.109.146 ip_proto tcp src_port 4123 dst_port 46036 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10332 flower src_mac 02:18:74:00:22:6d dst_mac 02:35:53:be:2c:2d src_ip 84.175.97.125 dst_ip 84.176.151.103 ip_proto tcp src_port 3376 dst_port 38720 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10333 flower src_mac 02:f1:b2:73:40:e2 dst_mac 02:ab:33:92:94:bf action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10334 flower src_mac 02:5f:f4:59:0a:f5 dst_mac 02:8e:3a:2e:5e:21 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10335 flower src_mac 02:75:00:ed:94:44 dst_mac 02:71:aa:aa:29:c1 src_ip 31.203.156.183 dst_ip 93.133.219.173 ip_proto udp src_port 39206 dst_port 26344 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10336 flower src_mac 02:93:46:64:c9:15 dst_mac 02:64:7c:2d:25:27 vlan_id 744 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10337 flower src_mac 02:d0:e0:8c:ec:4d dst_mac 02:8e:ec:ad:d6:fe src_ip 45.57.51.226 dst_ip 55.237.185.106 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10338 flower src_mac 02:f9:58:cd:09:4a dst_mac 02:a1:a9:7b:b4:44 action drop && tc filter add dev swp33 ingress protocol ip pref 10339 flower src_mac 02:91:a5:af:0c:e1 dst_mac 02:8e:55:28:f6:ef src_ip 85.225.242.62 dst_ip 49.50.158.167 ip_proto udp src_port 18156 dst_port 52651 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10340 flower src_mac 02:7f:ce:82:38:16 dst_mac 02:62:65:17:3c:79 vlan_id 52 vlan_ethtype ipv4 src_ip 71.23.115.59 dst_ip 35.10.26.16 ip_proto tcp src_port 48621 dst_port 23072 action pass && tc filter add dev swp33 ingress protocol ip pref 10341 flower src_mac 02:07:f7:3d:c7:a7 dst_mac 02:f5:b6:7f:29:20 src_ip 81.47.173.71 dst_ip 54.185.18.80 ip_proto icmp code 105 type 4 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10342 flower src_mac 02:38:a0:d8:5b:82 dst_mac 02:60:3f:41:42:63 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10343 flower src_mac 02:56:fb:4f:e8:93 dst_mac 02:08:5f:c6:1a:14 vlan_id 2493 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10344 flower src_mac 02:97:00:7d:6c:1c dst_mac 02:37:9f:7c:3d:0b action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10345 flower src_mac 02:fd:10:d8:25:e7 dst_mac 02:64:1f:18:7e:3f action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10346 flower src_mac 02:6b:48:d2:9b:8f dst_mac 02:25:f0:20:fb:df action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10347 flower src_mac 02:38:10:9c:bb:c5 dst_mac 02:b4:f7:71:da:b5 vlan_id 2791 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10348 flower src_mac 02:45:06:7d:14:06 dst_mac 02:5f:32:23:b1:96 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10349 flower src_mac 02:75:8e:3a:60:24 dst_mac 02:3e:e8:9c:d0:26 src_ip 74.163.189.222 dst_ip 41.237.102.194 ip_proto tcp src_port 20417 dst_port 59432 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10350 flower src_mac 02:d1:ed:25:fa:04 dst_mac 02:49:b9:bc:07:f5 vlan_id 2408 vlan_ethtype 0x0800 src_ip 28.172.221.115 dst_ip 58.57.222.130 ip_proto udp src_port 29589 dst_port 12153 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10351 flower src_mac 02:b2:bf:a7:e3:7b dst_mac 02:0e:62:2d:31:bd action drop && tc filter add dev swp33 ingress protocol ip pref 10352 flower src_mac 02:36:7c:03:22:8a dst_mac 02:67:e5:fe:e6:ea src_ip 105.4.227.132 dst_ip 58.116.42.23 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10353 flower src_mac 02:2c:e9:02:65:9a dst_mac 02:07:5a:00:1f:72 vlan_id 2167 vlan_ethtype ip src_ip 106.0.182.7 dst_ip 35.129.201.131 ip_proto udp src_port 433 dst_port 44085 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10354 flower src_mac 02:d9:1c:63:92:fe dst_mac 02:ce:a1:ab:92:41 vlan_id 2937 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10355 flower src_mac 02:75:ac:18:54:3e dst_mac 02:dc:c0:bb:08:5f vlan_id 1921 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10356 flower src_mac 02:09:cf:d2:de:1f dst_mac 02:e2:88:0f:7d:ba vlan_id 324 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol ip pref 10357 flower src_mac 02:ae:b2:88:91:c6 dst_mac 02:19:48:cd:47:6d src_ip 33.19.188.235 dst_ip 29.210.79.1 ip_proto tcp src_port 58734 dst_port 53852 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10358 flower src_mac 02:9b:67:48:16:cf dst_mac 02:d9:15:61:dc:3e vlan_id 1104 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10359 flower src_mac 02:65:7d:00:83:50 dst_mac 02:40:5d:92:f4:3c vlan_id 1741 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10360 flower src_mac 02:f5:ef:6c:d6:90 dst_mac 02:4e:3d:57:ee:23 vlan_id 619 vlan_ethtype ip src_ip 102.2.52.138 dst_ip 104.60.18.230 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10361 flower src_mac 02:1a:d0:98:1b:27 dst_mac 02:50:cf:33:13:65 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10362 flower src_mac 02:98:b6:82:02:09 dst_mac 02:74:38:10:fd:6d vlan_id 2938 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10363 flower src_mac 02:49:05:05:3d:e7 dst_mac 02:f6:98:95:4f:c7 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10364 flower src_mac 02:2b:58:cc:f2:7a dst_mac 02:cc:15:3e:a7:54 src_ip 25.250.215.14 dst_ip 86.195.191.245 ip_proto udp src_port 17847 dst_port 43890 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10365 flower src_mac 02:12:08:4f:70:45 dst_mac 02:a9:cb:7b:bc:65 vlan_id 3124 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10366 flower src_mac 02:43:09:00:2f:84 dst_mac 02:0c:9a:31:0b:09 vlan_id 1095 vlan_ethtype ip src_ip 74.139.150.106 dst_ip 110.108.69.80 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10367 flower src_mac 02:6f:87:9b:43:d9 dst_mac 02:ea:26:77:e3:0c vlan_id 1544 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10368 flower src_mac 02:4b:eb:4b:e7:90 dst_mac 02:bc:dd:9a:8d:ab src_ip 38.4.215.61 dst_ip 41.215.144.41 ip_proto icmp code 77 type 18 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10369 flower src_mac 02:d4:eb:e2:c7:67 dst_mac 02:e7:f1:36:4f:98 vlan_id 1773 vlan_ethtype ip src_ip 24.240.38.66 dst_ip 119.168.181.144 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10370 flower src_mac 02:3e:e1:7c:f6:72 dst_mac 02:2f:08:db:c0:b1 src_ip 122.92.203.219 dst_ip 12.234.154.91 ip_proto udp src_port 39498 dst_port 39397 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10371 flower src_mac 02:46:e0:1b:cd:58 dst_mac 02:aa:43:c8:88:a8 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10372 flower src_mac 02:b5:78:ef:33:66 dst_mac 02:15:24:19:24:2b vlan_id 878 vlan_ethtype ipv4 src_ip 73.186.168.175 dst_ip 73.57.20.224 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10373 flower src_mac 02:e5:a3:41:d2:70 dst_mac 02:58:0f:ae:8f:d2 vlan_id 2508 vlan_ethtype ipv4 src_ip 95.159.163.233 dst_ip 100.172.10.49 ip_proto tcp src_port 28825 dst_port 64273 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10374 flower src_mac 02:a5:86:ab:29:29 dst_mac 02:ef:7e:ef:b9:22 vlan_id 3439 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10375 flower src_mac 02:a3:73:3c:82:40 dst_mac 02:04:62:66:2c:58 vlan_id 3364 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10376 flower src_mac 02:fc:43:9b:f5:8e dst_mac 02:24:a0:64:fb:c3 src_ip 91.190.30.181 dst_ip 121.19.238.186 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10377 flower src_mac 02:e3:ad:94:1b:c1 dst_mac 02:63:fb:f8:e9:3d vlan_id 837 vlan_ethtype ipv4 src_ip 101.202.138.78 dst_ip 115.188.223.116 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10378 flower src_mac 02:68:cf:da:c5:f5 dst_mac 02:14:4c:d6:3e:43 vlan_id 3626 vlan_ethtype ip src_ip 106.29.23.246 dst_ip 66.53.240.198 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10379 flower src_mac 02:93:ad:ad:d5:f2 dst_mac 02:82:db:e7:14:60 vlan_id 3811 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10380 flower src_mac 02:f2:f8:7e:b5:5c dst_mac 02:f4:78:e5:23:62 vlan_id 4002 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10381 flower src_mac 02:6c:b2:ed:08:5a dst_mac 02:e3:d8:cc:16:6a vlan_id 1467 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10382 flower src_mac 02:03:d3:1f:62:d6 dst_mac 02:d5:2e:16:0f:30 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10383 flower src_mac 02:f4:71:d7:ce:2c dst_mac 02:72:be:31:32:93 vlan_id 2521 vlan_ethtype ipv4 src_ip 58.252.206.228 dst_ip 107.90.163.11 ip_proto tcp src_port 18556 dst_port 39844 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10384 flower src_mac 02:d0:50:19:82:2a dst_mac 02:9c:03:59:7c:db vlan_id 797 vlan_ethtype 0x0800 src_ip 126.52.156.90 dst_ip 21.82.20.143 ip_proto tcp src_port 16042 dst_port 22757 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10385 flower src_mac 02:b7:9b:d0:62:f9 dst_mac 02:ce:81:e4:9c:5e vlan_id 1562 vlan_ethtype ipv4 src_ip 54.174.128.242 dst_ip 93.47.67.119 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10386 flower src_mac 02:3d:50:0f:3b:25 dst_mac 02:8b:aa:03:47:6d vlan_id 349 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10387 flower src_mac 02:7b:f3:54:0b:72 dst_mac 02:ef:43:4a:cf:d5 src_ip 96.195.113.22 dst_ip 103.150.139.208 ip_proto tcp src_port 34400 dst_port 12453 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10388 flower src_mac 02:70:fa:b5:21:e8 dst_mac 02:b7:53:f0:49:9c action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10389 flower src_mac 02:47:2d:f4:da:1c dst_mac 02:25:df:6a:fb:de action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10390 flower src_mac 02:36:b2:a5:d9:50 dst_mac 02:69:ef:87:aa:49 vlan_id 672 vlan_ethtype 0x0800 src_ip 43.140.132.221 dst_ip 112.245.72.177 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10391 flower src_mac 02:d0:1c:5b:1c:51 dst_mac 02:f0:06:e8:43:57 src_ip 98.167.251.170 dst_ip 97.79.46.27 ip_proto tcp src_port 55214 dst_port 30827 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10392 flower src_mac 02:c4:20:f3:d3:e3 dst_mac 02:0e:54:63:8d:e5 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10393 flower src_mac 02:27:05:2f:87:40 dst_mac 02:7e:7a:a9:97:a0 vlan_id 1277 vlan_ethtype 0x0800 src_ip 51.70.36.18 dst_ip 83.28.18.240 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10394 flower src_mac 02:9e:2a:f3:2e:d3 dst_mac 02:5d:ce:a8:2b:74 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10395 flower src_mac 02:1e:23:46:b6:e9 dst_mac 02:49:b3:2b:57:7f src_ip 78.180.172.27 dst_ip 61.182.97.210 ip_proto tcp src_port 117 dst_port 37862 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10396 flower src_mac 02:01:5a:83:b7:b4 dst_mac 02:a2:13:de:a0:2c vlan_id 2880 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10397 flower src_mac 02:f0:e4:c9:f7:0d dst_mac 02:af:2e:4f:84:2b vlan_id 647 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10398 flower src_mac 02:ac:88:6e:f2:de dst_mac 02:48:8a:a8:68:c9 vlan_id 1175 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10399 flower src_mac 02:e8:21:33:ac:25 dst_mac 02:a0:d9:73:9b:7e vlan_id 1370 vlan_ethtype 0x9300 action drop INFO asyncssh:logging.py:92 [conn=24, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=4] Command: tc filter add dev swp33 ingress protocol 0x9200 pref 10000 flower src_mac 02:08:6c:58:0e:c4 dst_mac 02:df:41:e0:42:3e action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10001 flower src_mac 02:c7:5e:81:6a:0e dst_mac 02:59:0d:cd:1f:f7 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10002 flower src_mac 02:67:94:98:6d:47 dst_mac 02:1e:3d:e6:0e:55 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10003 flower src_mac 02:12:0c:9a:60:94 dst_mac 02:2e:4a:df:18:8a action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10004 flower src_mac 02:81:a5:48:b1:40 dst_mac 02:83:d8:4b:c6:53 vlan_id 2138 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10005 flower src_mac 02:fb:b0:d8:c8:8c dst_mac 02:5f:2e:b2:f1:ff vlan_id 1788 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10006 flower src_mac 02:53:e3:61:5b:a3 dst_mac 02:c6:7c:74:6d:37 src_ip 56.128.43.50 dst_ip 33.209.94.51 ip_proto icmp code 52 type 18 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10007 flower src_mac 02:45:44:38:1a:45 dst_mac 02:29:75:57:67:5f vlan_id 1017 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10008 flower src_mac 02:22:c3:a4:94:c1 dst_mac 02:9d:a2:c5:a9:f1 vlan_id 3433 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol ip pref 10009 flower src_mac 02:fa:2b:c7:8e:92 dst_mac 02:7e:81:ba:10:5b src_ip 101.43.241.143 dst_ip 61.115.184.190 ip_proto tcp src_port 34704 dst_port 5163 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10010 flower src_mac 02:34:47:21:2b:cf dst_mac 02:f7:a3:63:7c:61 vlan_id 3599 vlan_ethtype ipv4 src_ip 43.255.201.177 dst_ip 73.59.13.105 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10011 flower src_mac 02:14:f1:d7:6f:6d dst_mac 02:47:b0:73:53:23 vlan_id 3934 vlan_ethtype ip src_ip 46.117.185.184 dst_ip 39.178.47.96 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10012 flower src_mac 02:d9:91:bb:0f:7f dst_mac 02:c9:20:94:96:a4 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10013 flower src_mac 02:d2:ea:cf:d2:38 dst_mac 02:51:49:71:08:37 vlan_id 3206 vlan_ethtype ip src_ip 103.39.124.235 dst_ip 87.128.165.32 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10014 flower src_mac 02:3f:21:7b:e6:d5 dst_mac 02:6d:d7:6f:49:8d vlan_id 1814 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10015 flower src_mac 02:63:84:67:17:06 dst_mac 02:88:54:b0:92:01 vlan_id 1878 vlan_ethtype ipv4 src_ip 104.233.110.180 dst_ip 64.67.140.52 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10016 flower src_mac 02:e8:9c:30:88:3c dst_mac 02:ce:18:c3:72:0e vlan_id 3230 vlan_ethtype 0x0800 src_ip 59.89.114.105 dst_ip 26.138.232.116 ip_proto tcp src_port 60864 dst_port 34713 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10017 flower src_mac 02:5d:46:24:92:9a dst_mac 02:97:1c:db:c2:6a src_ip 68.24.60.234 dst_ip 11.91.154.159 ip_proto icmp code 191 type 0 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10018 flower src_mac 02:64:3e:31:e4:64 dst_mac 02:4e:a7:a6:7c:be action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10019 flower src_mac 02:c3:bb:f8:8b:18 dst_mac 02:31:c1:fe:1b:eb action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10020 flower src_mac 02:2a:88:d3:de:58 dst_mac 02:4b:d5:0b:88:30 vlan_id 3416 vlan_ethtype 0x0800 src_ip 11.149.53.24 dst_ip 93.175.184.216 ip_proto udp src_port 9544 dst_port 14557 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10021 flower src_mac 02:0d:e9:cd:23:40 dst_mac 02:5c:1d:1d:7a:33 src_ip 23.167.16.140 dst_ip 95.94.157.18 ip_proto udp src_port 9663 dst_port 20891 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10022 flower src_mac 02:34:c3:65:20:16 dst_mac 02:23:e4:f5:36:2f vlan_id 1984 vlan_ethtype ipv4 src_ip 39.17.113.9 dst_ip 17.56.202.204 ip_proto udp src_port 25327 dst_port 64678 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10023 flower src_mac 02:e7:75:34:54:3e dst_mac 02:3c:51:ac:fc:3b src_ip 63.227.56.146 dst_ip 32.248.232.206 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10024 flower src_mac 02:eb:d6:d7:03:10 dst_mac 02:c9:d3:93:0e:2b vlan_id 2421 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10025 flower src_mac 02:8e:a1:a6:4f:58 dst_mac 02:a6:6a:b5:8d:fa action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10026 flower src_mac 02:5f:ee:4f:88:5c dst_mac 02:32:f4:65:a7:1e src_ip 82.184.162.104 dst_ip 62.107.41.94 ip_proto udp src_port 41517 dst_port 18829 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10027 flower src_mac 02:a8:90:ec:ed:0a dst_mac 02:93:4b:a2:c1:c5 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10028 flower src_mac 02:ca:d2:e3:7a:fd dst_mac 02:67:dc:d4:27:cb vlan_id 611 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10029 flower src_mac 02:34:a4:23:0d:08 dst_mac 02:08:0e:be:d8:ea vlan_id 2641 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10030 flower src_mac 02:66:45:76:13:e8 dst_mac 02:66:bd:55:eb:24 vlan_id 4023 vlan_ethtype ip src_ip 26.175.34.57 dst_ip 84.47.89.73 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10031 flower src_mac 02:5b:dc:d2:fd:dc dst_mac 02:b4:29:5b:fa:5d vlan_id 392 vlan_ethtype 0x0800 src_ip 12.130.199.217 dst_ip 23.220.251.50 ip_proto udp src_port 8718 dst_port 10101 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10032 flower src_mac 02:18:36:6d:98:fe dst_mac 02:a1:91:b7:74:ff src_ip 35.237.78.148 dst_ip 85.59.123.232 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10033 flower src_mac 02:54:0a:0a:dd:d5 dst_mac 02:3d:98:e4:91:b6 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10034 flower src_mac 02:4e:05:74:06:2b dst_mac 02:c5:73:cf:e5:0a src_ip 63.244.185.225 dst_ip 64.143.71.86 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10035 flower src_mac 02:ec:19:4f:22:2b dst_mac 02:06:7e:bb:8b:6a action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10036 flower src_mac 02:44:f3:3d:78:6f dst_mac 02:14:0c:d9:1d:d6 src_ip 27.53.73.228 dst_ip 48.175.118.49 ip_proto tcp src_port 48356 dst_port 18041 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10037 flower src_mac 02:e4:63:18:c8:02 dst_mac 02:8d:67:4f:0b:da src_ip 77.16.138.102 dst_ip 77.120.67.128 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10038 flower src_mac 02:22:a4:c4:c0:3f dst_mac 02:d0:76:cc:8d:af vlan_id 1783 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10039 flower src_mac 02:df:0b:76:bb:6e dst_mac 02:f0:ff:4c:38:ea action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10040 flower src_mac 02:f3:01:74:61:86 dst_mac 02:f1:4e:15:aa:8b action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10041 flower src_mac 02:76:b7:fb:22:8f dst_mac 02:88:e6:53:09:85 vlan_id 3049 vlan_ethtype ipv4 src_ip 105.229.68.178 dst_ip 25.48.162.237 ip_proto udp src_port 10542 dst_port 35103 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10042 flower src_mac 02:2e:e7:97:bb:42 dst_mac 02:d8:64:d0:1f:f2 vlan_id 189 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol ip pref 10043 flower src_mac 02:14:25:91:7a:99 dst_mac 02:ba:f1:6b:6b:a2 src_ip 89.92.39.216 dst_ip 74.154.246.194 ip_proto icmp code 211 type 3 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10044 flower src_mac 02:5f:ff:0f:d8:51 dst_mac 02:b4:10:e4:e9:42 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10045 flower src_mac 02:ad:e2:a7:62:f3 dst_mac 02:d4:40:0c:20:17 vlan_id 3742 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10046 flower src_mac 02:12:3c:ce:4b:bf dst_mac 02:a1:91:40:e5:e9 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10047 flower src_mac 02:e1:fa:42:1c:6e dst_mac 02:d8:fd:7f:31:5d src_ip 39.117.186.132 dst_ip 75.170.72.221 ip_proto tcp src_port 1995 dst_port 63636 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10048 flower src_mac 02:ea:09:36:08:a8 dst_mac 02:84:fb:d9:bc:9a vlan_id 2696 vlan_ethtype ipv4 src_ip 106.214.130.205 dst_ip 120.87.189.197 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10049 flower src_mac 02:99:55:21:eb:ef dst_mac 02:3c:ba:43:fd:4e vlan_id 904 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10050 flower src_mac 02:4f:2d:77:b3:b4 dst_mac 02:90:db:02:7f:e1 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10051 flower src_mac 02:7d:4c:c7:38:57 dst_mac 02:86:ad:0d:df:b8 vlan_id 369 vlan_ethtype 0x0800 src_ip 78.105.242.216 dst_ip 89.26.76.31 ip_proto tcp src_port 6226 dst_port 8781 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10052 flower src_mac 02:41:e9:bf:38:40 dst_mac 02:6f:79:bd:ed:15 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10053 flower src_mac 02:42:36:36:45:57 dst_mac 02:48:d1:e3:70:41 action trap && tc filter add dev swp33 ingress protocol ip pref 10054 flower src_mac 02:62:b4:0d:9d:41 dst_mac 02:c5:fb:93:28:85 src_ip 116.10.12.207 dst_ip 84.133.35.20 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10055 flower src_mac 02:7a:91:25:80:2b dst_mac 02:50:a5:9f:8e:54 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10056 flower src_mac 02:be:20:8d:26:11 dst_mac 02:b4:5f:78:fe:75 vlan_id 2344 vlan_ethtype ip src_ip 59.64.91.57 dst_ip 121.104.52.54 action trap && tc filter add dev swp33 ingress protocol ip pref 10057 flower src_mac 02:8d:a5:b4:8e:c0 dst_mac 02:a9:12:24:ea:41 src_ip 107.249.219.230 dst_ip 81.92.205.40 ip_proto tcp src_port 20524 dst_port 48934 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10058 flower src_mac 02:6b:40:04:35:9c dst_mac 02:e5:e3:4a:f0:68 src_ip 14.41.224.145 dst_ip 86.204.4.23 ip_proto udp src_port 57345 dst_port 56566 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10059 flower src_mac 02:00:f2:56:c5:3d dst_mac 02:2f:d4:ee:6a:9a vlan_id 2683 vlan_ethtype ipv4 src_ip 80.216.120.125 dst_ip 28.144.180.226 ip_proto udp src_port 21256 dst_port 44470 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10060 flower src_mac 02:59:b5:c7:fc:f6 dst_mac 02:bf:dd:de:5b:cf vlan_id 1190 vlan_ethtype ipv4 src_ip 121.148.200.176 dst_ip 106.218.177.146 ip_proto tcp src_port 45834 dst_port 15904 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10061 flower src_mac 02:88:61:38:51:37 dst_mac 02:ec:64:44:66:03 vlan_id 117 vlan_ethtype ipv4 src_ip 85.199.145.35 dst_ip 101.53.201.201 ip_proto tcp src_port 55903 dst_port 36158 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10062 flower src_mac 02:79:bc:13:56:48 dst_mac 02:80:c7:76:82:34 vlan_id 1019 vlan_ethtype ip src_ip 111.167.203.215 dst_ip 112.184.5.215 ip_proto tcp src_port 2154 dst_port 48735 action drop && tc filter add dev swp33 ingress protocol ip pref 10063 flower src_mac 02:d1:fb:7d:65:a3 dst_mac 02:51:56:9b:16:b7 src_ip 93.250.27.162 dst_ip 59.36.233.183 ip_proto udp src_port 13227 dst_port 64546 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10064 flower src_mac 02:a4:b7:b3:cd:ec dst_mac 02:93:90:81:07:40 vlan_id 3865 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10065 flower src_mac 02:d4:e1:d5:8b:79 dst_mac 02:d4:cb:e2:0f:1a src_ip 57.113.61.80 dst_ip 16.242.174.165 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10066 flower src_mac 02:16:8f:03:fe:ce dst_mac 02:92:e4:2c:f2:41 vlan_id 2438 vlan_ethtype 0x0800 src_ip 125.47.116.195 dst_ip 48.202.142.13 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10067 flower src_mac 02:67:51:e8:4d:8d dst_mac 02:aa:d7:87:72:2b vlan_id 502 vlan_ethtype ip src_ip 29.17.211.165 dst_ip 126.205.165.191 ip_proto tcp src_port 35989 dst_port 45928 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10068 flower src_mac 02:0f:79:11:6b:a0 dst_mac 02:ff:04:75:d0:b0 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10069 flower src_mac 02:29:9b:ae:8d:ab dst_mac 02:2e:57:a9:c8:5f src_ip 53.128.98.222 dst_ip 110.130.38.237 ip_proto tcp src_port 52796 dst_port 7526 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10070 flower src_mac 02:97:48:b9:48:5a dst_mac 02:b0:7a:8c:b2:63 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10071 flower src_mac 02:72:e2:a1:64:77 dst_mac 02:93:be:d8:29:ec vlan_id 2600 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10072 flower src_mac 02:19:06:e2:47:50 dst_mac 02:9a:db:b4:dc:98 src_ip 91.154.80.27 dst_ip 86.212.13.230 ip_proto tcp src_port 55563 dst_port 38300 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10073 flower src_mac 02:fa:44:cb:f4:75 dst_mac 02:02:03:39:45:a1 src_ip 116.54.209.97 dst_ip 111.66.245.51 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10074 flower src_mac 02:27:1c:27:72:c9 dst_mac 02:18:41:8b:6b:11 vlan_id 395 vlan_ethtype ip src_ip 25.118.222.245 dst_ip 79.147.20.89 ip_proto udp src_port 46105 dst_port 63732 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10075 flower src_mac 02:e6:e3:94:d9:67 dst_mac 02:bf:63:0a:57:1c action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10076 flower src_mac 02:07:f3:b2:93:1a dst_mac 02:fc:3c:f8:b7:dc vlan_id 2754 vlan_ethtype ipv4 src_ip 76.124.217.12 dst_ip 112.243.73.34 ip_proto tcp src_port 45911 dst_port 17716 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10077 flower src_mac 02:9f:f3:f8:f3:aa dst_mac 02:b7:2f:14:c9:69 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10078 flower src_mac 02:b8:fd:09:a7:9c dst_mac 02:57:8d:2e:1a:e0 src_ip 91.139.198.207 dst_ip 26.87.124.138 ip_proto tcp src_port 17807 dst_port 51841 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10079 flower src_mac 02:1b:a8:f5:59:2d dst_mac 02:c5:7c:ef:eb:ee vlan_id 3664 vlan_ethtype 0x0800 src_ip 46.75.135.170 dst_ip 44.44.131.136 ip_proto udp src_port 36756 dst_port 1856 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10080 flower src_mac 02:c2:79:c4:ad:6c dst_mac 02:fb:48:aa:30:36 src_ip 23.127.107.31 dst_ip 84.179.95.161 ip_proto udp src_port 7521 dst_port 17313 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10081 flower src_mac 02:d7:f8:c1:0d:3f dst_mac 02:54:f8:29:ca:9b action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10082 flower src_mac 02:81:49:da:29:9b dst_mac 02:45:b0:9d:e5:5b action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10083 flower src_mac 02:80:65:0b:ba:7d dst_mac 02:75:15:e6:25:2c vlan_id 549 vlan_ethtype ip src_ip 38.166.91.61 dst_ip 82.96.225.138 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10084 flower src_mac 02:e7:e1:06:fe:43 dst_mac 02:f2:c8:39:d0:1a src_ip 82.62.26.28 dst_ip 23.120.100.97 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10085 flower src_mac 02:da:e8:2f:cf:e2 dst_mac 02:08:19:0a:ef:49 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10086 flower src_mac 02:a1:80:dd:0a:84 dst_mac 02:bf:84:9a:a8:1e action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10087 flower src_mac 02:5c:c2:1a:cd:ae dst_mac 02:15:44:be:ed:a9 vlan_id 3810 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10088 flower src_mac 02:a3:e7:cf:f2:5c dst_mac 02:14:93:a2:f9:31 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10089 flower src_mac 02:11:a1:f1:e8:7f dst_mac 02:ad:27:d3:b5:56 vlan_id 542 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10090 flower src_mac 02:a4:1c:79:95:ea dst_mac 02:2f:a9:0d:0b:dd vlan_id 105 vlan_ethtype ip src_ip 52.78.232.234 dst_ip 13.130.66.163 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10091 flower src_mac 02:6c:13:5e:18:d7 dst_mac 02:4d:e5:a2:76:df action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10092 flower src_mac 02:ea:90:d2:b7:6c dst_mac 02:dd:5e:6a:e6:75 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10093 flower src_mac 02:00:f8:77:3b:80 dst_mac 02:e4:eb:73:7c:a5 vlan_id 2441 vlan_ethtype 0x0800 src_ip 94.3.43.207 dst_ip 75.136.208.198 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10094 flower src_mac 02:ef:00:b4:a4:a9 dst_mac 02:7a:89:a1:8c:76 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10095 flower src_mac 02:ba:36:a9:28:55 dst_mac 02:82:52:8d:52:ff src_ip 85.227.105.110 dst_ip 30.250.119.151 ip_proto icmp code 105 type 4 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10096 flower src_mac 02:64:52:47:ca:71 dst_mac 02:4a:bb:51:88:8e action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10097 flower src_mac 02:38:02:df:7e:d5 dst_mac 02:33:00:97:fe:0b action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10098 flower src_mac 02:9e:ee:d7:73:fc dst_mac 02:90:f3:03:14:36 vlan_id 2578 vlan_ethtype ip src_ip 91.255.102.142 dst_ip 51.73.135.230 ip_proto tcp src_port 33131 dst_port 13334 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10099 flower src_mac 02:10:0c:7a:dd:99 dst_mac 02:e4:77:fd:b9:c1 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10100 flower src_mac 02:57:95:4e:21:2c dst_mac 02:a3:ee:c7:09:c7 vlan_id 2221 vlan_ethtype ip src_ip 107.174.156.79 dst_ip 76.221.153.66 ip_proto udp src_port 49301 dst_port 46457 action pass && tc filter add dev swp33 ingress protocol ip pref 10101 flower src_mac 02:f1:f9:30:ad:26 dst_mac 02:8c:bb:61:33:8e src_ip 115.250.106.62 dst_ip 100.80.199.64 ip_proto icmp code 200 type 0 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10102 flower src_mac 02:71:cb:83:2f:fc dst_mac 02:7f:1c:26:b0:c7 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10103 flower src_mac 02:25:2f:5e:9d:6b dst_mac 02:7b:54:47:0a:c4 vlan_id 1009 vlan_ethtype 0x0800 src_ip 73.82.33.173 dst_ip 25.213.190.115 ip_proto tcp src_port 45472 dst_port 6346 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10104 flower src_mac 02:00:50:b3:8e:26 dst_mac 02:68:22:63:3e:cb action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10105 flower src_mac 02:8e:ed:95:46:a2 dst_mac 02:dc:c0:67:ee:1b action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10106 flower src_mac 02:59:65:8f:58:3a dst_mac 02:33:8d:51:67:cf src_ip 108.255.83.230 dst_ip 17.42.205.98 ip_proto udp src_port 56080 dst_port 35200 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10107 flower src_mac 02:e3:67:22:01:27 dst_mac 02:ee:ae:76:e3:bd vlan_id 997 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10108 flower src_mac 02:35:a7:55:6d:25 dst_mac 02:de:26:25:5f:23 vlan_id 3340 vlan_ethtype ip src_ip 64.82.187.114 dst_ip 51.66.82.143 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10109 flower src_mac 02:d9:70:8d:56:4a dst_mac 02:d3:34:be:1e:6d action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10110 flower src_mac 02:95:7d:66:01:60 dst_mac 02:ac:10:6c:40:20 vlan_id 2085 vlan_ethtype 0x0800 src_ip 75.70.172.69 dst_ip 35.76.218.87 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10111 flower src_mac 02:b3:eb:38:33:a2 dst_mac 02:66:7c:20:4c:e9 src_ip 125.241.33.118 dst_ip 64.229.103.30 ip_proto tcp src_port 691 dst_port 40440 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10112 flower src_mac 02:9d:0f:31:b3:25 dst_mac 02:6c:00:66:ed:b3 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10113 flower src_mac 02:fa:5c:7d:4d:ce dst_mac 02:88:2f:23:71:a5 vlan_id 2959 vlan_ethtype 0x0800 src_ip 68.148.175.168 dst_ip 119.78.0.132 ip_proto tcp src_port 57825 dst_port 39056 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10114 flower src_mac 02:57:88:46:78:4c dst_mac 02:76:40:9c:7d:89 vlan_id 972 vlan_ethtype 0x0800 src_ip 56.150.226.249 dst_ip 61.12.188.9 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10115 flower src_mac 02:e2:a8:30:9b:9a dst_mac 02:44:4c:b8:e0:87 src_ip 46.91.237.173 dst_ip 62.26.1.249 ip_proto icmp code 7 type 14 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10116 flower src_mac 02:e5:92:58:43:e4 dst_mac 02:41:16:a9:ff:88 src_ip 73.51.13.89 dst_ip 29.182.35.145 ip_proto icmp code 19 type 3 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10117 flower src_mac 02:af:0a:fa:43:a5 dst_mac 02:75:61:09:2a:41 vlan_id 3252 vlan_ethtype ip src_ip 22.206.141.94 dst_ip 58.212.15.221 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10118 flower src_mac 02:09:06:db:40:74 dst_mac 02:c9:d2:12:c0:39 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10119 flower src_mac 02:69:97:46:b7:8e dst_mac 02:ce:0d:3d:ab:2d vlan_id 1779 vlan_ethtype 0x0800 src_ip 42.92.220.138 dst_ip 94.228.149.18 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10120 flower src_mac 02:fc:47:e8:c5:ab dst_mac 02:3c:d3:4c:58:13 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10121 flower src_mac 02:ee:96:22:0f:1b dst_mac 02:09:bc:66:35:0c vlan_id 3717 vlan_ethtype ip src_ip 28.248.174.225 dst_ip 11.193.180.156 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10122 flower src_mac 02:b0:e4:a9:7b:51 dst_mac 02:01:01:85:0a:ac action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10123 flower src_mac 02:b8:b5:f0:e5:79 dst_mac 02:47:df:c3:ee:54 vlan_id 693 vlan_ethtype 0x0800 src_ip 119.83.69.97 dst_ip 19.203.217.46 ip_proto tcp src_port 58318 dst_port 42599 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10124 flower src_mac 02:1a:64:90:6a:2c dst_mac 02:75:1e:7f:c0:22 vlan_id 579 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10125 flower src_mac 02:46:be:7c:86:c1 dst_mac 02:0e:6d:7f:b5:54 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10126 flower src_mac 02:e7:45:eb:8e:52 dst_mac 02:fc:93:c9:7a:3c vlan_id 4008 vlan_ethtype ip src_ip 106.218.149.21 dst_ip 82.211.134.54 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10127 flower src_mac 02:ad:ca:70:f1:d2 dst_mac 02:7c:4b:e5:02:0d src_ip 99.25.72.56 dst_ip 58.64.104.173 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10128 flower src_mac 02:09:1d:6c:41:7b dst_mac 02:7e:c8:17:e5:56 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10129 flower src_mac 02:a4:b8:0a:d4:26 dst_mac 02:35:bc:46:6f:2b vlan_id 2959 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10130 flower src_mac 02:cf:dd:95:37:e0 dst_mac 02:a6:83:4f:93:5a src_ip 82.28.89.189 dst_ip 40.68.9.64 ip_proto tcp src_port 42464 dst_port 54233 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10131 flower src_mac 02:fa:ae:c3:d6:0b dst_mac 02:90:d1:50:1b:89 vlan_id 314 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10132 flower src_mac 02:e2:d8:7f:d0:30 dst_mac 02:36:24:a1:83:40 vlan_id 2039 vlan_ethtype ip src_ip 15.239.173.169 dst_ip 13.220.53.50 ip_proto tcp src_port 48813 dst_port 18244 action pass && tc filter add dev swp33 ingress protocol ip pref 10133 flower src_mac 02:b7:58:74:ad:fd dst_mac 02:2d:ad:28:96:eb src_ip 106.17.202.197 dst_ip 113.87.72.200 action pass && tc filter add dev swp33 ingress protocol ip pref 10134 flower src_mac 02:cc:5e:c7:0a:16 dst_mac 02:a9:fb:99:20:d0 src_ip 41.182.42.28 dst_ip 14.61.180.157 ip_proto tcp src_port 15838 dst_port 20649 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10135 flower src_mac 02:30:59:28:f5:eb dst_mac 02:9c:4c:48:48:5a vlan_id 2041 vlan_ethtype ip src_ip 67.47.65.109 dst_ip 99.13.68.226 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10136 flower src_mac 02:00:be:4e:e2:e9 dst_mac 02:d8:13:aa:de:ba vlan_id 2925 vlan_ethtype ipv4 src_ip 105.43.223.133 dst_ip 62.162.89.246 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10137 flower src_mac 02:59:11:2f:c3:8a dst_mac 02:d6:1c:a0:63:1f src_ip 36.5.180.213 dst_ip 24.90.215.123 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10138 flower src_mac 02:65:92:ac:80:99 dst_mac 02:04:76:c0:99:88 vlan_id 3188 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10139 flower src_mac 02:0f:0b:b2:8e:08 dst_mac 02:57:2e:36:67:00 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10140 flower src_mac 02:d7:5b:df:42:5d dst_mac 02:55:d5:96:1b:66 vlan_id 1739 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10141 flower src_mac 02:c3:06:46:f1:12 dst_mac 02:16:10:96:24:49 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10142 flower src_mac 02:68:d0:f3:99:a6 dst_mac 02:1d:bd:3c:5f:aa vlan_id 1495 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10143 flower src_mac 02:a5:fc:2f:5e:9f dst_mac 02:9d:90:cb:18:69 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10144 flower src_mac 02:3c:d5:35:61:3e dst_mac 02:2a:1e:bf:cf:8b vlan_id 49 vlan_ethtype 0x0800 src_ip 41.252.87.78 dst_ip 12.179.211.161 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10145 flower src_mac 02:af:f1:4b:05:ad dst_mac 02:6e:8c:91:2e:78 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10146 flower src_mac 02:9f:78:0c:47:0d dst_mac 02:f1:78:dc:dd:b6 vlan_id 1323 vlan_ethtype ipv4 src_ip 98.215.18.210 dst_ip 38.77.20.121 ip_proto udp src_port 44884 dst_port 39917 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10147 flower src_mac 02:07:d4:7b:22:5b dst_mac 02:93:8c:c0:4f:5e action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10148 flower src_mac 02:b2:87:f8:64:d6 dst_mac 02:da:23:dc:77:cb src_ip 112.102.15.245 dst_ip 74.166.0.197 ip_proto tcp src_port 53110 dst_port 50874 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10149 flower src_mac 02:aa:6b:35:96:26 dst_mac 02:51:b3:ed:40:e8 src_ip 17.111.182.102 dst_ip 72.57.40.43 ip_proto tcp src_port 13113 dst_port 42988 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10150 flower src_mac 02:22:7c:d8:96:5c dst_mac 02:ff:12:65:74:f8 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10151 flower src_mac 02:6c:ce:f0:26:ce dst_mac 02:9a:5d:2e:1e:6e action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10152 flower src_mac 02:5f:5e:df:fc:e8 dst_mac 02:62:f3:b1:2f:2d vlan_id 2294 vlan_ethtype 0x0800 src_ip 33.107.210.64 dst_ip 97.168.251.137 ip_proto udp src_port 46862 dst_port 10849 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10153 flower src_mac 02:3d:90:3b:3d:3b dst_mac 02:ca:8e:fe:1b:24 src_ip 86.37.135.159 dst_ip 92.253.248.193 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10154 flower src_mac 02:7a:fc:09:50:c3 dst_mac 02:34:68:d8:fc:dd vlan_id 3218 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10155 flower src_mac 02:8e:b7:0c:4d:98 dst_mac 02:9b:f5:d5:83:f3 vlan_id 3449 vlan_ethtype 0x0800 src_ip 69.4.229.28 dst_ip 82.85.188.212 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10156 flower src_mac 02:af:24:ac:f1:02 dst_mac 02:bc:c4:d7:2c:b6 vlan_id 2628 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10157 flower src_mac 02:a2:7e:5e:69:f6 dst_mac 02:20:fd:c2:23:0a src_ip 112.9.205.128 dst_ip 45.236.215.53 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10158 flower src_mac 02:ce:a1:81:23:3d dst_mac 02:1d:79:4f:8c:45 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10159 flower src_mac 02:3a:00:d7:41:61 dst_mac 02:9c:46:62:a4:64 action trap && tc filter add dev swp33 ingress protocol ip pref 10160 flower src_mac 02:73:4a:83:b3:f9 dst_mac 02:f3:5a:42:df:91 src_ip 91.79.63.18 dst_ip 64.208.5.37 ip_proto tcp src_port 57045 dst_port 1667 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10161 flower src_mac 02:38:86:29:f4:d4 dst_mac 02:01:33:a8:17:87 src_ip 47.221.105.33 dst_ip 65.244.193.176 ip_proto tcp src_port 55866 dst_port 51119 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10162 flower src_mac 02:e4:4d:18:35:03 dst_mac 02:5e:85:7c:b7:7c vlan_id 512 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10163 flower src_mac 02:68:a4:1a:f3:a2 dst_mac 02:87:1a:c9:7b:e2 vlan_id 2442 vlan_ethtype 0x0800 src_ip 93.71.77.133 dst_ip 78.202.166.166 ip_proto udp src_port 35191 dst_port 14861 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10164 flower src_mac 02:26:90:80:17:61 dst_mac 02:5b:66:3f:0c:b2 vlan_id 3531 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10165 flower src_mac 02:c6:6e:2e:b6:d1 dst_mac 02:fd:07:31:f1:77 vlan_id 212 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10166 flower src_mac 02:86:14:53:3a:73 dst_mac 02:da:16:9e:66:46 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10167 flower src_mac 02:02:d7:72:71:62 dst_mac 02:ec:1f:6a:f8:d5 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10168 flower src_mac 02:eb:86:11:43:fd dst_mac 02:c8:0a:d2:17:3c src_ip 117.172.152.167 dst_ip 93.176.206.73 ip_proto udp src_port 1864 dst_port 28186 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10169 flower src_mac 02:e2:10:39:86:2f dst_mac 02:60:98:6a:ac:0d action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10170 flower src_mac 02:c2:7c:64:01:8d dst_mac 02:86:ac:d5:7d:31 vlan_id 3109 vlan_ethtype ipv4 src_ip 86.247.105.161 dst_ip 83.250.184.245 action pass && tc filter add dev swp33 ingress protocol ip pref 10171 flower src_mac 02:44:14:11:7b:d0 dst_mac 02:76:ab:df:4f:97 src_ip 103.62.1.57 dst_ip 45.172.158.129 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10172 flower src_mac 02:c0:f8:1d:6e:e6 dst_mac 02:01:e5:89:12:f2 vlan_id 3118 vlan_ethtype 0x0800 src_ip 94.112.130.225 dst_ip 46.143.112.152 ip_proto tcp src_port 32410 dst_port 40160 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10173 flower src_mac 02:59:30:40:76:f0 dst_mac 02:33:36:ba:d2:09 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10174 flower src_mac 02:a9:f2:61:db:e1 dst_mac 02:c1:65:92:e5:67 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10175 flower src_mac 02:93:e0:71:fd:93 dst_mac 02:07:b9:a9:1c:64 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10176 flower src_mac 02:6f:46:c8:b3:c4 dst_mac 02:69:c3:b0:23:5a src_ip 71.102.39.227 dst_ip 98.194.34.29 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10177 flower src_mac 02:89:c5:a2:a3:fe dst_mac 02:40:09:36:19:d2 vlan_id 2509 vlan_ethtype 0x0800 src_ip 40.148.107.107 dst_ip 86.119.156.228 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10178 flower src_mac 02:f3:fe:87:88:e8 dst_mac 02:d9:7d:90:a5:a6 vlan_id 2339 vlan_ethtype ip src_ip 27.181.167.86 dst_ip 62.32.232.232 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10179 flower src_mac 02:91:72:db:6a:b3 dst_mac 02:7b:c1:5d:91:4f action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10180 flower src_mac 02:af:9c:4f:3f:b8 dst_mac 02:ab:f6:29:ca:21 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10181 flower src_mac 02:01:b2:dd:a7:df dst_mac 02:dd:46:0a:9b:0a action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10182 flower src_mac 02:d3:fe:88:53:5a dst_mac 02:40:c3:6b:4b:61 vlan_id 1604 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10183 flower src_mac 02:7b:ea:34:3a:25 dst_mac 02:80:c0:e1:8f:82 vlan_id 352 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol ip pref 10184 flower src_mac 02:43:31:03:98:57 dst_mac 02:28:3e:c3:eb:b7 src_ip 15.89.60.171 dst_ip 111.54.105.166 ip_proto icmp code 191 type 11 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10185 flower src_mac 02:17:86:0f:13:1e dst_mac 02:10:4c:5a:ef:57 src_ip 62.116.91.96 dst_ip 30.214.120.228 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10186 flower src_mac 02:64:7c:3e:7d:c0 dst_mac 02:8a:d4:b4:b1:95 vlan_id 2914 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol ip pref 10187 flower src_mac 02:a7:6b:d1:8e:2b dst_mac 02:cf:39:18:e5:f0 src_ip 51.34.32.190 dst_ip 24.52.95.54 ip_proto tcp src_port 33171 dst_port 33664 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10188 flower src_mac 02:70:4d:f6:f6:ed dst_mac 02:40:a0:e0:4a:03 vlan_id 3936 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10189 flower src_mac 02:92:1a:62:05:b0 dst_mac 02:53:22:d2:e4:63 vlan_id 1883 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10190 flower src_mac 02:c2:75:e7:39:e7 dst_mac 02:f9:9e:e4:6c:44 vlan_id 939 vlan_ethtype 0x0800 src_ip 65.82.65.249 dst_ip 49.198.4.123 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10191 flower src_mac 02:f0:4e:2d:a4:33 dst_mac 02:34:15:50:e4:e4 src_ip 27.120.10.70 dst_ip 19.194.2.194 ip_proto udp src_port 42448 dst_port 36345 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10192 flower src_mac 02:8a:a3:9b:92:06 dst_mac 02:e5:c0:21:db:b5 vlan_id 3992 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10193 flower src_mac 02:de:0f:1b:92:7b dst_mac 02:ca:6c:ef:5a:2e src_ip 104.119.1.160 dst_ip 55.161.74.125 ip_proto icmp code 97 type 18 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10194 flower src_mac 02:64:99:5b:38:49 dst_mac 02:80:ce:18:85:4c vlan_id 1186 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10195 flower src_mac 02:7e:10:e0:cc:37 dst_mac 02:fd:a9:2d:fd:bc vlan_id 1538 vlan_ethtype ipv4 src_ip 74.117.122.218 dst_ip 72.37.87.62 ip_proto tcp src_port 8124 dst_port 42967 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10196 flower src_mac 02:c9:c9:53:1a:fa dst_mac 02:ce:61:8b:6a:68 vlan_id 3038 vlan_ethtype ip src_ip 101.42.0.151 dst_ip 24.201.81.110 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10197 flower src_mac 02:78:e1:66:f2:cc dst_mac 02:8d:58:3a:ae:96 vlan_id 59 vlan_ethtype ipv4 src_ip 88.152.37.124 dst_ip 19.198.150.125 ip_proto tcp src_port 3084 dst_port 5001 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10198 flower src_mac 02:6f:65:f1:54:42 dst_mac 02:59:be:f2:1a:14 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10199 flower src_mac 02:a9:ad:33:3b:a1 dst_mac 02:90:57:0e:ce:64 vlan_id 2198 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10200 flower src_mac 02:bf:3c:41:30:ab dst_mac 02:c6:28:f0:f7:7c src_ip 37.88.15.84 dst_ip 114.180.172.17 ip_proto tcp src_port 49026 dst_port 479 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10201 flower src_mac 02:c9:be:29:67:c4 dst_mac 02:d5:a9:a8:36:49 vlan_id 1769 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10202 flower src_mac 02:32:7b:1c:a6:e3 dst_mac 02:f7:a5:9e:ae:a8 vlan_id 949 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10203 flower src_mac 02:14:2d:db:57:ca dst_mac 02:13:aa:5a:a1:9d vlan_id 3842 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10204 flower src_mac 02:af:a6:2e:0f:ca dst_mac 02:cc:50:59:dd:f9 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10205 flower src_mac 02:33:57:c1:a4:be dst_mac 02:33:0e:be:9e:ab vlan_id 2874 vlan_ethtype ipv4 src_ip 54.153.48.46 dst_ip 23.254.134.124 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10206 flower src_mac 02:9c:09:f8:8c:76 dst_mac 02:6e:a1:f8:f4:4e vlan_id 1803 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10207 flower src_mac 02:e8:3f:f6:db:cd dst_mac 02:2d:65:76:39:4d action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10208 flower src_mac 02:54:52:cc:bc:0e dst_mac 02:82:ee:03:08:0e vlan_id 414 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10209 flower src_mac 02:cc:fc:7b:dd:7d dst_mac 02:2f:68:b5:a9:87 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10210 flower src_mac 02:5b:77:6b:5d:03 dst_mac 02:3a:6e:ef:7f:2c src_ip 74.143.73.237 dst_ip 112.76.249.202 ip_proto icmp code 249 type 16 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10211 flower src_mac 02:7f:50:da:93:aa dst_mac 02:44:14:70:31:fd vlan_id 1989 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol ip pref 10212 flower src_mac 02:4c:e6:33:16:3f dst_mac 02:04:08:0c:94:ba src_ip 73.113.232.61 dst_ip 93.59.78.37 ip_proto udp src_port 18632 dst_port 2206 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10213 flower src_mac 02:b5:20:46:88:21 dst_mac 02:2f:f9:7a:40:0d action drop && tc filter add dev swp33 ingress protocol ip pref 10214 flower src_mac 02:1c:c3:a6:e7:8f dst_mac 02:6c:47:99:5a:85 src_ip 83.255.171.158 dst_ip 22.147.107.51 ip_proto tcp src_port 4477 dst_port 11103 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10215 flower src_mac 02:bc:8d:97:28:7c dst_mac 02:22:10:70:e2:4c src_ip 120.44.246.193 dst_ip 19.187.43.44 ip_proto udp src_port 7490 dst_port 19660 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10216 flower src_mac 02:2f:9b:ff:8f:49 dst_mac 02:08:90:cf:1a:0a vlan_id 430 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10217 flower src_mac 02:be:69:fe:ab:4d dst_mac 02:9e:74:5f:2c:43 vlan_id 3455 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10218 flower src_mac 02:16:89:34:b8:8b dst_mac 02:71:d3:7b:41:11 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10219 flower src_mac 02:55:64:1f:7b:46 dst_mac 02:19:a5:52:b3:0d action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10220 flower src_mac 02:72:3f:8b:70:5f dst_mac 02:c6:4f:ae:7f:aa vlan_id 1098 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10221 flower src_mac 02:f0:e9:2f:e1:77 dst_mac 02:18:ea:66:41:e5 src_ip 73.103.176.38 dst_ip 114.5.59.82 ip_proto tcp src_port 15518 dst_port 48019 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10222 flower src_mac 02:65:75:ab:6b:ee dst_mac 02:12:15:6d:32:ee action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10223 flower src_mac 02:b5:f5:ff:f5:c7 dst_mac 02:cd:d5:29:45:41 vlan_id 1595 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10224 flower src_mac 02:34:04:2a:e2:ac dst_mac 02:0a:53:17:7e:b9 src_ip 125.247.22.142 dst_ip 73.201.152.77 ip_proto icmp code 65 type 15 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10225 flower src_mac 02:17:25:0c:b8:10 dst_mac 02:00:0c:1f:18:a2 vlan_id 1515 vlan_ethtype 0x0800 src_ip 37.63.133.128 dst_ip 107.103.104.242 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10226 flower src_mac 02:34:fa:08:fa:c3 dst_mac 02:fc:e6:74:39:47 src_ip 50.247.163.55 dst_ip 102.128.199.183 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10227 flower src_mac 02:b2:8b:95:ee:c1 dst_mac 02:04:43:0b:ae:15 vlan_id 3989 vlan_ethtype ip src_ip 53.197.252.73 dst_ip 12.116.40.203 ip_proto tcp src_port 18689 dst_port 36460 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10228 flower src_mac 02:58:77:cd:65:28 dst_mac 02:bb:68:6a:06:38 vlan_id 1540 vlan_ethtype ip src_ip 90.62.89.29 dst_ip 45.144.5.218 action drop && tc filter add dev swp33 ingress protocol ip pref 10229 flower src_mac 02:a1:aa:bb:e0:fd dst_mac 02:68:40:69:b6:b6 src_ip 74.243.15.119 dst_ip 117.2.177.38 ip_proto udp src_port 4312 dst_port 60091 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10230 flower src_mac 02:dd:fd:71:20:9d dst_mac 02:17:60:95:05:fa action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10231 flower src_mac 02:4a:91:d3:76:9e dst_mac 02:3d:69:7a:c0:ed vlan_id 1557 vlan_ethtype 0x0800 src_ip 84.199.98.41 dst_ip 58.55.207.241 ip_proto tcp src_port 46268 dst_port 771 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10232 flower src_mac 02:df:e1:e4:94:08 dst_mac 02:cf:0d:a5:e4:ab src_ip 88.6.7.148 dst_ip 33.1.85.52 ip_proto tcp src_port 4059 dst_port 43686 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10233 flower src_mac 02:8d:50:ca:25:aa dst_mac 02:aa:28:a5:f0:8c src_ip 120.154.29.149 dst_ip 121.154.145.154 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10234 flower src_mac 02:56:e0:3e:5a:64 dst_mac 02:cc:74:e8:14:1b vlan_id 411 vlan_ethtype ip src_ip 57.85.34.76 dst_ip 32.223.187.187 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10235 flower src_mac 02:a9:6d:73:82:67 dst_mac 02:a2:52:31:6f:15 vlan_id 3949 vlan_ethtype 0x0800 src_ip 50.33.142.62 dst_ip 62.252.50.29 ip_proto tcp src_port 26867 dst_port 18844 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10236 flower src_mac 02:df:5b:bc:a6:5c dst_mac 02:8e:28:23:2e:ed src_ip 126.65.203.235 dst_ip 29.181.92.68 ip_proto udp src_port 31057 dst_port 31801 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10237 flower src_mac 02:eb:60:c1:81:50 dst_mac 02:73:52:63:bf:f2 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10238 flower src_mac 02:b0:74:47:c1:2b dst_mac 02:6c:01:14:02:0c src_ip 124.196.152.106 dst_ip 67.173.132.167 ip_proto udp src_port 39595 dst_port 32523 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10239 flower src_mac 02:6b:4f:a7:bd:78 dst_mac 02:88:fa:bc:38:90 src_ip 124.20.178.20 dst_ip 19.23.120.148 ip_proto udp src_port 21325 dst_port 3101 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10240 flower src_mac 02:af:46:0a:da:6b dst_mac 02:66:2f:2f:3a:c7 src_ip 52.39.225.175 dst_ip 47.148.39.129 ip_proto udp src_port 27618 dst_port 22930 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10241 flower src_mac 02:0b:0d:32:29:9b dst_mac 02:7b:e6:4c:7f:d7 vlan_id 466 vlan_ethtype 0x0800 src_ip 105.233.137.216 dst_ip 113.162.188.49 ip_proto tcp src_port 51292 dst_port 58856 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10242 flower src_mac 02:ab:c7:6a:db:2c dst_mac 02:9c:58:2b:58:36 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10243 flower src_mac 02:92:34:e1:8d:ec dst_mac 02:e7:21:eb:f8:4d vlan_id 1736 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10244 flower src_mac 02:52:1e:6e:82:89 dst_mac 02:05:99:fd:91:2c vlan_id 3802 vlan_ethtype 0x0800 src_ip 99.72.229.34 dst_ip 51.175.115.183 ip_proto udp src_port 63247 dst_port 49126 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10245 flower src_mac 02:00:8b:4f:38:22 dst_mac 02:50:04:86:a5:35 vlan_id 2160 vlan_ethtype 0x0800 src_ip 74.86.152.94 dst_ip 77.61.190.189 ip_proto udp src_port 29920 dst_port 48270 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10246 flower src_mac 02:d3:98:03:c8:35 dst_mac 02:a1:8b:bc:5a:c7 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10247 flower src_mac 02:fd:a7:32:41:78 dst_mac 02:7e:af:e0:6f:64 vlan_id 1917 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10248 flower src_mac 02:10:6a:46:f5:5d dst_mac 02:13:d1:ec:d7:65 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10249 flower src_mac 02:ba:d4:be:b4:5a dst_mac 02:d5:95:f9:27:47 vlan_id 2997 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10250 flower src_mac 02:33:19:3a:42:37 dst_mac 02:f7:c5:ab:aa:b7 src_ip 79.10.23.151 dst_ip 57.174.122.157 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10251 flower src_mac 02:01:97:d8:5b:82 dst_mac 02:8d:5a:69:d1:b6 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10252 flower src_mac 02:04:3b:44:33:f1 dst_mac 02:f4:4e:20:f6:fe vlan_id 3511 vlan_ethtype ip src_ip 31.250.21.28 dst_ip 76.240.180.145 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10253 flower src_mac 02:33:5a:18:be:8e dst_mac 02:65:f6:de:35:f0 src_ip 41.243.3.57 dst_ip 107.54.222.35 ip_proto udp src_port 42063 dst_port 32168 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10254 flower src_mac 02:ed:73:11:f0:43 dst_mac 02:21:a2:a8:5c:91 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10255 flower src_mac 02:44:39:1d:e3:6f dst_mac 02:98:0a:12:63:84 vlan_id 660 vlan_ethtype ipv4 src_ip 64.108.194.196 dst_ip 90.213.184.149 ip_proto udp src_port 59880 dst_port 43922 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10256 flower src_mac 02:6c:14:15:0f:ef dst_mac 02:de:7a:88:63:c6 src_ip 107.169.90.205 dst_ip 61.192.89.125 ip_proto tcp src_port 62418 dst_port 37759 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10257 flower src_mac 02:3e:62:41:bc:bb dst_mac 02:c1:82:a6:cc:df vlan_id 291 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol ip pref 10258 flower src_mac 02:4e:17:38:a5:9d dst_mac 02:01:17:50:f2:ce src_ip 83.237.243.144 dst_ip 18.165.200.61 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10259 flower src_mac 02:37:2b:24:69:44 dst_mac 02:52:18:8c:4c:96 src_ip 46.133.255.191 dst_ip 25.96.3.66 ip_proto udp src_port 33011 dst_port 29412 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10260 flower src_mac 02:56:31:dd:58:32 dst_mac 02:f8:fd:80:98:3a src_ip 69.102.24.233 dst_ip 59.238.76.99 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10261 flower src_mac 02:f7:94:fb:e5:56 dst_mac 02:18:7c:8c:2f:f3 src_ip 85.73.91.233 dst_ip 20.247.42.163 ip_proto icmp code 42 type 16 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10262 flower src_mac 02:be:13:19:71:c9 dst_mac 02:97:60:3b:54:db src_ip 89.223.79.79 dst_ip 118.198.100.188 ip_proto tcp src_port 3759 dst_port 53373 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10263 flower src_mac 02:ab:fb:92:35:c5 dst_mac 02:19:55:5c:74:78 vlan_id 658 vlan_ethtype 0x0800 src_ip 122.136.53.100 dst_ip 126.202.245.119 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10264 flower src_mac 02:98:7b:c7:32:a2 dst_mac 02:d7:c1:8b:81:2c vlan_id 1857 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10265 flower src_mac 02:54:b6:3a:9a:5c dst_mac 02:5d:d4:f4:aa:31 vlan_id 3971 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10266 flower src_mac 02:55:e3:6f:c9:fa dst_mac 02:05:62:6b:f4:59 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10267 flower src_mac 02:f9:a2:74:d4:cf dst_mac 02:45:41:90:ec:c9 vlan_id 3175 vlan_ethtype ipv4 src_ip 87.90.120.170 dst_ip 76.88.50.106 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10268 flower src_mac 02:3d:a1:fe:3b:87 dst_mac 02:65:7c:da:15:98 vlan_id 3400 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10269 flower src_mac 02:38:b7:08:44:20 dst_mac 02:92:27:f2:7a:dd vlan_id 246 vlan_ethtype ip src_ip 95.133.184.246 dst_ip 113.177.154.92 ip_proto tcp src_port 2116 dst_port 30166 action trap && tc filter add dev swp33 ingress protocol ip pref 10270 flower src_mac 02:fd:07:0d:39:3e dst_mac 02:de:de:62:e4:05 src_ip 95.134.239.183 dst_ip 33.200.147.114 ip_proto udp src_port 52645 dst_port 17953 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10271 flower src_mac 02:ed:7f:d1:08:da dst_mac 02:ce:9e:43:63:bd vlan_id 2313 vlan_ethtype 0x0800 src_ip 112.231.205.27 dst_ip 38.1.45.186 ip_proto tcp src_port 40164 dst_port 57467 action pass && tc filter add dev swp33 ingress protocol ip pref 10272 flower src_mac 02:5e:d3:a7:d7:eb dst_mac 02:84:e3:3d:6f:5c src_ip 59.219.62.220 dst_ip 80.224.41.25 ip_proto udp src_port 58299 dst_port 29597 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10273 flower src_mac 02:e4:55:d2:9d:90 dst_mac 02:2f:10:87:14:9f action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10274 flower src_mac 02:59:1f:9f:1d:63 dst_mac 02:0a:32:c3:9c:f2 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10275 flower src_mac 02:d1:5b:7d:74:bf dst_mac 02:72:f0:f9:b4:f6 src_ip 82.122.46.61 dst_ip 122.19.134.66 ip_proto udp src_port 2699 dst_port 25358 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10276 flower src_mac 02:9a:d6:2c:6c:45 dst_mac 02:1d:84:a5:42:96 vlan_id 2535 vlan_ethtype ip src_ip 39.159.101.189 dst_ip 76.183.199.21 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10277 flower src_mac 02:21:ab:11:3e:a8 dst_mac 02:57:40:1b:65:26 vlan_id 3252 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10278 flower src_mac 02:92:45:67:89:d8 dst_mac 02:9a:11:9f:a1:e1 vlan_id 3734 vlan_ethtype ip src_ip 33.181.188.55 dst_ip 76.72.22.232 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10279 flower src_mac 02:b5:9f:d1:97:b7 dst_mac 02:c4:c9:4f:40:79 vlan_id 2250 vlan_ethtype ipv4 src_ip 37.62.200.22 dst_ip 40.147.210.222 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10280 flower src_mac 02:19:07:d2:8f:8f dst_mac 02:71:ae:28:21:4f src_ip 103.208.98.70 dst_ip 59.219.78.209 ip_proto tcp src_port 12734 dst_port 43212 action trap && tc filter add dev swp33 ingress protocol ip pref 10281 flower src_mac 02:e8:fe:05:ee:f6 dst_mac 02:6e:4b:b6:be:52 src_ip 53.135.111.140 dst_ip 33.213.91.40 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10282 flower src_mac 02:61:f5:8e:ee:b6 dst_mac 02:a7:56:6f:db:8a src_ip 92.78.21.37 dst_ip 15.199.75.130 ip_proto icmp code 164 type 17 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10283 flower src_mac 02:17:8a:2e:97:87 dst_mac 02:eb:ab:71:cd:d0 vlan_id 3477 vlan_ethtype ip src_ip 99.127.185.169 dst_ip 79.25.11.77 ip_proto udp src_port 24043 dst_port 13512 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10284 flower src_mac 02:ae:7a:de:0e:87 dst_mac 02:2f:0d:a9:f4:9c action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10285 flower src_mac 02:6a:25:f4:3a:82 dst_mac 02:8c:68:94:8c:e7 vlan_id 3307 vlan_ethtype ipv4 src_ip 50.80.228.167 dst_ip 74.36.66.101 ip_proto tcp src_port 46956 dst_port 42823 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10286 flower src_mac 02:9a:f2:6b:b6:a1 dst_mac 02:ca:4f:1c:d2:82 vlan_id 2966 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol ip pref 10287 flower src_mac 02:81:be:91:97:4e dst_mac 02:e2:91:c6:e5:d4 src_ip 13.189.215.146 dst_ip 42.118.175.239 ip_proto tcp src_port 8350 dst_port 27537 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10288 flower src_mac 02:51:f4:d7:a9:08 dst_mac 02:3b:8b:73:ad:96 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10289 flower src_mac 02:0f:8e:8f:39:94 dst_mac 02:3f:00:c5:50:e4 src_ip 60.127.64.2 dst_ip 99.184.180.117 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10290 flower src_mac 02:d9:5e:78:fc:90 dst_mac 02:3f:6e:3f:eb:39 vlan_id 3091 vlan_ethtype ipv4 src_ip 102.172.18.21 dst_ip 72.51.127.145 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10291 flower src_mac 02:6f:1f:2c:a2:92 dst_mac 02:73:1b:05:bb:d0 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10292 flower src_mac 02:5d:7a:09:b1:eb dst_mac 02:80:0a:42:1d:2b vlan_id 113 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol ip pref 10293 flower src_mac 02:43:db:50:15:e5 dst_mac 02:7a:52:59:e6:4d src_ip 123.187.135.138 dst_ip 55.81.110.226 ip_proto tcp src_port 51670 dst_port 1534 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10294 flower src_mac 02:f6:61:41:f3:36 dst_mac 02:b7:88:05:ad:b8 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10295 flower src_mac 02:89:78:68:6c:76 dst_mac 02:3d:5f:e6:ae:23 vlan_id 2969 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10296 flower src_mac 02:4d:b3:59:77:1d dst_mac 02:bb:8b:4a:30:43 vlan_id 392 vlan_ethtype ip src_ip 82.68.177.88 dst_ip 69.64.171.34 action pass && tc filter add dev swp33 ingress protocol ip pref 10297 flower src_mac 02:0d:9a:37:7c:5a dst_mac 02:d3:c3:56:82:4f src_ip 77.156.137.48 dst_ip 99.52.32.249 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10298 flower src_mac 02:f2:97:1e:ad:4f dst_mac 02:f9:2b:42:46:95 src_ip 32.31.105.57 dst_ip 50.14.59.227 ip_proto icmp code 223 type 0 action trap && tc filter add dev swp33 ingress protocol ip pref 10299 flower src_mac 02:9a:6d:c2:83:84 dst_mac 02:db:12:58:8d:a2 src_ip 113.62.53.234 dst_ip 51.48.29.67 ip_proto icmp code 172 type 18 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10300 flower src_mac 02:2b:2f:f2:39:c0 dst_mac 02:d1:9c:04:d8:8f vlan_id 2602 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10301 flower src_mac 02:6d:9d:ca:a6:89 dst_mac 02:55:d2:25:9e:ec vlan_id 3710 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10302 flower src_mac 02:93:eb:8d:1a:ba dst_mac 02:e4:56:53:13:75 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10303 flower src_mac 02:eb:c2:36:eb:3c dst_mac 02:73:9d:fd:bb:bf action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10304 flower src_mac 02:29:1c:99:87:5a dst_mac 02:00:ad:bf:c7:19 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10305 flower src_mac 02:25:c4:9b:b4:2f dst_mac 02:12:0d:b4:a0:5a vlan_id 2886 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10306 flower src_mac 02:12:78:16:b7:d1 dst_mac 02:8d:39:6e:27:30 vlan_id 650 vlan_ethtype ip src_ip 27.74.134.59 dst_ip 104.233.182.113 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10307 flower src_mac 02:48:dd:b2:b6:50 dst_mac 02:f3:1a:ba:73:fb vlan_id 3159 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10308 flower src_mac 02:e0:f9:af:f4:4e dst_mac 02:9c:63:f5:93:90 vlan_id 3339 vlan_ethtype ipv4 src_ip 61.235.140.58 dst_ip 77.101.35.113 ip_proto udp src_port 35321 dst_port 28614 action trap && tc filter add dev swp33 ingress protocol ip pref 10309 flower src_mac 02:b3:a8:92:19:57 dst_mac 02:85:7b:bb:22:2e src_ip 21.226.50.72 dst_ip 107.140.18.105 ip_proto udp src_port 39645 dst_port 14665 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10310 flower src_mac 02:8a:d2:a0:ba:ae dst_mac 02:01:db:99:04:b0 src_ip 113.107.73.151 dst_ip 58.209.98.30 action trap && tc filter add dev swp33 ingress protocol ip pref 10311 flower src_mac 02:e9:91:05:8a:83 dst_mac 02:3c:2c:4a:6a:68 src_ip 64.212.50.22 dst_ip 33.212.211.203 ip_proto icmp code 199 type 13 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10312 flower src_mac 02:f9:97:17:48:0b dst_mac 02:51:d7:e4:ad:4b src_ip 69.50.208.9 dst_ip 125.26.79.175 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10313 flower src_mac 02:c0:3f:89:16:57 dst_mac 02:4a:48:01:91:24 vlan_id 2321 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10314 flower src_mac 02:d8:c6:5b:c2:36 dst_mac 02:a6:61:63:fc:c2 vlan_id 3892 vlan_ethtype 0x0800 src_ip 84.43.191.61 dst_ip 67.79.5.46 ip_proto udp src_port 21389 dst_port 61158 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10315 flower src_mac 02:00:b1:71:5a:53 dst_mac 02:56:aa:c7:0c:12 vlan_id 2286 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10316 flower src_mac 02:5c:b1:b4:7a:2d dst_mac 02:34:1a:90:c3:bb vlan_id 3587 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10317 flower src_mac 02:7f:32:98:38:aa dst_mac 02:71:5a:35:47:80 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10318 flower src_mac 02:6a:94:67:76:31 dst_mac 02:d6:f8:0c:9d:8d vlan_id 3566 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10319 flower src_mac 02:21:9e:8e:98:13 dst_mac 02:cc:75:77:39:db src_ip 108.26.58.165 dst_ip 104.56.41.215 ip_proto icmp code 65 type 12 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10320 flower src_mac 02:0e:b3:58:4d:f0 dst_mac 02:ed:37:82:0d:f6 vlan_id 2157 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol ip pref 10321 flower src_mac 02:bd:d4:a7:f1:02 dst_mac 02:a5:93:db:a5:77 src_ip 71.98.169.181 dst_ip 60.236.209.30 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10322 flower src_mac 02:2c:3b:d7:59:5f dst_mac 02:d3:54:a7:ad:68 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10323 flower src_mac 02:9e:d9:03:1f:df dst_mac 02:f2:28:d5:ac:a8 src_ip 65.95.9.217 dst_ip 91.154.30.190 ip_proto icmp code 26 type 12 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10324 flower src_mac 02:19:11:30:a3:cb dst_mac 02:5b:6b:ea:b6:44 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10325 flower src_mac 02:6b:3f:15:85:36 dst_mac 02:d3:a0:5c:fa:93 vlan_id 1233 vlan_ethtype ipv4 src_ip 53.240.167.103 dst_ip 112.197.146.225 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10326 flower src_mac 02:7d:d1:27:4c:7a dst_mac 02:eb:32:58:a6:5e src_ip 126.30.58.63 dst_ip 75.18.247.172 ip_proto udp src_port 21140 dst_port 30726 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10327 flower src_mac 02:04:ad:36:f4:3f dst_mac 02:6c:92:04:33:c6 src_ip 112.227.216.17 dst_ip 50.201.144.128 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10328 flower src_mac 02:f2:45:46:3d:e9 dst_mac 02:55:dc:c8:18:33 vlan_id 1137 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10329 flower src_mac 02:15:08:06:a1:5b dst_mac 02:20:33:f8:8a:ad vlan_id 1093 vlan_ethtype ip src_ip 39.117.76.110 dst_ip 23.48.90.35 ip_proto tcp src_port 3162 dst_port 1197 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10330 flower src_mac 02:e0:69:17:ef:85 dst_mac 02:8c:6b:8b:90:72 vlan_id 3500 vlan_ethtype ipv4 src_ip 43.148.119.33 dst_ip 113.207.88.249 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10331 flower src_mac 02:bb:31:89:33:26 dst_mac 02:09:ba:eb:06:11 src_ip 40.183.161.240 dst_ip 41.153.109.146 ip_proto tcp src_port 4123 dst_port 46036 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10332 flower src_mac 02:18:74:00:22:6d dst_mac 02:35:53:be:2c:2d src_ip 84.175.97.125 dst_ip 84.176.151.103 ip_proto tcp src_port 3376 dst_port 38720 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10333 flower src_mac 02:f1:b2:73:40:e2 dst_mac 02:ab:33:92:94:bf action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10334 flower src_mac 02:5f:f4:59:0a:f5 dst_mac 02:8e:3a:2e:5e:21 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10335 flower src_mac 02:75:00:ed:94:44 dst_mac 02:71:aa:aa:29:c1 src_ip 31.203.156.183 dst_ip 93.133.219.173 ip_proto udp src_port 39206 dst_port 26344 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10336 flower src_mac 02:93:46:64:c9:15 dst_mac 02:64:7c:2d:25:27 vlan_id 744 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10337 flower src_mac 02:d0:e0:8c:ec:4d dst_mac 02:8e:ec:ad:d6:fe src_ip 45.57.51.226 dst_ip 55.237.185.106 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10338 flower src_mac 02:f9:58:cd:09:4a dst_mac 02:a1:a9:7b:b4:44 action drop && tc filter add dev swp33 ingress protocol ip pref 10339 flower src_mac 02:91:a5:af:0c:e1 dst_mac 02:8e:55:28:f6:ef src_ip 85.225.242.62 dst_ip 49.50.158.167 ip_proto udp src_port 18156 dst_port 52651 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10340 flower src_mac 02:7f:ce:82:38:16 dst_mac 02:62:65:17:3c:79 vlan_id 52 vlan_ethtype ipv4 src_ip 71.23.115.59 dst_ip 35.10.26.16 ip_proto tcp src_port 48621 dst_port 23072 action pass && tc filter add dev swp33 ingress protocol ip pref 10341 flower src_mac 02:07:f7:3d:c7:a7 dst_mac 02:f5:b6:7f:29:20 src_ip 81.47.173.71 dst_ip 54.185.18.80 ip_proto icmp code 105 type 4 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10342 flower src_mac 02:38:a0:d8:5b:82 dst_mac 02:60:3f:41:42:63 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10343 flower src_mac 02:56:fb:4f:e8:93 dst_mac 02:08:5f:c6:1a:14 vlan_id 2493 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10344 flower src_mac 02:97:00:7d:6c:1c dst_mac 02:37:9f:7c:3d:0b action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10345 flower src_mac 02:fd:10:d8:25:e7 dst_mac 02:64:1f:18:7e:3f action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10346 flower src_mac 02:6b:48:d2:9b:8f dst_mac 02:25:f0:20:fb:df action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10347 flower src_mac 02:38:10:9c:bb:c5 dst_mac 02:b4:f7:71:da:b5 vlan_id 2791 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10348 flower src_mac 02:45:06:7d:14:06 dst_mac 02:5f:32:23:b1:96 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10349 flower src_mac 02:75:8e:3a:60:24 dst_mac 02:3e:e8:9c:d0:26 src_ip 74.163.189.222 dst_ip 41.237.102.194 ip_proto tcp src_port 20417 dst_port 59432 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10350 flower src_mac 02:d1:ed:25:fa:04 dst_mac 02:49:b9:bc:07:f5 vlan_id 2408 vlan_ethtype 0x0800 src_ip 28.172.221.115 dst_ip 58.57.222.130 ip_proto udp src_port 29589 dst_port 12153 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10351 flower src_mac 02:b2:bf:a7:e3:7b dst_mac 02:0e:62:2d:31:bd action drop && tc filter add dev swp33 ingress protocol ip pref 10352 flower src_mac 02:36:7c:03:22:8a dst_mac 02:67:e5:fe:e6:ea src_ip 105.4.227.132 dst_ip 58.116.42.23 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10353 flower src_mac 02:2c:e9:02:65:9a dst_mac 02:07:5a:00:1f:72 vlan_id 2167 vlan_ethtype ip src_ip 106.0.182.7 dst_ip 35.129.201.131 ip_proto udp src_port 433 dst_port 44085 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10354 flower src_mac 02:d9:1c:63:92:fe dst_mac 02:ce:a1:ab:92:41 vlan_id 2937 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10355 flower src_mac 02:75:ac:18:54:3e dst_mac 02:dc:c0:bb:08:5f vlan_id 1921 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10356 flower src_mac 02:09:cf:d2:de:1f dst_mac 02:e2:88:0f:7d:ba vlan_id 324 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol ip pref 10357 flower src_mac 02:ae:b2:88:91:c6 dst_mac 02:19:48:cd:47:6d src_ip 33.19.188.235 dst_ip 29.210.79.1 ip_proto tcp src_port 58734 dst_port 53852 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10358 flower src_mac 02:9b:67:48:16:cf dst_mac 02:d9:15:61:dc:3e vlan_id 1104 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10359 flower src_mac 02:65:7d:00:83:50 dst_mac 02:40:5d:92:f4:3c vlan_id 1741 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10360 flower src_mac 02:f5:ef:6c:d6:90 dst_mac 02:4e:3d:57:ee:23 vlan_id 619 vlan_ethtype ip src_ip 102.2.52.138 dst_ip 104.60.18.230 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10361 flower src_mac 02:1a:d0:98:1b:27 dst_mac 02:50:cf:33:13:65 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10362 flower src_mac 02:98:b6:82:02:09 dst_mac 02:74:38:10:fd:6d vlan_id 2938 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10363 flower src_mac 02:49:05:05:3d:e7 dst_mac 02:f6:98:95:4f:c7 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10364 flower src_mac 02:2b:58:cc:f2:7a dst_mac 02:cc:15:3e:a7:54 src_ip 25.250.215.14 dst_ip 86.195.191.245 ip_proto udp src_port 17847 dst_port 43890 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10365 flower src_mac 02:12:08:4f:70:45 dst_mac 02:a9:cb:7b:bc:65 vlan_id 3124 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10366 flower src_mac 02:43:09:00:2f:84 dst_mac 02:0c:9a:31:0b:09 vlan_id 1095 vlan_ethtype ip src_ip 74.139.150.106 dst_ip 110.108.69.80 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10367 flower src_mac 02:6f:87:9b:43:d9 dst_mac 02:ea:26:77:e3:0c vlan_id 1544 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10368 flower src_mac 02:4b:eb:4b:e7:90 dst_mac 02:bc:dd:9a:8d:ab src_ip 38.4.215.61 dst_ip 41.215.144.41 ip_proto icmp code 77 type 18 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10369 flower src_mac 02:d4:eb:e2:c7:67 dst_mac 02:e7:f1:36:4f:98 vlan_id 1773 vlan_ethtype ip src_ip 24.240.38.66 dst_ip 119.168.181.144 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10370 flower src_mac 02:3e:e1:7c:f6:72 dst_mac 02:2f:08:db:c0:b1 src_ip 122.92.203.219 dst_ip 12.234.154.91 ip_proto udp src_port 39498 dst_port 39397 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10371 flower src_mac 02:46:e0:1b:cd:58 dst_mac 02:aa:43:c8:88:a8 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10372 flower src_mac 02:b5:78:ef:33:66 dst_mac 02:15:24:19:24:2b vlan_id 878 vlan_ethtype ipv4 src_ip 73.186.168.175 dst_ip 73.57.20.224 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10373 flower src_mac 02:e5:a3:41:d2:70 dst_mac 02:58:0f:ae:8f:d2 vlan_id 2508 vlan_ethtype ipv4 src_ip 95.159.163.233 dst_ip 100.172.10.49 ip_proto tcp src_port 28825 dst_port 64273 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10374 flower src_mac 02:a5:86:ab:29:29 dst_mac 02:ef:7e:ef:b9:22 vlan_id 3439 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10375 flower src_mac 02:a3:73:3c:82:40 dst_mac 02:04:62:66:2c:58 vlan_id 3364 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10376 flower src_mac 02:fc:43:9b:f5:8e dst_mac 02:24:a0:64:fb:c3 src_ip 91.190.30.181 dst_ip 121.19.238.186 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10377 flower src_mac 02:e3:ad:94:1b:c1 dst_mac 02:63:fb:f8:e9:3d vlan_id 837 vlan_ethtype ipv4 src_ip 101.202.138.78 dst_ip 115.188.223.116 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10378 flower src_mac 02:68:cf:da:c5:f5 dst_mac 02:14:4c:d6:3e:43 vlan_id 3626 vlan_ethtype ip src_ip 106.29.23.246 dst_ip 66.53.240.198 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10379 flower src_mac 02:93:ad:ad:d5:f2 dst_mac 02:82:db:e7:14:60 vlan_id 3811 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10380 flower src_mac 02:f2:f8:7e:b5:5c dst_mac 02:f4:78:e5:23:62 vlan_id 4002 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10381 flower src_mac 02:6c:b2:ed:08:5a dst_mac 02:e3:d8:cc:16:6a vlan_id 1467 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10382 flower src_mac 02:03:d3:1f:62:d6 dst_mac 02:d5:2e:16:0f:30 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10383 flower src_mac 02:f4:71:d7:ce:2c dst_mac 02:72:be:31:32:93 vlan_id 2521 vlan_ethtype ipv4 src_ip 58.252.206.228 dst_ip 107.90.163.11 ip_proto tcp src_port 18556 dst_port 39844 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10384 flower src_mac 02:d0:50:19:82:2a dst_mac 02:9c:03:59:7c:db vlan_id 797 vlan_ethtype 0x0800 src_ip 126.52.156.90 dst_ip 21.82.20.143 ip_proto tcp src_port 16042 dst_port 22757 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10385 flower src_mac 02:b7:9b:d0:62:f9 dst_mac 02:ce:81:e4:9c:5e vlan_id 1562 vlan_ethtype ipv4 src_ip 54.174.128.242 dst_ip 93.47.67.119 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10386 flower src_mac 02:3d:50:0f:3b:25 dst_mac 02:8b:aa:03:47:6d vlan_id 349 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10387 flower src_mac 02:7b:f3:54:0b:72 dst_mac 02:ef:43:4a:cf:d5 src_ip 96.195.113.22 dst_ip 103.150.139.208 ip_proto tcp src_port 34400 dst_port 12453 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10388 flower src_mac 02:70:fa:b5:21:e8 dst_mac 02:b7:53:f0:49:9c action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10389 flower src_mac 02:47:2d:f4:da:1c dst_mac 02:25:df:6a:fb:de action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10390 flower src_mac 02:36:b2:a5:d9:50 dst_mac 02:69:ef:87:aa:49 vlan_id 672 vlan_ethtype 0x0800 src_ip 43.140.132.221 dst_ip 112.245.72.177 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10391 flower src_mac 02:d0:1c:5b:1c:51 dst_mac 02:f0:06:e8:43:57 src_ip 98.167.251.170 dst_ip 97.79.46.27 ip_proto tcp src_port 55214 dst_port 30827 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10392 flower src_mac 02:c4:20:f3:d3:e3 dst_mac 02:0e:54:63:8d:e5 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10393 flower src_mac 02:27:05:2f:87:40 dst_mac 02:7e:7a:a9:97:a0 vlan_id 1277 vlan_ethtype 0x0800 src_ip 51.70.36.18 dst_ip 83.28.18.240 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10394 flower src_mac 02:9e:2a:f3:2e:d3 dst_mac 02:5d:ce:a8:2b:74 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10395 flower src_mac 02:1e:23:46:b6:e9 dst_mac 02:49:b3:2b:57:7f src_ip 78.180.172.27 dst_ip 61.182.97.210 ip_proto tcp src_port 117 dst_port 37862 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10396 flower src_mac 02:01:5a:83:b7:b4 dst_mac 02:a2:13:de:a0:2c vlan_id 2880 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10397 flower src_mac 02:f0:e4:c9:f7:0d dst_mac 02:af:2e:4f:84:2b vlan_id 647 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10398 flower src_mac 02:ac:88:6e:f2:de dst_mac 02:48:8a:a8:68:c9 vlan_id 1175 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10399 flower src_mac 02:e8:21:33:ac:25 dst_mac 02:a0:d9:73:9b:7e vlan_id 1370 vlan_ethtype 0x9300 action drop INFO asyncssh:logging.py:92 [conn=24, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=24, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=5] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol 0x9200 pref 10400 flower src_mac 02:f2:26:2b:46:79 dst_mac 02:86:52:97:69:17 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10401 flower src_mac 02:96:94:73:2c:eb dst_mac 02:7a:7d:3e:2e:10 vlan_id 1100 vlan_ethtype ip src_ip 86.208.32.18 dst_ip 68.255.131.18 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10402 flower src_mac 02:0d:7d:00:b0:68 dst_mac 02:24:ed:4c:0c:8e action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10403 flower src_mac 02:52:be:bb:11:d6 dst_mac 02:a2:26:2e:bc:48 vlan_id 1220 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol ip pref 10404 flower src_mac 02:a9:2f:a4:5c:ce dst_mac 02:65:09:e5:29:b3 src_ip 35.220.162.105 dst_ip 46.155.1.10 ip_proto tcp src_port 3851 dst_port 27902 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10405 flower src_mac 02:58:89:3b:dd:70 dst_mac 02:11:39:4c:98:c8 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10406 flower src_mac 02:e2:6b:fc:62:04 dst_mac 02:bb:df:75:35:b7 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10407 flower src_mac 02:c4:d5:57:3a:e3 dst_mac 02:a1:c7:5a:77:76 vlan_id 4081 vlan_ethtype 0x0800 src_ip 46.73.165.191 dst_ip 121.90.232.147 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10408 flower src_mac 02:6f:65:2b:ec:16 dst_mac 02:d2:b5:79:ac:66 src_ip 43.99.62.110 dst_ip 104.252.92.86 ip_proto tcp src_port 19616 dst_port 16747 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10409 flower src_mac 02:17:08:e2:f1:80 dst_mac 02:dd:e8:03:5b:c2 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10410 flower src_mac 02:fa:4b:de:06:fc dst_mac 02:6b:56:ec:c9:bc action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10411 flower src_mac 02:22:1c:31:04:3c dst_mac 02:55:f8:3c:30:19 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10412 flower src_mac 02:38:6c:da:71:f1 dst_mac 02:0e:dd:b8:fd:9e action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10413 flower src_mac 02:71:d3:53:6b:1c dst_mac 02:28:63:40:c3:16 vlan_id 1467 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol ip pref 10414 flower src_mac 02:c4:0c:18:a5:c7 dst_mac 02:67:29:1f:b8:d8 src_ip 96.67.247.118 dst_ip 41.101.149.240 ip_proto udp src_port 11791 dst_port 60186 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10415 flower src_mac 02:ae:66:9a:6d:74 dst_mac 02:97:eb:f0:45:5d vlan_id 809 vlan_ethtype 0x0800 src_ip 60.253.10.71 dst_ip 93.199.41.176 ip_proto udp src_port 60426 dst_port 37465 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10416 flower src_mac 02:11:cd:dd:00:71 dst_mac 02:d6:97:9e:17:1b action trap && tc filter add dev swp33 ingress protocol ip pref 10417 flower src_mac 02:20:ed:98:ea:86 dst_mac 02:a9:f4:74:3f:b4 src_ip 78.230.26.243 dst_ip 19.244.53.19 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10418 flower src_mac 02:68:75:a5:03:f6 dst_mac 02:44:c0:df:27:25 vlan_id 3202 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10419 flower src_mac 02:8d:e1:07:7c:df dst_mac 02:90:8e:e5:dd:d2 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10420 flower src_mac 02:5e:5c:9a:0f:04 dst_mac 02:0f:72:3c:c4:55 src_ip 86.232.46.62 dst_ip 73.67.92.8 ip_proto icmp code 246 type 4 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10421 flower src_mac 02:aa:32:41:e5:b4 dst_mac 02:8c:18:d2:ee:dc vlan_id 4075 vlan_ethtype ipv4 src_ip 91.191.73.215 dst_ip 123.151.16.78 ip_proto tcp src_port 30693 dst_port 27850 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10422 flower src_mac 02:06:15:0a:58:a0 dst_mac 02:a2:7f:a5:78:07 src_ip 119.198.16.58 dst_ip 105.137.182.137 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10423 flower src_mac 02:cc:49:4c:b9:f3 dst_mac 02:86:7d:48:cd:d6 vlan_id 1697 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10424 flower src_mac 02:f7:e4:4d:b0:d6 dst_mac 02:af:5c:00:c7:17 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10425 flower src_mac 02:29:91:e0:bf:f8 dst_mac 02:64:52:9b:af:33 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10426 flower src_mac 02:41:84:f9:72:b7 dst_mac 02:f7:82:55:f1:88 src_ip 85.52.201.67 dst_ip 126.63.147.203 ip_proto icmp code 99 type 0 action pass && tc filter add dev swp33 ingress protocol ip pref 10427 flower src_mac 02:43:b3:64:78:2f dst_mac 02:bf:9a:bd:2a:0d src_ip 64.4.109.211 dst_ip 109.150.163.163 action pass && tc filter add dev swp33 ingress protocol ip pref 10428 flower src_mac 02:b5:70:2e:5a:db dst_mac 02:67:5b:55:7e:f2 src_ip 89.209.48.156 dst_ip 70.85.59.146 ip_proto udp src_port 23013 dst_port 65429 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10429 flower src_mac 02:b3:c6:13:9e:e6 dst_mac 02:c1:80:83:54:41 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10430 flower src_mac 02:cc:1f:67:d5:6a dst_mac 02:75:7e:5f:6f:cb action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10431 flower src_mac 02:b9:02:32:67:3f dst_mac 02:7b:20:e3:72:ac action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10432 flower src_mac 02:17:8d:fe:cc:ba dst_mac 02:f7:b3:af:62:88 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10433 flower src_mac 02:b3:10:86:5f:5c dst_mac 02:56:be:ff:f4:28 vlan_id 1854 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10434 flower src_mac 02:f3:00:84:c4:92 dst_mac 02:b4:dc:b2:91:22 vlan_id 3944 vlan_ethtype ipv4 src_ip 84.25.179.177 dst_ip 53.206.8.52 action trap && tc filter add dev swp33 ingress protocol ip pref 10435 flower src_mac 02:97:42:f6:56:64 dst_mac 02:5e:3f:b5:46:36 src_ip 49.6.117.161 dst_ip 53.250.118.229 ip_proto udp src_port 23468 dst_port 17004 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10436 flower src_mac 02:d8:f0:02:1d:70 dst_mac 02:56:ea:8f:00:71 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10437 flower src_mac 02:90:0e:38:7a:72 dst_mac 02:2d:2e:ac:43:f1 vlan_id 2230 vlan_ethtype ipv4 src_ip 79.179.58.167 dst_ip 123.220.207.250 action pass && tc filter add dev swp33 ingress protocol ip pref 10438 flower src_mac 02:54:c4:49:29:13 dst_mac 02:da:3f:61:69:a5 src_ip 74.207.240.139 dst_ip 54.42.234.76 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10439 flower src_mac 02:54:1b:cb:6f:50 dst_mac 02:17:46:92:e8:f9 vlan_id 2204 vlan_ethtype ipv4 src_ip 89.218.212.37 dst_ip 69.227.46.242 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10440 flower src_mac 02:6d:68:74:53:f6 dst_mac 02:7b:53:29:68:02 src_ip 18.190.38.118 dst_ip 96.10.112.236 ip_proto icmp code 165 type 4 action pass && tc filter add dev swp33 ingress protocol ip pref 10441 flower src_mac 02:76:d2:84:ac:5f dst_mac 02:b4:90:7b:58:5d src_ip 75.62.181.246 dst_ip 91.253.215.106 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10442 flower src_mac 02:7d:da:f7:4e:b5 dst_mac 02:79:47:c9:a0:eb vlan_id 2336 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10443 flower src_mac 02:18:b7:02:0a:0e dst_mac 02:30:e2:b9:08:55 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10444 flower src_mac 02:8b:e2:a1:ae:19 dst_mac 02:df:4f:1f:26:43 vlan_id 2028 vlan_ethtype 0x0800 src_ip 89.61.236.171 dst_ip 66.110.51.11 ip_proto tcp src_port 40168 dst_port 50338 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10445 flower src_mac 02:57:22:98:71:ed dst_mac 02:bc:1c:b7:60:c8 vlan_id 1086 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10446 flower src_mac 02:40:01:ab:0b:1f dst_mac 02:ae:d1:ed:0d:be vlan_id 3314 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10447 flower src_mac 02:4d:47:77:13:1d dst_mac 02:4d:c2:44:01:1f vlan_id 2464 vlan_ethtype 0x0800 src_ip 86.130.195.3 dst_ip 82.68.217.67 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10448 flower src_mac 02:e3:ee:8a:cf:e9 dst_mac 02:33:1d:ea:7a:a8 vlan_id 2291 vlan_ethtype ip src_ip 55.88.65.15 dst_ip 90.236.213.220 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10449 flower src_mac 02:69:1c:76:fe:4e dst_mac 02:97:b6:0e:eb:c8 vlan_id 436 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10450 flower src_mac 02:53:7a:48:13:ab dst_mac 02:22:63:9d:47:bb vlan_id 3022 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10451 flower src_mac 02:94:d2:f6:be:57 dst_mac 02:f0:2c:8d:c5:85 vlan_id 2089 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10452 flower src_mac 02:7a:56:f0:97:52 dst_mac 02:fd:55:13:c8:d0 vlan_id 4048 vlan_ethtype ipv4 src_ip 117.254.97.88 dst_ip 107.17.42.233 ip_proto tcp src_port 45192 dst_port 22675 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10453 flower src_mac 02:6b:73:96:4c:d2 dst_mac 02:4a:8b:ac:0e:3d vlan_id 835 vlan_ethtype ip src_ip 45.87.248.3 dst_ip 108.91.13.196 ip_proto tcp src_port 59653 dst_port 49065 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10454 flower src_mac 02:a8:f9:0e:64:25 dst_mac 02:2f:89:7e:11:42 vlan_id 1642 vlan_ethtype ipv4 src_ip 126.151.198.216 dst_ip 114.158.49.181 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10455 flower src_mac 02:42:5f:e0:da:e5 dst_mac 02:0f:39:5a:f7:23 src_ip 88.173.218.128 dst_ip 74.31.104.63 ip_proto tcp src_port 35208 dst_port 3784 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10456 flower src_mac 02:c4:52:47:e1:05 dst_mac 02:e4:ca:e5:95:fb src_ip 125.129.77.116 dst_ip 64.251.187.70 ip_proto icmp code 185 type 12 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10457 flower src_mac 02:7c:b6:cd:d9:64 dst_mac 02:cd:c1:2c:64:69 src_ip 20.246.192.4 dst_ip 119.209.235.84 ip_proto udp src_port 4462 dst_port 8313 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10458 flower src_mac 02:a0:45:9b:d9:50 dst_mac 02:92:20:c1:5c:49 vlan_id 532 vlan_ethtype ipv4 src_ip 49.116.224.112 dst_ip 30.27.203.21 ip_proto udp src_port 29887 dst_port 41672 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10459 flower src_mac 02:74:5b:2a:f2:cc dst_mac 02:f8:43:27:98:98 src_ip 126.101.122.103 dst_ip 100.171.241.237 ip_proto udp src_port 43861 dst_port 38671 action trap && tc filter add dev swp33 ingress protocol ip pref 10460 flower src_mac 02:e2:fd:d9:46:43 dst_mac 02:f2:7e:86:01:80 src_ip 80.202.194.238 dst_ip 119.173.75.40 ip_proto udp src_port 23139 dst_port 7437 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10461 flower src_mac 02:aa:b8:33:01:b6 dst_mac 02:a4:ba:a7:fc:d5 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10462 flower src_mac 02:f2:a7:7d:04:8b dst_mac 02:5e:bf:22:88:d4 vlan_id 1206 vlan_ethtype ipv4 src_ip 47.255.188.58 dst_ip 92.193.184.114 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10463 flower src_mac 02:a6:37:0b:0c:58 dst_mac 02:bd:50:36:57:a6 vlan_id 2850 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10464 flower src_mac 02:04:da:5b:8a:30 dst_mac 02:4e:24:91:cc:a5 vlan_id 848 vlan_ethtype ipv4 src_ip 15.200.233.96 dst_ip 110.133.194.249 ip_proto tcp src_port 22866 dst_port 64099 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10465 flower src_mac 02:91:98:8c:17:9a dst_mac 02:a0:e5:7e:c9:20 src_ip 17.70.7.230 dst_ip 26.217.177.180 ip_proto icmp code 68 type 15 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10466 flower src_mac 02:3a:c4:42:0b:4e dst_mac 02:08:fc:c0:ed:76 src_ip 36.122.61.211 dst_ip 71.165.93.152 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10467 flower src_mac 02:6d:b6:ae:66:48 dst_mac 02:a5:61:18:ad:5f action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10468 flower src_mac 02:18:af:e7:23:74 dst_mac 02:58:88:cf:81:03 vlan_id 1967 vlan_ethtype 0x0800 src_ip 50.236.246.105 dst_ip 37.100.106.171 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10469 flower src_mac 02:88:b6:0e:af:da dst_mac 02:62:46:05:85:ff action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10470 flower src_mac 02:79:c9:1c:2e:8d dst_mac 02:ea:77:77:9e:72 vlan_id 2013 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10471 flower src_mac 02:cb:29:b1:3c:a3 dst_mac 02:de:c8:97:41:18 src_ip 77.60.207.38 dst_ip 85.111.2.45 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10472 flower src_mac 02:ff:f4:c6:92:09 dst_mac 02:78:bf:f9:74:e9 vlan_id 314 vlan_ethtype ipv4 src_ip 99.186.234.32 dst_ip 48.196.254.138 ip_proto udp src_port 37768 dst_port 58856 action drop && tc filter add dev swp33 ingress protocol ip pref 10473 flower src_mac 02:3b:46:9a:49:19 dst_mac 02:74:09:8a:64:ee src_ip 110.68.165.67 dst_ip 55.166.32.11 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10474 flower src_mac 02:20:81:4d:2a:7d dst_mac 02:21:79:97:ef:0d src_ip 80.51.26.159 dst_ip 13.151.46.121 ip_proto udp src_port 26255 dst_port 15115 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10475 flower src_mac 02:d1:90:2b:97:e3 dst_mac 02:25:7b:32:44:db vlan_id 1261 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol ip pref 10476 flower src_mac 02:30:9e:1b:67:d3 dst_mac 02:fe:9d:58:49:fa src_ip 85.189.172.74 dst_ip 14.77.237.101 action trap && tc filter add dev swp33 ingress protocol ip pref 10477 flower src_mac 02:9b:1f:08:ac:51 dst_mac 02:96:a3:89:53:5c src_ip 38.31.196.20 dst_ip 31.123.88.163 ip_proto udp src_port 34727 dst_port 18769 action pass && tc filter add dev swp33 ingress protocol ip pref 10478 flower src_mac 02:2f:76:5f:ad:84 dst_mac 02:ca:64:64:c1:b6 src_ip 49.192.75.162 dst_ip 90.1.225.231 ip_proto tcp src_port 15123 dst_port 23089 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10479 flower src_mac 02:ec:93:0c:48:ff dst_mac 02:01:82:8f:ac:cd vlan_id 2412 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10480 flower src_mac 02:44:b6:39:31:fb dst_mac 02:96:33:be:85:23 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10481 flower src_mac 02:0f:56:21:48:40 dst_mac 02:6c:6b:20:42:dc action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10482 flower src_mac 02:bd:af:f0:f5:4a dst_mac 02:7b:93:d5:c1:87 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10483 flower src_mac 02:87:2b:41:bd:a9 dst_mac 02:79:32:fd:5e:19 vlan_id 637 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10484 flower src_mac 02:24:97:d2:2b:cf dst_mac 02:07:2c:71:cd:08 src_ip 39.100.104.116 dst_ip 45.73.73.38 ip_proto udp src_port 13428 dst_port 19434 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10485 flower src_mac 02:c6:0d:81:ed:74 dst_mac 02:cf:83:3d:70:cb src_ip 80.218.223.54 dst_ip 96.18.146.151 ip_proto udp src_port 6339 dst_port 28117 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10486 flower src_mac 02:2e:2a:ac:97:91 dst_mac 02:4a:8d:5e:81:7c src_ip 21.203.144.233 dst_ip 59.163.184.99 ip_proto udp src_port 4481 dst_port 12647 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10487 flower src_mac 02:ea:8d:7e:fc:4b dst_mac 02:bf:28:86:52:68 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10488 flower src_mac 02:fe:1a:92:89:74 dst_mac 02:3b:27:fd:7a:7a vlan_id 2344 vlan_ethtype ipv4 src_ip 83.39.242.247 dst_ip 124.29.75.124 ip_proto udp src_port 4800 dst_port 54811 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10489 flower src_mac 02:45:cf:1e:45:fa dst_mac 02:f9:bb:64:8b:4e vlan_id 250 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol ip pref 10490 flower src_mac 02:af:6c:14:fd:e2 dst_mac 02:7b:34:a3:f4:f7 src_ip 65.133.66.81 dst_ip 121.120.134.23 ip_proto udp src_port 29052 dst_port 57493 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10491 flower src_mac 02:18:8b:c0:90:be dst_mac 02:06:ab:83:f0:6f vlan_id 2387 vlan_ethtype 0x0800 src_ip 109.140.229.149 dst_ip 81.52.6.25 action trap && tc filter add dev swp33 ingress protocol ip pref 10492 flower src_mac 02:40:10:60:75:e3 dst_mac 02:bf:3d:d9:c1:c1 src_ip 27.231.72.84 dst_ip 27.145.243.194 ip_proto tcp src_port 13089 dst_port 3941 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10493 flower src_mac 02:34:96:95:ee:b9 dst_mac 02:f1:cc:9e:a8:e1 vlan_id 2572 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol ip pref 10494 flower src_mac 02:f7:c7:7c:8d:e0 dst_mac 02:a4:be:86:99:21 src_ip 92.234.244.220 dst_ip 79.157.126.61 ip_proto udp src_port 9302 dst_port 1981 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10495 flower src_mac 02:5e:36:6d:15:23 dst_mac 02:10:31:ea:e6:4f src_ip 103.97.153.40 dst_ip 21.86.78.73 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10496 flower src_mac 02:c8:65:87:a8:93 dst_mac 02:1b:a7:8d:30:2b vlan_id 543 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10497 flower src_mac 02:16:0a:7f:9e:59 dst_mac 02:64:d1:27:a3:3a action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10498 flower src_mac 02:c2:df:cd:ff:34 dst_mac 02:1f:f5:d9:75:f8 vlan_id 807 vlan_ethtype ipv4 src_ip 11.38.209.111 dst_ip 56.10.253.153 ip_proto tcp src_port 10812 dst_port 38608 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10499 flower src_mac 02:77:38:c9:f2:d1 dst_mac 02:93:dd:9b:13:35 vlan_id 2351 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10500 flower src_mac 02:9c:44:aa:f1:09 dst_mac 02:0f:7c:85:61:65 vlan_id 3610 vlan_ethtype 0x0800 src_ip 84.155.116.9 dst_ip 75.251.11.6 ip_proto tcp src_port 7487 dst_port 11140 action pass && tc filter add dev swp33 ingress protocol ip pref 10501 flower src_mac 02:a4:a9:26:28:fa dst_mac 02:a9:25:59:a0:0e src_ip 109.62.73.77 dst_ip 59.160.55.60 ip_proto tcp src_port 52474 dst_port 15621 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10502 flower src_mac 02:70:65:f6:b7:a4 dst_mac 02:4b:77:80:b3:25 vlan_id 3799 vlan_ethtype ip src_ip 66.135.126.247 dst_ip 57.182.59.105 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10503 flower src_mac 02:c0:52:e5:36:2c dst_mac 02:4f:9c:f5:8c:2e src_ip 105.178.125.92 dst_ip 98.103.227.195 ip_proto icmp code 215 type 5 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10504 flower src_mac 02:43:0c:d3:ba:6d dst_mac 02:fb:e1:15:8f:e5 vlan_id 2800 vlan_ethtype ip src_ip 60.220.211.182 dst_ip 91.39.164.242 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10505 flower src_mac 02:ac:9e:ce:fe:7f dst_mac 02:f3:53:4c:ad:49 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10506 flower src_mac 02:9e:54:04:09:34 dst_mac 02:fc:74:3d:8b:51 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10507 flower src_mac 02:ae:90:3f:39:e3 dst_mac 02:ae:40:b5:cf:d4 vlan_id 2561 vlan_ethtype ip src_ip 24.188.16.47 dst_ip 111.164.96.171 ip_proto udp src_port 40481 dst_port 46682 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10508 flower src_mac 02:6d:af:fb:2b:2b dst_mac 02:f7:28:c9:77:8d src_ip 47.29.41.186 dst_ip 76.91.142.113 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10509 flower src_mac 02:f4:f7:e1:b4:f0 dst_mac 02:31:a1:8b:92:85 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10510 flower src_mac 02:70:7d:c1:8a:65 dst_mac 02:99:50:db:a7:cf action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10511 flower src_mac 02:9a:95:05:03:b1 dst_mac 02:41:ce:23:04:3a vlan_id 2441 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10512 flower src_mac 02:ed:aa:a2:c8:41 dst_mac 02:05:bc:6d:de:2f vlan_id 1678 vlan_ethtype ipv4 src_ip 55.211.11.190 dst_ip 39.2.130.148 ip_proto tcp src_port 61589 dst_port 11645 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10513 flower src_mac 02:9e:57:2c:3c:98 dst_mac 02:f8:c3:4e:a7:01 vlan_id 2223 vlan_ethtype ip src_ip 117.1.93.144 dst_ip 90.89.16.46 ip_proto tcp src_port 64259 dst_port 53080 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10514 flower src_mac 02:5a:77:d1:77:09 dst_mac 02:52:d6:d6:10:ac vlan_id 2187 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10515 flower src_mac 02:8b:fb:40:9d:74 dst_mac 02:c9:12:c6:e5:82 vlan_id 3343 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10516 flower src_mac 02:d0:9a:e7:56:2f dst_mac 02:b4:08:ea:2c:53 vlan_id 172 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10517 flower src_mac 02:e4:5a:94:30:c7 dst_mac 02:f7:52:32:43:45 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10518 flower src_mac 02:51:a9:45:64:e1 dst_mac 02:53:fe:ce:ce:7d vlan_id 2504 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10519 flower src_mac 02:74:05:7e:55:0f dst_mac 02:b4:33:fd:1f:1c src_ip 121.83.161.42 dst_ip 111.170.187.63 ip_proto tcp src_port 13520 dst_port 4749 action drop && tc filter add dev swp33 ingress protocol ip pref 10520 flower src_mac 02:16:b1:68:52:d6 dst_mac 02:46:d8:c3:15:a9 src_ip 25.249.100.98 dst_ip 102.66.62.127 ip_proto udp src_port 40555 dst_port 42789 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10521 flower src_mac 02:0f:94:07:25:0a dst_mac 02:24:0e:c6:7e:8b action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10522 flower src_mac 02:ac:9f:ed:66:ed dst_mac 02:52:4e:3f:1c:e5 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10523 flower src_mac 02:47:6e:a8:3a:23 dst_mac 02:8a:87:c1:c8:1a action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10524 flower src_mac 02:6e:5c:59:23:78 dst_mac 02:82:2b:42:98:38 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10525 flower src_mac 02:e6:20:5a:6a:e9 dst_mac 02:1b:87:56:f3:74 vlan_id 1255 vlan_ethtype ip src_ip 42.42.119.48 dst_ip 78.207.198.22 ip_proto tcp src_port 31671 dst_port 47481 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10526 flower src_mac 02:9d:b5:ab:07:83 dst_mac 02:d9:9d:67:1d:cd vlan_id 1675 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10527 flower src_mac 02:0b:64:f4:1b:2b dst_mac 02:d4:3c:71:b1:e7 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10528 flower src_mac 02:87:cd:3c:b4:b2 dst_mac 02:63:12:79:d0:f3 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10529 flower src_mac 02:a3:6b:64:1b:19 dst_mac 02:32:f2:62:d6:9f vlan_id 2228 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10530 flower src_mac 02:8c:a0:ed:c3:4e dst_mac 02:aa:96:1b:40:c5 src_ip 84.45.89.39 dst_ip 91.178.58.76 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10531 flower src_mac 02:06:e3:5f:6f:65 dst_mac 02:a8:37:42:b9:23 vlan_id 2747 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10532 flower src_mac 02:3f:4c:22:1d:1b dst_mac 02:13:5a:e5:19:bb vlan_id 3019 vlan_ethtype ip src_ip 23.46.113.11 dst_ip 68.15.167.150 ip_proto tcp src_port 62784 dst_port 51021 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10533 flower src_mac 02:71:af:5a:36:9c dst_mac 02:3f:c8:26:af:8d vlan_id 2644 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10534 flower src_mac 02:b5:aa:48:11:8d dst_mac 02:d6:65:b5:46:79 vlan_id 1799 vlan_ethtype ipv4 src_ip 119.118.154.28 dst_ip 90.87.88.152 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10535 flower src_mac 02:a0:1e:d4:04:e5 dst_mac 02:0a:24:d6:cc:9c vlan_id 3957 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10536 flower src_mac 02:d2:79:0b:d6:cd dst_mac 02:a5:cc:f9:e3:ee src_ip 118.14.191.107 dst_ip 21.114.90.135 ip_proto udp src_port 8275 dst_port 21149 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10537 flower src_mac 02:5e:4d:05:39:7f dst_mac 02:c1:76:bb:9e:f9 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10538 flower src_mac 02:2a:4d:cb:d7:97 dst_mac 02:40:93:f6:c4:80 action trap && tc filter add dev swp33 ingress protocol ip pref 10539 flower src_mac 02:3e:84:28:69:90 dst_mac 02:29:3e:92:39:6c src_ip 90.153.148.83 dst_ip 98.92.235.43 ip_proto icmp code 123 type 5 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10540 flower src_mac 02:15:c1:c0:6f:89 dst_mac 02:68:93:0d:12:1e vlan_id 2440 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10541 flower src_mac 02:31:ac:d0:11:ad dst_mac 02:e3:f0:a3:c0:37 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10542 flower src_mac 02:d2:7f:17:d7:92 dst_mac 02:13:1f:df:c5:43 vlan_id 2126 vlan_ethtype ipv4 src_ip 51.194.128.182 dst_ip 50.24.228.184 ip_proto udp src_port 14181 dst_port 3521 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10543 flower src_mac 02:18:60:2e:1c:23 dst_mac 02:12:18:97:22:f6 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10544 flower src_mac 02:c8:bd:76:29:1d dst_mac 02:25:ff:6b:f8:d9 src_ip 63.183.75.108 dst_ip 107.140.131.26 ip_proto icmp code 133 type 0 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10545 flower src_mac 02:23:88:9b:17:d2 dst_mac 02:2d:4c:88:ef:56 vlan_id 1088 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10546 flower src_mac 02:28:f3:34:ac:30 dst_mac 02:bf:d7:09:c2:7f vlan_id 479 vlan_ethtype ip src_ip 121.122.234.249 dst_ip 67.152.249.139 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10547 flower src_mac 02:6e:ed:b6:3e:bb dst_mac 02:78:46:6d:78:70 vlan_id 2600 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10548 flower src_mac 02:f4:e5:17:0a:40 dst_mac 02:a5:2a:c4:9b:65 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10549 flower src_mac 02:86:75:dd:75:d7 dst_mac 02:dd:a2:1c:42:ce action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10550 flower src_mac 02:52:82:44:fd:43 dst_mac 02:81:36:95:41:c8 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10551 flower src_mac 02:ef:5e:ae:fe:a2 dst_mac 02:23:2e:c6:ad:0b vlan_id 3072 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10552 flower src_mac 02:5f:f0:98:4c:15 dst_mac 02:82:32:4d:35:81 src_ip 63.61.206.17 dst_ip 54.101.69.24 ip_proto udp src_port 12469 dst_port 19611 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10553 flower src_mac 02:0d:89:bb:1c:ad dst_mac 02:14:bf:64:ab:f1 src_ip 14.86.12.245 dst_ip 72.178.178.24 ip_proto tcp src_port 38484 dst_port 56283 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10554 flower src_mac 02:2b:38:ca:5b:59 dst_mac 02:de:b0:e7:c9:5d action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10555 flower src_mac 02:59:3d:67:a3:27 dst_mac 02:15:37:3a:01:15 vlan_id 1360 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10556 flower src_mac 02:23:cd:fc:b1:5e dst_mac 02:3c:95:ab:14:d3 vlan_id 298 vlan_ethtype ipv4 src_ip 95.98.41.155 dst_ip 27.135.179.41 ip_proto tcp src_port 320 dst_port 1381 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10557 flower src_mac 02:a7:e5:21:2b:ec dst_mac 02:18:4d:03:e1:d1 src_ip 86.210.77.108 dst_ip 107.139.42.93 ip_proto udp src_port 37289 dst_port 34626 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10558 flower src_mac 02:96:cf:a4:3c:5d dst_mac 02:55:50:ea:2c:c5 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10559 flower src_mac 02:7d:ef:76:5b:ce dst_mac 02:26:3e:fd:03:46 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10560 flower src_mac 02:07:65:b5:c9:65 dst_mac 02:2d:1d:18:2e:6f src_ip 112.152.48.200 dst_ip 119.21.189.184 ip_proto udp src_port 43818 dst_port 34056 action trap && tc filter add dev swp33 ingress protocol ip pref 10561 flower src_mac 02:4a:a5:a1:53:5a dst_mac 02:26:51:11:18:62 src_ip 121.115.105.114 dst_ip 55.93.166.152 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10562 flower src_mac 02:e5:d6:ff:4a:98 dst_mac 02:e1:c4:53:f3:35 vlan_id 557 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10563 flower src_mac 02:ff:10:f2:2f:b9 dst_mac 02:7e:d6:d3:23:3a vlan_id 144 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10564 flower src_mac 02:38:f6:68:c6:a5 dst_mac 02:55:e9:3e:68:89 action drop && tc filter add dev swp33 ingress protocol ip pref 10565 flower src_mac 02:58:95:4e:ab:05 dst_mac 02:54:33:41:85:6d src_ip 100.3.252.138 dst_ip 88.83.64.192 ip_proto tcp src_port 62378 dst_port 19427 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10566 flower src_mac 02:13:05:5e:3b:a1 dst_mac 02:a4:d5:4a:2e:75 vlan_id 3189 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10567 flower src_mac 02:8e:1a:d5:2a:94 dst_mac 02:fc:c4:87:f8:c8 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10568 flower src_mac 02:5b:2e:15:2b:31 dst_mac 02:21:9d:86:ff:03 vlan_id 584 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10569 flower src_mac 02:e5:3f:17:33:5d dst_mac 02:ec:fc:13:36:70 vlan_id 2485 vlan_ethtype ipv4 src_ip 17.229.7.29 dst_ip 84.14.35.40 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10570 flower src_mac 02:36:b8:ab:11:97 dst_mac 02:c6:b8:99:5c:31 vlan_id 1870 vlan_ethtype 0x0800 src_ip 105.207.254.154 dst_ip 57.108.167.3 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10571 flower src_mac 02:11:8b:3b:25:3c dst_mac 02:6c:a6:70:3d:a1 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10572 flower src_mac 02:cf:17:8f:e1:fd dst_mac 02:0b:73:09:2c:5a src_ip 113.225.114.36 dst_ip 59.125.135.85 ip_proto tcp src_port 60758 dst_port 2215 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10573 flower src_mac 02:25:0b:fc:ca:8d dst_mac 02:00:96:8e:87:a0 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10574 flower src_mac 02:36:98:de:14:f0 dst_mac 02:b2:37:d0:0c:29 src_ip 122.159.100.40 dst_ip 118.71.34.204 ip_proto tcp src_port 34487 dst_port 64658 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10575 flower src_mac 02:78:29:eb:51:2f dst_mac 02:9e:7d:17:8e:d3 vlan_id 68 vlan_ethtype ipv4 src_ip 57.169.88.244 dst_ip 27.59.51.125 ip_proto tcp src_port 51907 dst_port 55374 action trap && tc filter add dev swp33 ingress protocol ip pref 10576 flower src_mac 02:59:f6:e5:77:be dst_mac 02:6f:f4:2c:30:74 src_ip 87.145.193.80 dst_ip 26.209.235.179 ip_proto udp src_port 32164 dst_port 58893 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10577 flower src_mac 02:b1:dd:a4:3d:20 dst_mac 02:a6:4c:eb:2c:ca src_ip 100.89.210.4 dst_ip 67.191.242.145 ip_proto udp src_port 15172 dst_port 56905 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10578 flower src_mac 02:96:8b:82:5c:1f dst_mac 02:66:6c:6c:31:d4 src_ip 123.13.84.232 dst_ip 103.139.84.230 ip_proto udp src_port 23430 dst_port 8314 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10579 flower src_mac 02:45:c8:bd:9d:64 dst_mac 02:ff:e9:cc:d1:8a vlan_id 1768 vlan_ethtype ip src_ip 70.9.83.159 dst_ip 49.218.119.172 ip_proto udp src_port 23714 dst_port 65202 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10580 flower src_mac 02:99:11:09:7a:45 dst_mac 02:32:19:29:c9:47 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10581 flower src_mac 02:cf:d3:11:3d:8e dst_mac 02:4c:10:84:79:7b action drop && tc filter add dev swp33 ingress protocol ip pref 10582 flower src_mac 02:93:6c:72:06:c8 dst_mac 02:7c:9b:a5:12:c7 src_ip 76.164.251.27 dst_ip 22.208.127.104 ip_proto icmp code 156 type 3 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10583 flower src_mac 02:0f:04:a1:46:51 dst_mac 02:7a:d1:bb:a9:6c vlan_id 4071 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10584 flower src_mac 02:54:d3:e3:02:36 dst_mac 02:37:05:f7:ed:61 vlan_id 1263 vlan_ethtype ip src_ip 53.16.111.115 dst_ip 35.79.214.26 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10585 flower src_mac 02:63:11:ed:15:eb dst_mac 02:b8:9a:77:d0:19 vlan_id 2698 vlan_ethtype ip src_ip 76.184.220.129 dst_ip 124.4.104.76 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10586 flower src_mac 02:7d:2b:40:33:0f dst_mac 02:f2:28:eb:6c:60 vlan_id 2355 vlan_ethtype ipv4 src_ip 116.207.6.13 dst_ip 120.170.125.112 ip_proto udp src_port 35060 dst_port 17668 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10587 flower src_mac 02:a0:b1:08:f9:71 dst_mac 02:fb:60:c5:18:93 src_ip 69.99.126.109 dst_ip 47.247.197.136 ip_proto icmp code 39 type 0 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10588 flower src_mac 02:04:89:31:61:3c dst_mac 02:c4:70:6a:07:33 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10589 flower src_mac 02:94:2e:66:a6:02 dst_mac 02:9d:f6:f0:5d:78 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10590 flower src_mac 02:d1:89:8a:d3:b3 dst_mac 02:65:66:2e:4a:96 vlan_id 925 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10591 flower src_mac 02:4f:0b:81:33:d2 dst_mac 02:32:c5:47:b1:06 src_ip 42.194.149.184 dst_ip 108.224.192.128 ip_proto icmp code 224 type 14 action trap && tc filter add dev swp33 ingress protocol ip pref 10592 flower src_mac 02:21:b0:05:0d:00 dst_mac 02:26:98:cb:60:68 src_ip 100.24.60.169 dst_ip 106.3.211.153 ip_proto icmp code 78 type 16 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10593 flower src_mac 02:39:7a:1a:8a:55 dst_mac 02:89:65:fe:d4:dd action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10594 flower src_mac 02:b0:9e:ea:ec:b8 dst_mac 02:98:2c:97:ad:9a action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10595 flower src_mac 02:95:f2:d2:bf:71 dst_mac 02:4a:e7:db:22:13 vlan_id 380 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10596 flower src_mac 02:3e:c0:e6:5f:b9 dst_mac 02:66:e5:fc:04:f7 src_ip 65.149.149.27 dst_ip 66.62.70.26 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10597 flower src_mac 02:41:b7:07:2f:e4 dst_mac 02:69:f3:4a:ce:27 vlan_id 1661 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10598 flower src_mac 02:9b:fd:04:c1:95 dst_mac 02:a2:79:32:d5:f6 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10599 flower src_mac 02:a3:f3:5a:a6:5b dst_mac 02:e1:ee:aa:89:3f vlan_id 183 vlan_ethtype ipv4 src_ip 58.49.159.77 dst_ip 98.54.246.192 action trap && tc filter add dev swp33 ingress protocol ip pref 10600 flower src_mac 02:4e:51:23:c1:b1 dst_mac 02:55:25:b7:5f:8a src_ip 44.15.4.220 dst_ip 100.140.196.121 ip_proto udp src_port 39341 dst_port 45747 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10601 flower src_mac 02:37:53:a8:8c:ce dst_mac 02:41:bc:ab:43:13 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10602 flower src_mac 02:f4:28:20:7c:f1 dst_mac 02:99:d3:d6:80:2e vlan_id 381 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10603 flower src_mac 02:7c:ad:aa:26:da dst_mac 02:82:a2:95:93:a8 vlan_id 2754 vlan_ethtype ip src_ip 124.233.157.198 dst_ip 18.133.91.232 ip_proto tcp src_port 4147 dst_port 10490 action drop && tc filter add dev swp33 ingress protocol ip pref 10604 flower src_mac 02:4b:4d:74:5f:1d dst_mac 02:72:2c:47:d7:4f src_ip 102.136.134.228 dst_ip 106.180.109.73 ip_proto tcp src_port 12992 dst_port 33227 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10605 flower src_mac 02:67:94:a7:d1:c4 dst_mac 02:8a:5a:3c:ef:36 vlan_id 3082 vlan_ethtype ip src_ip 15.231.223.1 dst_ip 104.196.158.202 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10606 flower src_mac 02:8b:52:8c:6f:59 dst_mac 02:c1:78:5a:8f:f7 vlan_id 3974 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10607 flower src_mac 02:0c:b4:5d:3f:43 dst_mac 02:ea:b8:33:8d:e2 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10608 flower src_mac 02:0c:9e:bb:2a:36 dst_mac 02:37:d4:18:07:95 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10609 flower src_mac 02:83:11:bc:0b:a2 dst_mac 02:a5:41:35:97:af vlan_id 1112 vlan_ethtype ipv4 src_ip 77.248.16.199 dst_ip 65.114.122.34 ip_proto udp src_port 34684 dst_port 17441 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10610 flower src_mac 02:ce:46:3c:76:df dst_mac 02:2e:0a:d4:f0:3e vlan_id 1958 vlan_ethtype ipv4 src_ip 17.44.249.86 dst_ip 82.128.211.47 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10611 flower src_mac 02:eb:7f:e6:74:7e dst_mac 02:ff:45:5b:5c:3f vlan_id 457 vlan_ethtype ip src_ip 41.133.121.230 dst_ip 117.107.63.249 ip_proto tcp src_port 36242 dst_port 31421 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10612 flower src_mac 02:a8:46:a5:b6:f6 dst_mac 02:bb:42:df:c9:3e action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10613 flower src_mac 02:2e:12:13:4e:a1 dst_mac 02:3f:ba:76:c7:5f src_ip 90.109.205.101 dst_ip 57.154.130.1 ip_proto udp src_port 25604 dst_port 58514 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10614 flower src_mac 02:f9:ac:b5:72:56 dst_mac 02:89:ab:5e:ca:1c vlan_id 4090 vlan_ethtype 0x0800 src_ip 37.206.100.248 dst_ip 102.123.167.121 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10615 flower src_mac 02:38:cc:81:87:5f dst_mac 02:2d:9d:90:e1:2c vlan_id 540 vlan_ethtype 0x0800 src_ip 38.93.130.120 dst_ip 26.44.88.88 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10616 flower src_mac 02:77:72:fd:3a:8f dst_mac 02:e4:3c:15:37:6e action pass && tc filter add dev swp33 ingress protocol ip pref 10617 flower src_mac 02:d8:fd:b2:09:4c dst_mac 02:38:82:90:d6:8b src_ip 15.248.10.137 dst_ip 91.89.149.188 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10618 flower src_mac 02:b5:d0:40:62:56 dst_mac 02:2d:c9:1d:73:d3 vlan_id 1779 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10619 flower src_mac 02:ae:c3:c4:f0:44 dst_mac 02:13:be:bb:1c:db action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10620 flower src_mac 02:9c:91:be:ef:c8 dst_mac 02:98:ae:b7:8d:f8 vlan_id 2367 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10621 flower src_mac 02:0c:36:50:51:a3 dst_mac 02:7e:6e:f6:91:32 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10622 flower src_mac 02:f3:76:ec:af:22 dst_mac 02:52:e3:ec:3d:f8 vlan_id 1568 vlan_ethtype ip src_ip 87.226.150.133 dst_ip 28.59.117.66 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10623 flower src_mac 02:27:78:4c:6b:fc dst_mac 02:cd:99:ed:11:81 vlan_id 2811 vlan_ethtype ipv4 src_ip 104.110.110.181 dst_ip 64.165.96.108 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10624 flower src_mac 02:e9:a5:12:f2:55 dst_mac 02:b8:d1:7c:73:69 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10625 flower src_mac 02:80:bd:a9:07:c6 dst_mac 02:9f:68:95:fb:6c src_ip 72.89.248.85 dst_ip 120.203.139.54 ip_proto icmp code 36 type 17 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10626 flower src_mac 02:d1:a9:f2:60:30 dst_mac 02:ac:55:f8:c8:c3 vlan_id 2703 vlan_ethtype ipv4 src_ip 32.153.221.92 dst_ip 33.250.84.26 ip_proto udp src_port 9008 dst_port 29115 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10627 flower src_mac 02:f1:34:54:bd:db dst_mac 02:4d:05:df:d1:a5 vlan_id 37 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10628 flower src_mac 02:b6:ae:ba:3e:38 dst_mac 02:85:f7:d1:25:c8 vlan_id 1645 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10629 flower src_mac 02:10:0b:08:69:99 dst_mac 02:25:ea:64:49:60 src_ip 67.121.163.241 dst_ip 46.138.131.72 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10630 flower src_mac 02:1c:85:9e:f8:db dst_mac 02:f1:75:1c:72:6a vlan_id 3774 vlan_ethtype 0x0800 src_ip 101.166.249.142 dst_ip 84.233.168.23 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10631 flower src_mac 02:06:fd:0f:ab:1a dst_mac 02:50:34:31:46:01 vlan_id 3872 vlan_ethtype 0x0800 src_ip 105.142.2.7 dst_ip 112.93.7.222 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10632 flower src_mac 02:da:c0:7c:ad:c6 dst_mac 02:eb:b5:aa:68:e0 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10633 flower src_mac 02:30:55:b5:34:86 dst_mac 02:17:1f:4a:80:9e action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10634 flower src_mac 02:1c:28:62:dc:fa dst_mac 02:1f:b6:db:1b:cc src_ip 71.99.14.4 dst_ip 45.2.217.157 ip_proto udp src_port 17059 dst_port 24038 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10635 flower src_mac 02:b1:4c:17:fb:2f dst_mac 02:a9:4e:da:9c:9d vlan_id 2203 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10636 flower src_mac 02:e9:14:9b:2b:00 dst_mac 02:af:76:49:28:83 vlan_id 4015 vlan_ethtype ipv4 src_ip 71.124.108.140 dst_ip 89.163.121.123 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10637 flower src_mac 02:59:23:21:aa:4c dst_mac 02:ce:76:74:e8:da vlan_id 871 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10638 flower src_mac 02:33:eb:e0:67:16 dst_mac 02:6b:c5:47:e7:33 vlan_id 1219 vlan_ethtype ip src_ip 42.230.192.135 dst_ip 54.53.37.115 ip_proto tcp src_port 16618 dst_port 21617 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10639 flower src_mac 02:9d:a0:74:8b:fc dst_mac 02:3f:df:60:46:b7 src_ip 84.214.184.72 dst_ip 34.61.135.141 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10640 flower src_mac 02:3f:49:18:8d:04 dst_mac 02:03:eb:a6:6c:00 src_ip 124.62.65.168 dst_ip 70.83.243.162 ip_proto udp src_port 11488 dst_port 27147 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10641 flower src_mac 02:97:7b:72:77:96 dst_mac 02:a2:75:cb:c5:0d src_ip 25.1.61.184 dst_ip 72.6.37.239 ip_proto udp src_port 38313 dst_port 34308 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10642 flower src_mac 02:39:5a:11:e6:3e dst_mac 02:82:4f:8d:f9:72 vlan_id 2112 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10643 flower src_mac 02:a0:93:01:07:85 dst_mac 02:84:20:33:21:8f src_ip 100.217.125.132 dst_ip 63.198.46.118 ip_proto icmp code 48 type 17 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10644 flower src_mac 02:9a:90:2d:04:57 dst_mac 02:69:d4:b0:c4:4e src_ip 85.242.137.210 dst_ip 110.26.169.40 ip_proto icmp code 169 type 18 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10645 flower src_mac 02:31:4f:0a:47:13 dst_mac 02:ef:2f:7c:c4:65 src_ip 89.101.131.250 dst_ip 13.29.185.94 ip_proto icmp code 200 type 17 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10646 flower src_mac 02:5e:49:55:d5:7e dst_mac 02:90:34:fd:11:0d src_ip 87.42.167.79 dst_ip 98.211.53.185 ip_proto tcp src_port 59083 dst_port 62676 action trap && tc filter add dev swp33 ingress protocol ip pref 10647 flower src_mac 02:bb:52:9a:48:8e dst_mac 02:c4:c7:35:3b:7f src_ip 15.4.210.202 dst_ip 113.187.79.101 ip_proto tcp src_port 58559 dst_port 43204 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10648 flower src_mac 02:da:c2:80:cd:8f dst_mac 02:a8:13:c4:62:91 vlan_id 1916 vlan_ethtype 0x0800 src_ip 108.29.115.182 dst_ip 30.207.12.205 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10649 flower src_mac 02:28:60:86:d7:d7 dst_mac 02:b1:0f:ce:a5:cf action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10650 flower src_mac 02:c8:6d:4c:48:24 dst_mac 02:90:91:46:6e:ca action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10651 flower src_mac 02:92:3e:70:44:34 dst_mac 02:e6:6f:9e:d1:5c action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10652 flower src_mac 02:67:ca:90:e7:8e dst_mac 02:d6:20:2e:bb:77 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10653 flower src_mac 02:18:da:69:0e:48 dst_mac 02:0f:21:c6:a6:5d vlan_id 3042 vlan_ethtype 0x0800 src_ip 122.9.150.7 dst_ip 63.10.254.23 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10654 flower src_mac 02:bb:71:eb:8d:32 dst_mac 02:62:1d:5c:6b:47 src_ip 101.165.40.130 dst_ip 16.43.240.242 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10655 flower src_mac 02:76:c0:4c:1c:6d dst_mac 02:98:0b:71:68:81 vlan_id 2394 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10656 flower src_mac 02:9d:2a:06:9d:3f dst_mac 02:95:8f:0d:28:65 vlan_id 1876 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10657 flower src_mac 02:31:20:33:11:94 dst_mac 02:a1:b2:c2:5e:52 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10658 flower src_mac 02:ed:4d:e0:b2:73 dst_mac 02:e5:cb:b8:c3:83 vlan_id 1293 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10659 flower src_mac 02:58:68:a2:74:a9 dst_mac 02:0b:9f:18:d1:04 action drop && tc filter add dev swp33 ingress protocol ip pref 10660 flower src_mac 02:7c:16:6f:8f:92 dst_mac 02:c9:d3:ce:41:33 src_ip 17.64.58.7 dst_ip 124.240.72.115 ip_proto tcp src_port 37209 dst_port 16673 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10661 flower src_mac 02:c7:7b:13:40:dd dst_mac 02:87:75:df:ed:43 vlan_id 4049 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10662 flower src_mac 02:1f:d6:45:fc:4e dst_mac 02:93:24:68:8b:f6 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10663 flower src_mac 02:bd:41:f1:eb:a1 dst_mac 02:d3:fa:6b:87:48 vlan_id 1147 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10664 flower src_mac 02:21:92:32:4a:10 dst_mac 02:20:0e:d1:12:93 vlan_id 1041 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10665 flower src_mac 02:89:ce:d6:2e:bf dst_mac 02:2e:8b:e7:68:f0 vlan_id 2622 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10666 flower src_mac 02:40:c5:13:68:ce dst_mac 02:ba:8f:43:56:0f vlan_id 22 vlan_ethtype ipv4 src_ip 109.106.65.181 dst_ip 65.235.208.66 ip_proto udp src_port 23758 dst_port 46963 action pass && tc filter add dev swp33 ingress protocol ip pref 10667 flower src_mac 02:b5:82:32:14:82 dst_mac 02:cf:ff:8a:25:75 src_ip 31.225.33.56 dst_ip 72.139.238.85 ip_proto tcp src_port 8476 dst_port 17130 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10668 flower src_mac 02:a0:e2:8f:b6:ff dst_mac 02:0b:04:61:75:78 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10669 flower src_mac 02:6d:87:9d:ce:26 dst_mac 02:b3:31:d6:86:85 vlan_id 86 vlan_ethtype 0x0800 src_ip 19.64.63.22 dst_ip 37.78.135.46 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10670 flower src_mac 02:5c:24:38:c0:fa dst_mac 02:a2:ad:54:72:0f src_ip 95.155.254.95 dst_ip 60.90.218.208 ip_proto udp src_port 9950 dst_port 54832 action pass && tc filter add dev swp33 ingress protocol ip pref 10671 flower src_mac 02:04:13:d0:c8:a8 dst_mac 02:b1:fe:a7:3a:fb src_ip 49.223.58.109 dst_ip 25.170.175.39 ip_proto icmp code 119 type 16 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10672 flower src_mac 02:85:a4:ed:fe:89 dst_mac 02:f0:69:19:6a:c3 vlan_id 3523 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10673 flower src_mac 02:f8:25:5d:e7:f2 dst_mac 02:9d:8e:3f:bf:03 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10674 flower src_mac 02:24:27:c8:fd:8f dst_mac 02:03:6c:60:2e:50 vlan_id 2187 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10675 flower src_mac 02:f0:33:9e:0d:49 dst_mac 02:fe:53:3c:6c:d3 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10676 flower src_mac 02:59:f0:3b:97:b3 dst_mac 02:10:01:3c:cd:86 vlan_id 3522 vlan_ethtype ipv4 src_ip 48.224.179.131 dst_ip 104.190.207.73 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10677 flower src_mac 02:e1:50:b3:e7:87 dst_mac 02:39:c3:85:a8:74 vlan_id 3045 vlan_ethtype ipv4 src_ip 113.45.208.143 dst_ip 98.55.252.53 ip_proto udp src_port 39806 dst_port 19407 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10678 flower src_mac 02:73:28:1e:5f:ad dst_mac 02:ba:e4:7a:d0:c6 action pass && tc filter add dev swp33 ingress protocol ip pref 10679 flower src_mac 02:c3:a3:ca:40:92 dst_mac 02:51:f6:1c:52:b3 src_ip 74.204.143.105 dst_ip 120.100.111.233 ip_proto icmp code 17 type 11 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10680 flower src_mac 02:29:ef:2e:89:8a dst_mac 02:01:d1:ab:3c:b1 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10681 flower src_mac 02:0a:84:c5:8d:27 dst_mac 02:7a:b1:50:ff:23 vlan_id 1486 vlan_ethtype ip src_ip 39.231.24.181 dst_ip 40.104.35.100 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10682 flower src_mac 02:1e:7d:33:bc:a7 dst_mac 02:2b:1b:96:45:a8 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10683 flower src_mac 02:dd:aa:80:8f:81 dst_mac 02:af:b9:39:58:dc action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10684 flower src_mac 02:6b:71:44:cd:7c dst_mac 02:3e:38:c0:9c:c9 vlan_id 1763 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10685 flower src_mac 02:92:ae:5a:c9:7e dst_mac 02:11:ab:4a:0e:85 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10686 flower src_mac 02:64:ae:41:96:e5 dst_mac 02:ac:3a:76:b7:64 vlan_id 334 vlan_ethtype ipv4 src_ip 102.54.165.88 dst_ip 114.70.181.103 ip_proto tcp src_port 64026 dst_port 24116 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10687 flower src_mac 02:b6:02:80:e9:78 dst_mac 02:2a:df:75:0f:b6 vlan_id 2771 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10688 flower src_mac 02:31:e5:38:bf:32 dst_mac 02:99:32:9d:75:0f vlan_id 2493 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10689 flower src_mac 02:ea:6e:94:94:f0 dst_mac 02:f9:74:b9:fa:e1 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10690 flower src_mac 02:2d:a4:9c:2b:48 dst_mac 02:bb:ab:c0:de:1e src_ip 86.239.19.215 dst_ip 87.240.94.216 ip_proto tcp src_port 41684 dst_port 63904 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10691 flower src_mac 02:0d:ae:88:c3:e1 dst_mac 02:ae:55:94:e6:b3 vlan_id 240 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10692 flower src_mac 02:fe:bf:a8:a9:05 dst_mac 02:73:55:98:7a:2b action trap && tc filter add dev swp33 ingress protocol ip pref 10693 flower src_mac 02:bc:fe:89:76:1d dst_mac 02:a1:8d:71:2b:b3 src_ip 72.112.182.40 dst_ip 32.183.129.22 ip_proto udp src_port 58959 dst_port 52356 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10694 flower src_mac 02:87:87:d1:bf:58 dst_mac 02:6c:f3:3d:8b:e1 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10695 flower src_mac 02:e9:07:78:d6:00 dst_mac 02:56:41:b8:94:38 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10696 flower src_mac 02:8e:03:76:f6:db dst_mac 02:de:13:c7:a8:f5 vlan_id 872 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10697 flower src_mac 02:38:e8:b7:76:95 dst_mac 02:6f:98:0d:1a:a0 vlan_id 3203 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10698 flower src_mac 02:2e:04:a5:fd:7d dst_mac 02:01:c8:c7:f0:48 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10699 flower src_mac 02:f0:8c:26:5e:ad dst_mac 02:f3:42:3b:f5:98 vlan_id 3990 vlan_ethtype 0x0800 src_ip 87.106.225.124 dst_ip 85.31.244.144 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10700 flower src_mac 02:96:b3:4a:37:ee dst_mac 02:83:aa:80:e2:d7 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10701 flower src_mac 02:3d:32:18:1e:7c dst_mac 02:e5:ba:67:5f:fc vlan_id 2908 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10702 flower src_mac 02:52:ad:73:2a:07 dst_mac 02:7a:e2:bf:9e:bd action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10703 flower src_mac 02:3c:2e:eb:f4:ce dst_mac 02:e8:be:d5:fd:1e action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10704 flower src_mac 02:8d:8a:af:ca:ec dst_mac 02:bb:3a:c6:69:43 vlan_id 3730 vlan_ethtype ip src_ip 119.5.109.77 dst_ip 48.138.91.74 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10705 flower src_mac 02:37:23:17:0a:fb dst_mac 02:f7:7a:2f:67:44 vlan_id 2092 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol ip pref 10706 flower src_mac 02:e1:16:73:0b:15 dst_mac 02:8c:5a:dd:58:13 src_ip 90.102.157.245 dst_ip 62.189.191.203 ip_proto icmp code 249 type 12 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10707 flower src_mac 02:bc:db:06:3e:35 dst_mac 02:17:c9:ff:15:8b src_ip 54.48.67.225 dst_ip 56.39.186.119 ip_proto tcp src_port 10971 dst_port 32716 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10708 flower src_mac 02:43:34:d6:9a:aa dst_mac 02:72:aa:ea:9b:36 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10709 flower src_mac 02:94:eb:85:11:5d dst_mac 02:ec:2f:21:5d:5d vlan_id 151 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10710 flower src_mac 02:b9:e1:ba:f9:90 dst_mac 02:0e:ef:18:64:0c action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10711 flower src_mac 02:e0:2c:41:f9:87 dst_mac 02:a6:61:69:22:6c src_ip 45.2.13.100 dst_ip 37.56.94.147 ip_proto udp src_port 14489 dst_port 36999 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10712 flower src_mac 02:15:d6:1a:ee:e4 dst_mac 02:f1:40:b3:f0:82 vlan_id 3950 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10713 flower src_mac 02:ef:75:d7:5f:28 dst_mac 02:a6:96:59:6a:22 vlan_id 1742 vlan_ethtype ipv4 src_ip 50.80.161.70 dst_ip 83.176.156.156 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10714 flower src_mac 02:3c:8c:b7:01:45 dst_mac 02:bf:2c:f8:f5:7b vlan_id 726 vlan_ethtype ip src_ip 85.139.208.187 dst_ip 61.179.11.237 ip_proto tcp src_port 35638 dst_port 26945 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10715 flower src_mac 02:f8:4c:33:4e:c0 dst_mac 02:ae:13:d6:69:d7 action pass && tc filter add dev swp33 ingress protocol ip pref 10716 flower src_mac 02:11:3a:e7:8c:ef dst_mac 02:c3:81:84:3e:e8 src_ip 41.68.249.61 dst_ip 24.121.86.53 ip_proto tcp src_port 37628 dst_port 4162 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10717 flower src_mac 02:76:ad:ef:8f:8a dst_mac 02:4f:e4:e3:a3:03 vlan_id 1398 vlan_ethtype 0x0800 src_ip 44.194.95.131 dst_ip 77.105.191.240 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10718 flower src_mac 02:41:12:19:63:fe dst_mac 02:49:b4:b8:0a:61 src_ip 29.25.144.140 dst_ip 34.108.32.234 ip_proto tcp src_port 34611 dst_port 29802 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10719 flower src_mac 02:97:a3:ec:dc:00 dst_mac 02:4c:68:45:bf:58 vlan_id 1777 vlan_ethtype ip src_ip 72.149.221.143 dst_ip 22.235.43.48 ip_proto udp src_port 19557 dst_port 2789 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10720 flower src_mac 02:4b:cf:e2:cd:e1 dst_mac 02:2b:7e:8b:92:46 vlan_id 843 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol ip pref 10721 flower src_mac 02:08:42:67:70:3e dst_mac 02:b3:ae:3e:a6:b3 src_ip 70.216.125.22 dst_ip 77.250.176.27 ip_proto udp src_port 62514 dst_port 6413 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10722 flower src_mac 02:05:57:f2:73:47 dst_mac 02:30:55:95:d9:f1 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10723 flower src_mac 02:97:a1:84:4d:24 dst_mac 02:17:e7:4c:44:7b action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10724 flower src_mac 02:a5:85:ca:bb:b6 dst_mac 02:12:3f:16:26:66 src_ip 13.122.243.227 dst_ip 97.102.24.146 ip_proto icmp code 14 type 12 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10725 flower src_mac 02:79:cb:f5:c0:58 dst_mac 02:45:ae:1d:01:ae action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10726 flower src_mac 02:75:00:71:f0:67 dst_mac 02:66:77:03:8e:f0 src_ip 57.30.215.194 dst_ip 15.175.105.195 ip_proto tcp src_port 47517 dst_port 42430 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10727 flower src_mac 02:f5:38:1b:f4:32 dst_mac 02:fc:0d:9a:8e:7a src_ip 92.106.216.58 dst_ip 48.71.255.4 ip_proto tcp src_port 28838 dst_port 38241 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10728 flower src_mac 02:a4:6f:ac:5b:7b dst_mac 02:f6:eb:74:d5:75 vlan_id 1247 vlan_ethtype ipv4 src_ip 120.212.89.30 dst_ip 92.18.76.58 ip_proto tcp src_port 43101 dst_port 19524 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10729 flower src_mac 02:06:ed:28:38:0b dst_mac 02:02:8b:72:31:f6 vlan_id 3356 vlan_ethtype 0x0800 src_ip 12.41.135.128 dst_ip 101.246.24.167 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10730 flower src_mac 02:a0:7f:8c:44:ae dst_mac 02:0a:48:18:07:d8 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10731 flower src_mac 02:4b:9a:a0:89:f6 dst_mac 02:b6:81:41:9a:69 vlan_id 3210 vlan_ethtype 0x0800 src_ip 85.226.4.129 dst_ip 39.153.96.172 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10732 flower src_mac 02:cf:39:a4:8b:da dst_mac 02:f7:fe:3a:86:af action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10733 flower src_mac 02:3d:83:bd:b8:1d dst_mac 02:6a:6b:6c:37:6a action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10734 flower src_mac 02:59:f3:82:d8:97 dst_mac 02:4c:8d:14:d6:45 vlan_id 1873 vlan_ethtype ip src_ip 47.228.107.31 dst_ip 94.45.65.234 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10735 flower src_mac 02:f5:ec:04:75:e0 dst_mac 02:2e:14:ca:3b:bc action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10736 flower src_mac 02:aa:86:65:44:9f dst_mac 02:3a:b4:55:88:b5 src_ip 47.204.45.20 dst_ip 70.135.242.147 ip_proto udp src_port 41183 dst_port 36942 action trap && tc filter add dev swp33 ingress protocol ip pref 10737 flower src_mac 02:d5:f8:63:e4:40 dst_mac 02:f7:93:31:9a:ab src_ip 47.5.92.30 dst_ip 16.7.249.80 ip_proto udp src_port 47690 dst_port 56480 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10738 flower src_mac 02:d4:b1:62:4b:06 dst_mac 02:28:36:ea:7a:bd action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10739 flower src_mac 02:5d:57:d3:b6:d5 dst_mac 02:d2:37:e9:73:32 src_ip 54.177.237.123 dst_ip 122.178.171.27 ip_proto tcp src_port 56439 dst_port 13005 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10740 flower src_mac 02:b2:dd:5f:61:f4 dst_mac 02:2b:dd:8d:bb:1d vlan_id 1432 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol ip pref 10741 flower src_mac 02:5b:8a:ee:73:a1 dst_mac 02:e4:9d:e2:a8:44 src_ip 21.113.106.63 dst_ip 13.171.242.2 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10742 flower src_mac 02:92:24:9d:93:5c dst_mac 02:91:b8:d2:b1:e3 vlan_id 42 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10743 flower src_mac 02:a0:ca:ba:dc:86 dst_mac 02:dc:14:f1:fb:cf vlan_id 2787 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol ip pref 10744 flower src_mac 02:41:4b:e2:47:3e dst_mac 02:9a:03:b0:e1:49 src_ip 26.148.102.143 dst_ip 14.75.73.241 ip_proto tcp src_port 49583 dst_port 56629 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10745 flower src_mac 02:97:0d:b6:86:4e dst_mac 02:b5:45:09:20:91 vlan_id 1510 vlan_ethtype ip src_ip 64.217.245.21 dst_ip 75.159.91.64 ip_proto tcp src_port 46015 dst_port 41244 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10746 flower src_mac 02:1b:99:af:e1:f3 dst_mac 02:0d:cc:1b:c8:d4 vlan_id 3284 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol ip pref 10747 flower src_mac 02:cb:fd:76:e4:7e dst_mac 02:30:7d:64:07:38 src_ip 45.21.126.248 dst_ip 114.95.200.120 ip_proto icmp code 254 type 8 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10748 flower src_mac 02:c2:91:f1:c3:3d dst_mac 02:52:90:fe:da:0b vlan_id 2913 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10749 flower src_mac 02:8b:d6:c8:2d:7f dst_mac 02:07:4a:88:4c:b4 src_ip 34.81.201.34 dst_ip 77.113.201.123 ip_proto udp src_port 20244 dst_port 4621 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10750 flower src_mac 02:1f:bb:43:9a:40 dst_mac 02:5b:5a:91:da:01 vlan_id 2593 vlan_ethtype ipv4 src_ip 58.186.23.156 dst_ip 98.68.23.10 ip_proto udp src_port 60291 dst_port 59043 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10751 flower src_mac 02:7e:b6:7e:fd:22 dst_mac 02:7c:e9:88:28:7a src_ip 101.157.151.44 dst_ip 94.114.185.242 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10752 flower src_mac 02:44:d6:e7:28:7e dst_mac 02:dd:55:03:62:c5 vlan_id 2082 vlan_ethtype ip src_ip 124.68.53.133 dst_ip 99.254.46.198 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10753 flower src_mac 02:94:bb:78:e0:46 dst_mac 02:d8:cb:e4:5c:d7 src_ip 13.35.108.89 dst_ip 49.167.52.166 ip_proto icmp code 219 type 18 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10754 flower src_mac 02:b3:11:43:04:db dst_mac 02:e7:35:96:cb:18 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10755 flower src_mac 02:5c:ee:c3:1e:3a dst_mac 02:fe:05:74:0e:3c src_ip 87.161.248.17 dst_ip 52.81.62.93 ip_proto icmp code 179 type 16 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10756 flower src_mac 02:5a:3b:83:cf:10 dst_mac 02:c1:09:39:7c:ae action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10757 flower src_mac 02:8c:97:65:9d:95 dst_mac 02:93:3d:27:81:f6 vlan_id 1106 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10758 flower src_mac 02:a7:93:2b:92:f7 dst_mac 02:bf:4e:41:cc:fb action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10759 flower src_mac 02:69:26:a7:63:26 dst_mac 02:6f:6a:d4:ca:68 vlan_id 2232 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10760 flower src_mac 02:76:71:43:35:10 dst_mac 02:f5:ce:d0:3f:c7 vlan_id 1688 vlan_ethtype ip src_ip 46.109.115.124 dst_ip 56.218.74.203 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10761 flower src_mac 02:67:a1:7b:86:ea dst_mac 02:45:cb:db:55:92 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10762 flower src_mac 02:40:47:c3:12:82 dst_mac 02:59:e1:96:b2:45 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10763 flower src_mac 02:06:30:33:44:35 dst_mac 02:c9:0c:4a:bd:4e vlan_id 1701 vlan_ethtype ipv4 src_ip 59.197.57.36 dst_ip 49.23.70.84 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10764 flower src_mac 02:e5:f1:0e:97:54 dst_mac 02:1f:1f:89:23:c9 vlan_id 1264 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10765 flower src_mac 02:54:cf:12:76:d8 dst_mac 02:97:20:ea:a6:a0 action drop && tc filter add dev swp33 ingress protocol ip pref 10766 flower src_mac 02:ff:2b:b0:6a:80 dst_mac 02:56:bd:ea:37:8c src_ip 50.211.176.245 dst_ip 98.5.48.65 ip_proto icmp code 224 type 12 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10767 flower src_mac 02:85:b9:2f:a2:a9 dst_mac 02:76:6e:66:f0:b3 vlan_id 3818 vlan_ethtype 0x0800 src_ip 83.132.114.64 dst_ip 74.145.190.250 ip_proto udp src_port 64751 dst_port 55056 action trap && tc filter add dev swp33 ingress protocol ip pref 10768 flower src_mac 02:b9:48:78:aa:a6 dst_mac 02:66:70:fb:8a:56 src_ip 114.98.127.30 dst_ip 50.155.75.69 ip_proto udp src_port 53501 dst_port 30870 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10769 flower src_mac 02:42:89:3c:42:5a dst_mac 02:40:06:cc:59:81 vlan_id 3321 vlan_ethtype ip src_ip 34.244.212.248 dst_ip 107.109.227.112 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10770 flower src_mac 02:14:ff:66:53:bd dst_mac 02:4f:db:f2:80:89 vlan_id 3729 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10771 flower src_mac 02:34:4b:fa:6b:f9 dst_mac 02:20:f8:d2:6f:d1 vlan_id 1069 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10772 flower src_mac 02:c9:b8:3a:fa:15 dst_mac 02:6c:59:43:c6:b3 vlan_id 1633 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10773 flower src_mac 02:40:9b:cb:bc:a7 dst_mac 02:f4:e3:29:06:60 src_ip 26.117.200.95 dst_ip 34.112.208.241 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10774 flower src_mac 02:be:37:2d:78:b7 dst_mac 02:c1:ba:2c:17:66 vlan_id 2681 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10775 flower src_mac 02:1e:8b:36:8b:5d dst_mac 02:21:85:5b:ad:ae action pass && tc filter add dev swp33 ingress protocol ip pref 10776 flower src_mac 02:a9:39:ba:3c:66 dst_mac 02:c3:18:31:d9:ad src_ip 111.231.150.75 dst_ip 42.189.180.58 ip_proto udp src_port 39611 dst_port 28469 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10777 flower src_mac 02:92:7f:b3:58:9c dst_mac 02:1e:a0:42:f8:72 vlan_id 1330 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10778 flower src_mac 02:2f:3d:e2:1d:cc dst_mac 02:00:c2:22:8f:94 vlan_id 1783 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10779 flower src_mac 02:95:f2:61:b6:76 dst_mac 02:61:ed:bc:98:e5 src_ip 112.106.94.158 dst_ip 76.124.18.68 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10780 flower src_mac 02:2f:e9:cc:be:b9 dst_mac 02:18:c5:08:dd:09 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10781 flower src_mac 02:16:bf:18:bb:77 dst_mac 02:3e:24:0f:2f:20 vlan_id 1024 vlan_ethtype 0x0800 src_ip 113.233.32.43 dst_ip 94.106.71.160 action trap && tc filter add dev swp33 ingress protocol ip pref 10782 flower src_mac 02:99:56:04:28:3e dst_mac 02:4d:18:20:d1:79 src_ip 13.24.54.184 dst_ip 20.118.21.110 ip_proto udp src_port 33083 dst_port 62175 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10783 flower src_mac 02:5b:09:dc:d9:4b dst_mac 02:a5:52:04:73:89 vlan_id 3296 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol ip pref 10784 flower src_mac 02:fe:c6:85:55:8a dst_mac 02:be:91:45:ce:70 src_ip 51.246.81.94 dst_ip 79.126.137.209 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10785 flower src_mac 02:1c:55:1f:99:79 dst_mac 02:ce:e2:56:09:d8 vlan_id 3559 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10786 flower src_mac 02:dc:b8:04:33:4a dst_mac 02:09:31:89:05:50 vlan_id 385 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10787 flower src_mac 02:de:6b:8a:15:d2 dst_mac 02:a0:54:b6:00:ac src_ip 34.17.147.116 dst_ip 84.31.51.73 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10788 flower src_mac 02:bf:48:bb:ea:4f dst_mac 02:46:65:8b:a4:62 vlan_id 2503 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10789 flower src_mac 02:e7:62:09:17:1a dst_mac 02:fd:84:51:da:4c vlan_id 2251 vlan_ethtype 0x0800 src_ip 86.12.163.10 dst_ip 54.245.34.192 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10790 flower src_mac 02:d8:78:75:f3:1b dst_mac 02:b5:81:d0:fb:2e vlan_id 1238 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10791 flower src_mac 02:d0:56:72:48:53 dst_mac 02:c6:32:23:56:90 vlan_id 893 vlan_ethtype ipv4 src_ip 89.171.246.89 dst_ip 116.253.32.65 ip_proto tcp src_port 33111 dst_port 48331 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10792 flower src_mac 02:a8:9d:86:0d:bf dst_mac 02:ee:96:24:3f:f1 vlan_id 2349 vlan_ethtype ip src_ip 81.230.62.46 dst_ip 116.183.140.86 ip_proto tcp src_port 25219 dst_port 59593 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10793 flower src_mac 02:55:94:42:7f:50 dst_mac 02:de:56:81:e9:5c vlan_id 1532 vlan_ethtype 0x0800 src_ip 71.187.87.64 dst_ip 14.251.22.133 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10794 flower src_mac 02:0d:0c:8e:91:8a dst_mac 02:f7:d4:1f:ef:83 vlan_id 692 vlan_ethtype 0x0800 src_ip 115.253.71.223 dst_ip 27.154.77.185 ip_proto udp src_port 45993 dst_port 6940 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10795 flower src_mac 02:0f:fa:1c:9e:d8 dst_mac 02:7f:86:59:63:5a vlan_id 2237 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10796 flower src_mac 02:1b:2f:32:a0:b0 dst_mac 02:10:8d:91:97:48 vlan_id 2475 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10797 flower src_mac 02:f2:d5:d6:29:3c dst_mac 02:c3:79:c7:3f:8f src_ip 105.222.32.95 dst_ip 122.221.1.170 ip_proto udp src_port 63762 dst_port 8365 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10798 flower src_mac 02:ca:9e:02:9e:e0 dst_mac 02:eb:39:55:7a:68 src_ip 93.135.249.136 dst_ip 27.238.148.4 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10799 flower src_mac 02:bb:7e:cf:3d:fc dst_mac 02:9f:b5:97:64:23 src_ip 97.213.59.1 dst_ip 14.117.97.119 ip_proto tcp src_port 53898 dst_port 39551 action trap INFO asyncssh:logging.py:92 [conn=24, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=6] Command: tc filter add dev swp33 ingress protocol 0x9200 pref 10400 flower src_mac 02:f2:26:2b:46:79 dst_mac 02:86:52:97:69:17 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10401 flower src_mac 02:96:94:73:2c:eb dst_mac 02:7a:7d:3e:2e:10 vlan_id 1100 vlan_ethtype ip src_ip 86.208.32.18 dst_ip 68.255.131.18 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10402 flower src_mac 02:0d:7d:00:b0:68 dst_mac 02:24:ed:4c:0c:8e action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10403 flower src_mac 02:52:be:bb:11:d6 dst_mac 02:a2:26:2e:bc:48 vlan_id 1220 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol ip pref 10404 flower src_mac 02:a9:2f:a4:5c:ce dst_mac 02:65:09:e5:29:b3 src_ip 35.220.162.105 dst_ip 46.155.1.10 ip_proto tcp src_port 3851 dst_port 27902 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10405 flower src_mac 02:58:89:3b:dd:70 dst_mac 02:11:39:4c:98:c8 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10406 flower src_mac 02:e2:6b:fc:62:04 dst_mac 02:bb:df:75:35:b7 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10407 flower src_mac 02:c4:d5:57:3a:e3 dst_mac 02:a1:c7:5a:77:76 vlan_id 4081 vlan_ethtype 0x0800 src_ip 46.73.165.191 dst_ip 121.90.232.147 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10408 flower src_mac 02:6f:65:2b:ec:16 dst_mac 02:d2:b5:79:ac:66 src_ip 43.99.62.110 dst_ip 104.252.92.86 ip_proto tcp src_port 19616 dst_port 16747 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10409 flower src_mac 02:17:08:e2:f1:80 dst_mac 02:dd:e8:03:5b:c2 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10410 flower src_mac 02:fa:4b:de:06:fc dst_mac 02:6b:56:ec:c9:bc action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10411 flower src_mac 02:22:1c:31:04:3c dst_mac 02:55:f8:3c:30:19 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10412 flower src_mac 02:38:6c:da:71:f1 dst_mac 02:0e:dd:b8:fd:9e action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10413 flower src_mac 02:71:d3:53:6b:1c dst_mac 02:28:63:40:c3:16 vlan_id 1467 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol ip pref 10414 flower src_mac 02:c4:0c:18:a5:c7 dst_mac 02:67:29:1f:b8:d8 src_ip 96.67.247.118 dst_ip 41.101.149.240 ip_proto udp src_port 11791 dst_port 60186 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10415 flower src_mac 02:ae:66:9a:6d:74 dst_mac 02:97:eb:f0:45:5d vlan_id 809 vlan_ethtype 0x0800 src_ip 60.253.10.71 dst_ip 93.199.41.176 ip_proto udp src_port 60426 dst_port 37465 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10416 flower src_mac 02:11:cd:dd:00:71 dst_mac 02:d6:97:9e:17:1b action trap && tc filter add dev swp33 ingress protocol ip pref 10417 flower src_mac 02:20:ed:98:ea:86 dst_mac 02:a9:f4:74:3f:b4 src_ip 78.230.26.243 dst_ip 19.244.53.19 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10418 flower src_mac 02:68:75:a5:03:f6 dst_mac 02:44:c0:df:27:25 vlan_id 3202 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10419 flower src_mac 02:8d:e1:07:7c:df dst_mac 02:90:8e:e5:dd:d2 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10420 flower src_mac 02:5e:5c:9a:0f:04 dst_mac 02:0f:72:3c:c4:55 src_ip 86.232.46.62 dst_ip 73.67.92.8 ip_proto icmp code 246 type 4 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10421 flower src_mac 02:aa:32:41:e5:b4 dst_mac 02:8c:18:d2:ee:dc vlan_id 4075 vlan_ethtype ipv4 src_ip 91.191.73.215 dst_ip 123.151.16.78 ip_proto tcp src_port 30693 dst_port 27850 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10422 flower src_mac 02:06:15:0a:58:a0 dst_mac 02:a2:7f:a5:78:07 src_ip 119.198.16.58 dst_ip 105.137.182.137 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10423 flower src_mac 02:cc:49:4c:b9:f3 dst_mac 02:86:7d:48:cd:d6 vlan_id 1697 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10424 flower src_mac 02:f7:e4:4d:b0:d6 dst_mac 02:af:5c:00:c7:17 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10425 flower src_mac 02:29:91:e0:bf:f8 dst_mac 02:64:52:9b:af:33 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10426 flower src_mac 02:41:84:f9:72:b7 dst_mac 02:f7:82:55:f1:88 src_ip 85.52.201.67 dst_ip 126.63.147.203 ip_proto icmp code 99 type 0 action pass && tc filter add dev swp33 ingress protocol ip pref 10427 flower src_mac 02:43:b3:64:78:2f dst_mac 02:bf:9a:bd:2a:0d src_ip 64.4.109.211 dst_ip 109.150.163.163 action pass && tc filter add dev swp33 ingress protocol ip pref 10428 flower src_mac 02:b5:70:2e:5a:db dst_mac 02:67:5b:55:7e:f2 src_ip 89.209.48.156 dst_ip 70.85.59.146 ip_proto udp src_port 23013 dst_port 65429 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10429 flower src_mac 02:b3:c6:13:9e:e6 dst_mac 02:c1:80:83:54:41 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10430 flower src_mac 02:cc:1f:67:d5:6a dst_mac 02:75:7e:5f:6f:cb action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10431 flower src_mac 02:b9:02:32:67:3f dst_mac 02:7b:20:e3:72:ac action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10432 flower src_mac 02:17:8d:fe:cc:ba dst_mac 02:f7:b3:af:62:88 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10433 flower src_mac 02:b3:10:86:5f:5c dst_mac 02:56:be:ff:f4:28 vlan_id 1854 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10434 flower src_mac 02:f3:00:84:c4:92 dst_mac 02:b4:dc:b2:91:22 vlan_id 3944 vlan_ethtype ipv4 src_ip 84.25.179.177 dst_ip 53.206.8.52 action trap && tc filter add dev swp33 ingress protocol ip pref 10435 flower src_mac 02:97:42:f6:56:64 dst_mac 02:5e:3f:b5:46:36 src_ip 49.6.117.161 dst_ip 53.250.118.229 ip_proto udp src_port 23468 dst_port 17004 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10436 flower src_mac 02:d8:f0:02:1d:70 dst_mac 02:56:ea:8f:00:71 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10437 flower src_mac 02:90:0e:38:7a:72 dst_mac 02:2d:2e:ac:43:f1 vlan_id 2230 vlan_ethtype ipv4 src_ip 79.179.58.167 dst_ip 123.220.207.250 action pass && tc filter add dev swp33 ingress protocol ip pref 10438 flower src_mac 02:54:c4:49:29:13 dst_mac 02:da:3f:61:69:a5 src_ip 74.207.240.139 dst_ip 54.42.234.76 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10439 flower src_mac 02:54:1b:cb:6f:50 dst_mac 02:17:46:92:e8:f9 vlan_id 2204 vlan_ethtype ipv4 src_ip 89.218.212.37 dst_ip 69.227.46.242 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10440 flower src_mac 02:6d:68:74:53:f6 dst_mac 02:7b:53:29:68:02 src_ip 18.190.38.118 dst_ip 96.10.112.236 ip_proto icmp code 165 type 4 action pass && tc filter add dev swp33 ingress protocol ip pref 10441 flower src_mac 02:76:d2:84:ac:5f dst_mac 02:b4:90:7b:58:5d src_ip 75.62.181.246 dst_ip 91.253.215.106 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10442 flower src_mac 02:7d:da:f7:4e:b5 dst_mac 02:79:47:c9:a0:eb vlan_id 2336 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10443 flower src_mac 02:18:b7:02:0a:0e dst_mac 02:30:e2:b9:08:55 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10444 flower src_mac 02:8b:e2:a1:ae:19 dst_mac 02:df:4f:1f:26:43 vlan_id 2028 vlan_ethtype 0x0800 src_ip 89.61.236.171 dst_ip 66.110.51.11 ip_proto tcp src_port 40168 dst_port 50338 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10445 flower src_mac 02:57:22:98:71:ed dst_mac 02:bc:1c:b7:60:c8 vlan_id 1086 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10446 flower src_mac 02:40:01:ab:0b:1f dst_mac 02:ae:d1:ed:0d:be vlan_id 3314 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10447 flower src_mac 02:4d:47:77:13:1d dst_mac 02:4d:c2:44:01:1f vlan_id 2464 vlan_ethtype 0x0800 src_ip 86.130.195.3 dst_ip 82.68.217.67 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10448 flower src_mac 02:e3:ee:8a:cf:e9 dst_mac 02:33:1d:ea:7a:a8 vlan_id 2291 vlan_ethtype ip src_ip 55.88.65.15 dst_ip 90.236.213.220 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10449 flower src_mac 02:69:1c:76:fe:4e dst_mac 02:97:b6:0e:eb:c8 vlan_id 436 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10450 flower src_mac 02:53:7a:48:13:ab dst_mac 02:22:63:9d:47:bb vlan_id 3022 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10451 flower src_mac 02:94:d2:f6:be:57 dst_mac 02:f0:2c:8d:c5:85 vlan_id 2089 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10452 flower src_mac 02:7a:56:f0:97:52 dst_mac 02:fd:55:13:c8:d0 vlan_id 4048 vlan_ethtype ipv4 src_ip 117.254.97.88 dst_ip 107.17.42.233 ip_proto tcp src_port 45192 dst_port 22675 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10453 flower src_mac 02:6b:73:96:4c:d2 dst_mac 02:4a:8b:ac:0e:3d vlan_id 835 vlan_ethtype ip src_ip 45.87.248.3 dst_ip 108.91.13.196 ip_proto tcp src_port 59653 dst_port 49065 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10454 flower src_mac 02:a8:f9:0e:64:25 dst_mac 02:2f:89:7e:11:42 vlan_id 1642 vlan_ethtype ipv4 src_ip 126.151.198.216 dst_ip 114.158.49.181 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10455 flower src_mac 02:42:5f:e0:da:e5 dst_mac 02:0f:39:5a:f7:23 src_ip 88.173.218.128 dst_ip 74.31.104.63 ip_proto tcp src_port 35208 dst_port 3784 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10456 flower src_mac 02:c4:52:47:e1:05 dst_mac 02:e4:ca:e5:95:fb src_ip 125.129.77.116 dst_ip 64.251.187.70 ip_proto icmp code 185 type 12 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10457 flower src_mac 02:7c:b6:cd:d9:64 dst_mac 02:cd:c1:2c:64:69 src_ip 20.246.192.4 dst_ip 119.209.235.84 ip_proto udp src_port 4462 dst_port 8313 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10458 flower src_mac 02:a0:45:9b:d9:50 dst_mac 02:92:20:c1:5c:49 vlan_id 532 vlan_ethtype ipv4 src_ip 49.116.224.112 dst_ip 30.27.203.21 ip_proto udp src_port 29887 dst_port 41672 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10459 flower src_mac 02:74:5b:2a:f2:cc dst_mac 02:f8:43:27:98:98 src_ip 126.101.122.103 dst_ip 100.171.241.237 ip_proto udp src_port 43861 dst_port 38671 action trap && tc filter add dev swp33 ingress protocol ip pref 10460 flower src_mac 02:e2:fd:d9:46:43 dst_mac 02:f2:7e:86:01:80 src_ip 80.202.194.238 dst_ip 119.173.75.40 ip_proto udp src_port 23139 dst_port 7437 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10461 flower src_mac 02:aa:b8:33:01:b6 dst_mac 02:a4:ba:a7:fc:d5 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10462 flower src_mac 02:f2:a7:7d:04:8b dst_mac 02:5e:bf:22:88:d4 vlan_id 1206 vlan_ethtype ipv4 src_ip 47.255.188.58 dst_ip 92.193.184.114 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10463 flower src_mac 02:a6:37:0b:0c:58 dst_mac 02:bd:50:36:57:a6 vlan_id 2850 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10464 flower src_mac 02:04:da:5b:8a:30 dst_mac 02:4e:24:91:cc:a5 vlan_id 848 vlan_ethtype ipv4 src_ip 15.200.233.96 dst_ip 110.133.194.249 ip_proto tcp src_port 22866 dst_port 64099 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10465 flower src_mac 02:91:98:8c:17:9a dst_mac 02:a0:e5:7e:c9:20 src_ip 17.70.7.230 dst_ip 26.217.177.180 ip_proto icmp code 68 type 15 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10466 flower src_mac 02:3a:c4:42:0b:4e dst_mac 02:08:fc:c0:ed:76 src_ip 36.122.61.211 dst_ip 71.165.93.152 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10467 flower src_mac 02:6d:b6:ae:66:48 dst_mac 02:a5:61:18:ad:5f action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10468 flower src_mac 02:18:af:e7:23:74 dst_mac 02:58:88:cf:81:03 vlan_id 1967 vlan_ethtype 0x0800 src_ip 50.236.246.105 dst_ip 37.100.106.171 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10469 flower src_mac 02:88:b6:0e:af:da dst_mac 02:62:46:05:85:ff action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10470 flower src_mac 02:79:c9:1c:2e:8d dst_mac 02:ea:77:77:9e:72 vlan_id 2013 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10471 flower src_mac 02:cb:29:b1:3c:a3 dst_mac 02:de:c8:97:41:18 src_ip 77.60.207.38 dst_ip 85.111.2.45 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10472 flower src_mac 02:ff:f4:c6:92:09 dst_mac 02:78:bf:f9:74:e9 vlan_id 314 vlan_ethtype ipv4 src_ip 99.186.234.32 dst_ip 48.196.254.138 ip_proto udp src_port 37768 dst_port 58856 action drop && tc filter add dev swp33 ingress protocol ip pref 10473 flower src_mac 02:3b:46:9a:49:19 dst_mac 02:74:09:8a:64:ee src_ip 110.68.165.67 dst_ip 55.166.32.11 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10474 flower src_mac 02:20:81:4d:2a:7d dst_mac 02:21:79:97:ef:0d src_ip 80.51.26.159 dst_ip 13.151.46.121 ip_proto udp src_port 26255 dst_port 15115 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10475 flower src_mac 02:d1:90:2b:97:e3 dst_mac 02:25:7b:32:44:db vlan_id 1261 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol ip pref 10476 flower src_mac 02:30:9e:1b:67:d3 dst_mac 02:fe:9d:58:49:fa src_ip 85.189.172.74 dst_ip 14.77.237.101 action trap && tc filter add dev swp33 ingress protocol ip pref 10477 flower src_mac 02:9b:1f:08:ac:51 dst_mac 02:96:a3:89:53:5c src_ip 38.31.196.20 dst_ip 31.123.88.163 ip_proto udp src_port 34727 dst_port 18769 action pass && tc filter add dev swp33 ingress protocol ip pref 10478 flower src_mac 02:2f:76:5f:ad:84 dst_mac 02:ca:64:64:c1:b6 src_ip 49.192.75.162 dst_ip 90.1.225.231 ip_proto tcp src_port 15123 dst_port 23089 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10479 flower src_mac 02:ec:93:0c:48:ff dst_mac 02:01:82:8f:ac:cd vlan_id 2412 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10480 flower src_mac 02:44:b6:39:31:fb dst_mac 02:96:33:be:85:23 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10481 flower src_mac 02:0f:56:21:48:40 dst_mac 02:6c:6b:20:42:dc action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10482 flower src_mac 02:bd:af:f0:f5:4a dst_mac 02:7b:93:d5:c1:87 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10483 flower src_mac 02:87:2b:41:bd:a9 dst_mac 02:79:32:fd:5e:19 vlan_id 637 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10484 flower src_mac 02:24:97:d2:2b:cf dst_mac 02:07:2c:71:cd:08 src_ip 39.100.104.116 dst_ip 45.73.73.38 ip_proto udp src_port 13428 dst_port 19434 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10485 flower src_mac 02:c6:0d:81:ed:74 dst_mac 02:cf:83:3d:70:cb src_ip 80.218.223.54 dst_ip 96.18.146.151 ip_proto udp src_port 6339 dst_port 28117 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10486 flower src_mac 02:2e:2a:ac:97:91 dst_mac 02:4a:8d:5e:81:7c src_ip 21.203.144.233 dst_ip 59.163.184.99 ip_proto udp src_port 4481 dst_port 12647 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10487 flower src_mac 02:ea:8d:7e:fc:4b dst_mac 02:bf:28:86:52:68 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10488 flower src_mac 02:fe:1a:92:89:74 dst_mac 02:3b:27:fd:7a:7a vlan_id 2344 vlan_ethtype ipv4 src_ip 83.39.242.247 dst_ip 124.29.75.124 ip_proto udp src_port 4800 dst_port 54811 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10489 flower src_mac 02:45:cf:1e:45:fa dst_mac 02:f9:bb:64:8b:4e vlan_id 250 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol ip pref 10490 flower src_mac 02:af:6c:14:fd:e2 dst_mac 02:7b:34:a3:f4:f7 src_ip 65.133.66.81 dst_ip 121.120.134.23 ip_proto udp src_port 29052 dst_port 57493 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10491 flower src_mac 02:18:8b:c0:90:be dst_mac 02:06:ab:83:f0:6f vlan_id 2387 vlan_ethtype 0x0800 src_ip 109.140.229.149 dst_ip 81.52.6.25 action trap && tc filter add dev swp33 ingress protocol ip pref 10492 flower src_mac 02:40:10:60:75:e3 dst_mac 02:bf:3d:d9:c1:c1 src_ip 27.231.72.84 dst_ip 27.145.243.194 ip_proto tcp src_port 13089 dst_port 3941 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10493 flower src_mac 02:34:96:95:ee:b9 dst_mac 02:f1:cc:9e:a8:e1 vlan_id 2572 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol ip pref 10494 flower src_mac 02:f7:c7:7c:8d:e0 dst_mac 02:a4:be:86:99:21 src_ip 92.234.244.220 dst_ip 79.157.126.61 ip_proto udp src_port 9302 dst_port 1981 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10495 flower src_mac 02:5e:36:6d:15:23 dst_mac 02:10:31:ea:e6:4f src_ip 103.97.153.40 dst_ip 21.86.78.73 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10496 flower src_mac 02:c8:65:87:a8:93 dst_mac 02:1b:a7:8d:30:2b vlan_id 543 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10497 flower src_mac 02:16:0a:7f:9e:59 dst_mac 02:64:d1:27:a3:3a action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10498 flower src_mac 02:c2:df:cd:ff:34 dst_mac 02:1f:f5:d9:75:f8 vlan_id 807 vlan_ethtype ipv4 src_ip 11.38.209.111 dst_ip 56.10.253.153 ip_proto tcp src_port 10812 dst_port 38608 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10499 flower src_mac 02:77:38:c9:f2:d1 dst_mac 02:93:dd:9b:13:35 vlan_id 2351 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10500 flower src_mac 02:9c:44:aa:f1:09 dst_mac 02:0f:7c:85:61:65 vlan_id 3610 vlan_ethtype 0x0800 src_ip 84.155.116.9 dst_ip 75.251.11.6 ip_proto tcp src_port 7487 dst_port 11140 action pass && tc filter add dev swp33 ingress protocol ip pref 10501 flower src_mac 02:a4:a9:26:28:fa dst_mac 02:a9:25:59:a0:0e src_ip 109.62.73.77 dst_ip 59.160.55.60 ip_proto tcp src_port 52474 dst_port 15621 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10502 flower src_mac 02:70:65:f6:b7:a4 dst_mac 02:4b:77:80:b3:25 vlan_id 3799 vlan_ethtype ip src_ip 66.135.126.247 dst_ip 57.182.59.105 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10503 flower src_mac 02:c0:52:e5:36:2c dst_mac 02:4f:9c:f5:8c:2e src_ip 105.178.125.92 dst_ip 98.103.227.195 ip_proto icmp code 215 type 5 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10504 flower src_mac 02:43:0c:d3:ba:6d dst_mac 02:fb:e1:15:8f:e5 vlan_id 2800 vlan_ethtype ip src_ip 60.220.211.182 dst_ip 91.39.164.242 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10505 flower src_mac 02:ac:9e:ce:fe:7f dst_mac 02:f3:53:4c:ad:49 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10506 flower src_mac 02:9e:54:04:09:34 dst_mac 02:fc:74:3d:8b:51 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10507 flower src_mac 02:ae:90:3f:39:e3 dst_mac 02:ae:40:b5:cf:d4 vlan_id 2561 vlan_ethtype ip src_ip 24.188.16.47 dst_ip 111.164.96.171 ip_proto udp src_port 40481 dst_port 46682 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10508 flower src_mac 02:6d:af:fb:2b:2b dst_mac 02:f7:28:c9:77:8d src_ip 47.29.41.186 dst_ip 76.91.142.113 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10509 flower src_mac 02:f4:f7:e1:b4:f0 dst_mac 02:31:a1:8b:92:85 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10510 flower src_mac 02:70:7d:c1:8a:65 dst_mac 02:99:50:db:a7:cf action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10511 flower src_mac 02:9a:95:05:03:b1 dst_mac 02:41:ce:23:04:3a vlan_id 2441 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10512 flower src_mac 02:ed:aa:a2:c8:41 dst_mac 02:05:bc:6d:de:2f vlan_id 1678 vlan_ethtype ipv4 src_ip 55.211.11.190 dst_ip 39.2.130.148 ip_proto tcp src_port 61589 dst_port 11645 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10513 flower src_mac 02:9e:57:2c:3c:98 dst_mac 02:f8:c3:4e:a7:01 vlan_id 2223 vlan_ethtype ip src_ip 117.1.93.144 dst_ip 90.89.16.46 ip_proto tcp src_port 64259 dst_port 53080 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10514 flower src_mac 02:5a:77:d1:77:09 dst_mac 02:52:d6:d6:10:ac vlan_id 2187 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10515 flower src_mac 02:8b:fb:40:9d:74 dst_mac 02:c9:12:c6:e5:82 vlan_id 3343 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10516 flower src_mac 02:d0:9a:e7:56:2f dst_mac 02:b4:08:ea:2c:53 vlan_id 172 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10517 flower src_mac 02:e4:5a:94:30:c7 dst_mac 02:f7:52:32:43:45 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10518 flower src_mac 02:51:a9:45:64:e1 dst_mac 02:53:fe:ce:ce:7d vlan_id 2504 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10519 flower src_mac 02:74:05:7e:55:0f dst_mac 02:b4:33:fd:1f:1c src_ip 121.83.161.42 dst_ip 111.170.187.63 ip_proto tcp src_port 13520 dst_port 4749 action drop && tc filter add dev swp33 ingress protocol ip pref 10520 flower src_mac 02:16:b1:68:52:d6 dst_mac 02:46:d8:c3:15:a9 src_ip 25.249.100.98 dst_ip 102.66.62.127 ip_proto udp src_port 40555 dst_port 42789 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10521 flower src_mac 02:0f:94:07:25:0a dst_mac 02:24:0e:c6:7e:8b action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10522 flower src_mac 02:ac:9f:ed:66:ed dst_mac 02:52:4e:3f:1c:e5 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10523 flower src_mac 02:47:6e:a8:3a:23 dst_mac 02:8a:87:c1:c8:1a action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10524 flower src_mac 02:6e:5c:59:23:78 dst_mac 02:82:2b:42:98:38 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10525 flower src_mac 02:e6:20:5a:6a:e9 dst_mac 02:1b:87:56:f3:74 vlan_id 1255 vlan_ethtype ip src_ip 42.42.119.48 dst_ip 78.207.198.22 ip_proto tcp src_port 31671 dst_port 47481 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10526 flower src_mac 02:9d:b5:ab:07:83 dst_mac 02:d9:9d:67:1d:cd vlan_id 1675 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10527 flower src_mac 02:0b:64:f4:1b:2b dst_mac 02:d4:3c:71:b1:e7 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10528 flower src_mac 02:87:cd:3c:b4:b2 dst_mac 02:63:12:79:d0:f3 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10529 flower src_mac 02:a3:6b:64:1b:19 dst_mac 02:32:f2:62:d6:9f vlan_id 2228 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10530 flower src_mac 02:8c:a0:ed:c3:4e dst_mac 02:aa:96:1b:40:c5 src_ip 84.45.89.39 dst_ip 91.178.58.76 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10531 flower src_mac 02:06:e3:5f:6f:65 dst_mac 02:a8:37:42:b9:23 vlan_id 2747 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10532 flower src_mac 02:3f:4c:22:1d:1b dst_mac 02:13:5a:e5:19:bb vlan_id 3019 vlan_ethtype ip src_ip 23.46.113.11 dst_ip 68.15.167.150 ip_proto tcp src_port 62784 dst_port 51021 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10533 flower src_mac 02:71:af:5a:36:9c dst_mac 02:3f:c8:26:af:8d vlan_id 2644 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10534 flower src_mac 02:b5:aa:48:11:8d dst_mac 02:d6:65:b5:46:79 vlan_id 1799 vlan_ethtype ipv4 src_ip 119.118.154.28 dst_ip 90.87.88.152 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10535 flower src_mac 02:a0:1e:d4:04:e5 dst_mac 02:0a:24:d6:cc:9c vlan_id 3957 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10536 flower src_mac 02:d2:79:0b:d6:cd dst_mac 02:a5:cc:f9:e3:ee src_ip 118.14.191.107 dst_ip 21.114.90.135 ip_proto udp src_port 8275 dst_port 21149 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10537 flower src_mac 02:5e:4d:05:39:7f dst_mac 02:c1:76:bb:9e:f9 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10538 flower src_mac 02:2a:4d:cb:d7:97 dst_mac 02:40:93:f6:c4:80 action trap && tc filter add dev swp33 ingress protocol ip pref 10539 flower src_mac 02:3e:84:28:69:90 dst_mac 02:29:3e:92:39:6c src_ip 90.153.148.83 dst_ip 98.92.235.43 ip_proto icmp code 123 type 5 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10540 flower src_mac 02:15:c1:c0:6f:89 dst_mac 02:68:93:0d:12:1e vlan_id 2440 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10541 flower src_mac 02:31:ac:d0:11:ad dst_mac 02:e3:f0:a3:c0:37 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10542 flower src_mac 02:d2:7f:17:d7:92 dst_mac 02:13:1f:df:c5:43 vlan_id 2126 vlan_ethtype ipv4 src_ip 51.194.128.182 dst_ip 50.24.228.184 ip_proto udp src_port 14181 dst_port 3521 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10543 flower src_mac 02:18:60:2e:1c:23 dst_mac 02:12:18:97:22:f6 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10544 flower src_mac 02:c8:bd:76:29:1d dst_mac 02:25:ff:6b:f8:d9 src_ip 63.183.75.108 dst_ip 107.140.131.26 ip_proto icmp code 133 type 0 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10545 flower src_mac 02:23:88:9b:17:d2 dst_mac 02:2d:4c:88:ef:56 vlan_id 1088 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10546 flower src_mac 02:28:f3:34:ac:30 dst_mac 02:bf:d7:09:c2:7f vlan_id 479 vlan_ethtype ip src_ip 121.122.234.249 dst_ip 67.152.249.139 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10547 flower src_mac 02:6e:ed:b6:3e:bb dst_mac 02:78:46:6d:78:70 vlan_id 2600 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10548 flower src_mac 02:f4:e5:17:0a:40 dst_mac 02:a5:2a:c4:9b:65 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10549 flower src_mac 02:86:75:dd:75:d7 dst_mac 02:dd:a2:1c:42:ce action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10550 flower src_mac 02:52:82:44:fd:43 dst_mac 02:81:36:95:41:c8 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10551 flower src_mac 02:ef:5e:ae:fe:a2 dst_mac 02:23:2e:c6:ad:0b vlan_id 3072 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10552 flower src_mac 02:5f:f0:98:4c:15 dst_mac 02:82:32:4d:35:81 src_ip 63.61.206.17 dst_ip 54.101.69.24 ip_proto udp src_port 12469 dst_port 19611 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10553 flower src_mac 02:0d:89:bb:1c:ad dst_mac 02:14:bf:64:ab:f1 src_ip 14.86.12.245 dst_ip 72.178.178.24 ip_proto tcp src_port 38484 dst_port 56283 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10554 flower src_mac 02:2b:38:ca:5b:59 dst_mac 02:de:b0:e7:c9:5d action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10555 flower src_mac 02:59:3d:67:a3:27 dst_mac 02:15:37:3a:01:15 vlan_id 1360 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10556 flower src_mac 02:23:cd:fc:b1:5e dst_mac 02:3c:95:ab:14:d3 vlan_id 298 vlan_ethtype ipv4 src_ip 95.98.41.155 dst_ip 27.135.179.41 ip_proto tcp src_port 320 dst_port 1381 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10557 flower src_mac 02:a7:e5:21:2b:ec dst_mac 02:18:4d:03:e1:d1 src_ip 86.210.77.108 dst_ip 107.139.42.93 ip_proto udp src_port 37289 dst_port 34626 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10558 flower src_mac 02:96:cf:a4:3c:5d dst_mac 02:55:50:ea:2c:c5 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10559 flower src_mac 02:7d:ef:76:5b:ce dst_mac 02:26:3e:fd:03:46 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10560 flower src_mac 02:07:65:b5:c9:65 dst_mac 02:2d:1d:18:2e:6f src_ip 112.152.48.200 dst_ip 119.21.189.184 ip_proto udp src_port 43818 dst_port 34056 action trap && tc filter add dev swp33 ingress protocol ip pref 10561 flower src_mac 02:4a:a5:a1:53:5a dst_mac 02:26:51:11:18:62 src_ip 121.115.105.114 dst_ip 55.93.166.152 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10562 flower src_mac 02:e5:d6:ff:4a:98 dst_mac 02:e1:c4:53:f3:35 vlan_id 557 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10563 flower src_mac 02:ff:10:f2:2f:b9 dst_mac 02:7e:d6:d3:23:3a vlan_id 144 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10564 flower src_mac 02:38:f6:68:c6:a5 dst_mac 02:55:e9:3e:68:89 action drop && tc filter add dev swp33 ingress protocol ip pref 10565 flower src_mac 02:58:95:4e:ab:05 dst_mac 02:54:33:41:85:6d src_ip 100.3.252.138 dst_ip 88.83.64.192 ip_proto tcp src_port 62378 dst_port 19427 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10566 flower src_mac 02:13:05:5e:3b:a1 dst_mac 02:a4:d5:4a:2e:75 vlan_id 3189 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10567 flower src_mac 02:8e:1a:d5:2a:94 dst_mac 02:fc:c4:87:f8:c8 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10568 flower src_mac 02:5b:2e:15:2b:31 dst_mac 02:21:9d:86:ff:03 vlan_id 584 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10569 flower src_mac 02:e5:3f:17:33:5d dst_mac 02:ec:fc:13:36:70 vlan_id 2485 vlan_ethtype ipv4 src_ip 17.229.7.29 dst_ip 84.14.35.40 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10570 flower src_mac 02:36:b8:ab:11:97 dst_mac 02:c6:b8:99:5c:31 vlan_id 1870 vlan_ethtype 0x0800 src_ip 105.207.254.154 dst_ip 57.108.167.3 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10571 flower src_mac 02:11:8b:3b:25:3c dst_mac 02:6c:a6:70:3d:a1 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10572 flower src_mac 02:cf:17:8f:e1:fd dst_mac 02:0b:73:09:2c:5a src_ip 113.225.114.36 dst_ip 59.125.135.85 ip_proto tcp src_port 60758 dst_port 2215 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10573 flower src_mac 02:25:0b:fc:ca:8d dst_mac 02:00:96:8e:87:a0 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10574 flower src_mac 02:36:98:de:14:f0 dst_mac 02:b2:37:d0:0c:29 src_ip 122.159.100.40 dst_ip 118.71.34.204 ip_proto tcp src_port 34487 dst_port 64658 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10575 flower src_mac 02:78:29:eb:51:2f dst_mac 02:9e:7d:17:8e:d3 vlan_id 68 vlan_ethtype ipv4 src_ip 57.169.88.244 dst_ip 27.59.51.125 ip_proto tcp src_port 51907 dst_port 55374 action trap && tc filter add dev swp33 ingress protocol ip pref 10576 flower src_mac 02:59:f6:e5:77:be dst_mac 02:6f:f4:2c:30:74 src_ip 87.145.193.80 dst_ip 26.209.235.179 ip_proto udp src_port 32164 dst_port 58893 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10577 flower src_mac 02:b1:dd:a4:3d:20 dst_mac 02:a6:4c:eb:2c:ca src_ip 100.89.210.4 dst_ip 67.191.242.145 ip_proto udp src_port 15172 dst_port 56905 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10578 flower src_mac 02:96:8b:82:5c:1f dst_mac 02:66:6c:6c:31:d4 src_ip 123.13.84.232 dst_ip 103.139.84.230 ip_proto udp src_port 23430 dst_port 8314 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10579 flower src_mac 02:45:c8:bd:9d:64 dst_mac 02:ff:e9:cc:d1:8a vlan_id 1768 vlan_ethtype ip src_ip 70.9.83.159 dst_ip 49.218.119.172 ip_proto udp src_port 23714 dst_port 65202 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10580 flower src_mac 02:99:11:09:7a:45 dst_mac 02:32:19:29:c9:47 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10581 flower src_mac 02:cf:d3:11:3d:8e dst_mac 02:4c:10:84:79:7b action drop && tc filter add dev swp33 ingress protocol ip pref 10582 flower src_mac 02:93:6c:72:06:c8 dst_mac 02:7c:9b:a5:12:c7 src_ip 76.164.251.27 dst_ip 22.208.127.104 ip_proto icmp code 156 type 3 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10583 flower src_mac 02:0f:04:a1:46:51 dst_mac 02:7a:d1:bb:a9:6c vlan_id 4071 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10584 flower src_mac 02:54:d3:e3:02:36 dst_mac 02:37:05:f7:ed:61 vlan_id 1263 vlan_ethtype ip src_ip 53.16.111.115 dst_ip 35.79.214.26 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10585 flower src_mac 02:63:11:ed:15:eb dst_mac 02:b8:9a:77:d0:19 vlan_id 2698 vlan_ethtype ip src_ip 76.184.220.129 dst_ip 124.4.104.76 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10586 flower src_mac 02:7d:2b:40:33:0f dst_mac 02:f2:28:eb:6c:60 vlan_id 2355 vlan_ethtype ipv4 src_ip 116.207.6.13 dst_ip 120.170.125.112 ip_proto udp src_port 35060 dst_port 17668 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10587 flower src_mac 02:a0:b1:08:f9:71 dst_mac 02:fb:60:c5:18:93 src_ip 69.99.126.109 dst_ip 47.247.197.136 ip_proto icmp code 39 type 0 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10588 flower src_mac 02:04:89:31:61:3c dst_mac 02:c4:70:6a:07:33 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10589 flower src_mac 02:94:2e:66:a6:02 dst_mac 02:9d:f6:f0:5d:78 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10590 flower src_mac 02:d1:89:8a:d3:b3 dst_mac 02:65:66:2e:4a:96 vlan_id 925 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10591 flower src_mac 02:4f:0b:81:33:d2 dst_mac 02:32:c5:47:b1:06 src_ip 42.194.149.184 dst_ip 108.224.192.128 ip_proto icmp code 224 type 14 action trap && tc filter add dev swp33 ingress protocol ip pref 10592 flower src_mac 02:21:b0:05:0d:00 dst_mac 02:26:98:cb:60:68 src_ip 100.24.60.169 dst_ip 106.3.211.153 ip_proto icmp code 78 type 16 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10593 flower src_mac 02:39:7a:1a:8a:55 dst_mac 02:89:65:fe:d4:dd action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10594 flower src_mac 02:b0:9e:ea:ec:b8 dst_mac 02:98:2c:97:ad:9a action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10595 flower src_mac 02:95:f2:d2:bf:71 dst_mac 02:4a:e7:db:22:13 vlan_id 380 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10596 flower src_mac 02:3e:c0:e6:5f:b9 dst_mac 02:66:e5:fc:04:f7 src_ip 65.149.149.27 dst_ip 66.62.70.26 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10597 flower src_mac 02:41:b7:07:2f:e4 dst_mac 02:69:f3:4a:ce:27 vlan_id 1661 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10598 flower src_mac 02:9b:fd:04:c1:95 dst_mac 02:a2:79:32:d5:f6 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10599 flower src_mac 02:a3:f3:5a:a6:5b dst_mac 02:e1:ee:aa:89:3f vlan_id 183 vlan_ethtype ipv4 src_ip 58.49.159.77 dst_ip 98.54.246.192 action trap && tc filter add dev swp33 ingress protocol ip pref 10600 flower src_mac 02:4e:51:23:c1:b1 dst_mac 02:55:25:b7:5f:8a src_ip 44.15.4.220 dst_ip 100.140.196.121 ip_proto udp src_port 39341 dst_port 45747 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10601 flower src_mac 02:37:53:a8:8c:ce dst_mac 02:41:bc:ab:43:13 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10602 flower src_mac 02:f4:28:20:7c:f1 dst_mac 02:99:d3:d6:80:2e vlan_id 381 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10603 flower src_mac 02:7c:ad:aa:26:da dst_mac 02:82:a2:95:93:a8 vlan_id 2754 vlan_ethtype ip src_ip 124.233.157.198 dst_ip 18.133.91.232 ip_proto tcp src_port 4147 dst_port 10490 action drop && tc filter add dev swp33 ingress protocol ip pref 10604 flower src_mac 02:4b:4d:74:5f:1d dst_mac 02:72:2c:47:d7:4f src_ip 102.136.134.228 dst_ip 106.180.109.73 ip_proto tcp src_port 12992 dst_port 33227 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10605 flower src_mac 02:67:94:a7:d1:c4 dst_mac 02:8a:5a:3c:ef:36 vlan_id 3082 vlan_ethtype ip src_ip 15.231.223.1 dst_ip 104.196.158.202 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10606 flower src_mac 02:8b:52:8c:6f:59 dst_mac 02:c1:78:5a:8f:f7 vlan_id 3974 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10607 flower src_mac 02:0c:b4:5d:3f:43 dst_mac 02:ea:b8:33:8d:e2 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10608 flower src_mac 02:0c:9e:bb:2a:36 dst_mac 02:37:d4:18:07:95 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10609 flower src_mac 02:83:11:bc:0b:a2 dst_mac 02:a5:41:35:97:af vlan_id 1112 vlan_ethtype ipv4 src_ip 77.248.16.199 dst_ip 65.114.122.34 ip_proto udp src_port 34684 dst_port 17441 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10610 flower src_mac 02:ce:46:3c:76:df dst_mac 02:2e:0a:d4:f0:3e vlan_id 1958 vlan_ethtype ipv4 src_ip 17.44.249.86 dst_ip 82.128.211.47 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10611 flower src_mac 02:eb:7f:e6:74:7e dst_mac 02:ff:45:5b:5c:3f vlan_id 457 vlan_ethtype ip src_ip 41.133.121.230 dst_ip 117.107.63.249 ip_proto tcp src_port 36242 dst_port 31421 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10612 flower src_mac 02:a8:46:a5:b6:f6 dst_mac 02:bb:42:df:c9:3e action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10613 flower src_mac 02:2e:12:13:4e:a1 dst_mac 02:3f:ba:76:c7:5f src_ip 90.109.205.101 dst_ip 57.154.130.1 ip_proto udp src_port 25604 dst_port 58514 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10614 flower src_mac 02:f9:ac:b5:72:56 dst_mac 02:89:ab:5e:ca:1c vlan_id 4090 vlan_ethtype 0x0800 src_ip 37.206.100.248 dst_ip 102.123.167.121 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10615 flower src_mac 02:38:cc:81:87:5f dst_mac 02:2d:9d:90:e1:2c vlan_id 540 vlan_ethtype 0x0800 src_ip 38.93.130.120 dst_ip 26.44.88.88 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10616 flower src_mac 02:77:72:fd:3a:8f dst_mac 02:e4:3c:15:37:6e action pass && tc filter add dev swp33 ingress protocol ip pref 10617 flower src_mac 02:d8:fd:b2:09:4c dst_mac 02:38:82:90:d6:8b src_ip 15.248.10.137 dst_ip 91.89.149.188 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10618 flower src_mac 02:b5:d0:40:62:56 dst_mac 02:2d:c9:1d:73:d3 vlan_id 1779 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10619 flower src_mac 02:ae:c3:c4:f0:44 dst_mac 02:13:be:bb:1c:db action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10620 flower src_mac 02:9c:91:be:ef:c8 dst_mac 02:98:ae:b7:8d:f8 vlan_id 2367 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10621 flower src_mac 02:0c:36:50:51:a3 dst_mac 02:7e:6e:f6:91:32 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10622 flower src_mac 02:f3:76:ec:af:22 dst_mac 02:52:e3:ec:3d:f8 vlan_id 1568 vlan_ethtype ip src_ip 87.226.150.133 dst_ip 28.59.117.66 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10623 flower src_mac 02:27:78:4c:6b:fc dst_mac 02:cd:99:ed:11:81 vlan_id 2811 vlan_ethtype ipv4 src_ip 104.110.110.181 dst_ip 64.165.96.108 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10624 flower src_mac 02:e9:a5:12:f2:55 dst_mac 02:b8:d1:7c:73:69 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10625 flower src_mac 02:80:bd:a9:07:c6 dst_mac 02:9f:68:95:fb:6c src_ip 72.89.248.85 dst_ip 120.203.139.54 ip_proto icmp code 36 type 17 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10626 flower src_mac 02:d1:a9:f2:60:30 dst_mac 02:ac:55:f8:c8:c3 vlan_id 2703 vlan_ethtype ipv4 src_ip 32.153.221.92 dst_ip 33.250.84.26 ip_proto udp src_port 9008 dst_port 29115 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10627 flower src_mac 02:f1:34:54:bd:db dst_mac 02:4d:05:df:d1:a5 vlan_id 37 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10628 flower src_mac 02:b6:ae:ba:3e:38 dst_mac 02:85:f7:d1:25:c8 vlan_id 1645 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10629 flower src_mac 02:10:0b:08:69:99 dst_mac 02:25:ea:64:49:60 src_ip 67.121.163.241 dst_ip 46.138.131.72 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10630 flower src_mac 02:1c:85:9e:f8:db dst_mac 02:f1:75:1c:72:6a vlan_id 3774 vlan_ethtype 0x0800 src_ip 101.166.249.142 dst_ip 84.233.168.23 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10631 flower src_mac 02:06:fd:0f:ab:1a dst_mac 02:50:34:31:46:01 vlan_id 3872 vlan_ethtype 0x0800 src_ip 105.142.2.7 dst_ip 112.93.7.222 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10632 flower src_mac 02:da:c0:7c:ad:c6 dst_mac 02:eb:b5:aa:68:e0 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10633 flower src_mac 02:30:55:b5:34:86 dst_mac 02:17:1f:4a:80:9e action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10634 flower src_mac 02:1c:28:62:dc:fa dst_mac 02:1f:b6:db:1b:cc src_ip 71.99.14.4 dst_ip 45.2.217.157 ip_proto udp src_port 17059 dst_port 24038 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10635 flower src_mac 02:b1:4c:17:fb:2f dst_mac 02:a9:4e:da:9c:9d vlan_id 2203 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10636 flower src_mac 02:e9:14:9b:2b:00 dst_mac 02:af:76:49:28:83 vlan_id 4015 vlan_ethtype ipv4 src_ip 71.124.108.140 dst_ip 89.163.121.123 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10637 flower src_mac 02:59:23:21:aa:4c dst_mac 02:ce:76:74:e8:da vlan_id 871 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10638 flower src_mac 02:33:eb:e0:67:16 dst_mac 02:6b:c5:47:e7:33 vlan_id 1219 vlan_ethtype ip src_ip 42.230.192.135 dst_ip 54.53.37.115 ip_proto tcp src_port 16618 dst_port 21617 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10639 flower src_mac 02:9d:a0:74:8b:fc dst_mac 02:3f:df:60:46:b7 src_ip 84.214.184.72 dst_ip 34.61.135.141 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10640 flower src_mac 02:3f:49:18:8d:04 dst_mac 02:03:eb:a6:6c:00 src_ip 124.62.65.168 dst_ip 70.83.243.162 ip_proto udp src_port 11488 dst_port 27147 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10641 flower src_mac 02:97:7b:72:77:96 dst_mac 02:a2:75:cb:c5:0d src_ip 25.1.61.184 dst_ip 72.6.37.239 ip_proto udp src_port 38313 dst_port 34308 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10642 flower src_mac 02:39:5a:11:e6:3e dst_mac 02:82:4f:8d:f9:72 vlan_id 2112 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10643 flower src_mac 02:a0:93:01:07:85 dst_mac 02:84:20:33:21:8f src_ip 100.217.125.132 dst_ip 63.198.46.118 ip_proto icmp code 48 type 17 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10644 flower src_mac 02:9a:90:2d:04:57 dst_mac 02:69:d4:b0:c4:4e src_ip 85.242.137.210 dst_ip 110.26.169.40 ip_proto icmp code 169 type 18 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10645 flower src_mac 02:31:4f:0a:47:13 dst_mac 02:ef:2f:7c:c4:65 src_ip 89.101.131.250 dst_ip 13.29.185.94 ip_proto icmp code 200 type 17 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10646 flower src_mac 02:5e:49:55:d5:7e dst_mac 02:90:34:fd:11:0d src_ip 87.42.167.79 dst_ip 98.211.53.185 ip_proto tcp src_port 59083 dst_port 62676 action trap && tc filter add dev swp33 ingress protocol ip pref 10647 flower src_mac 02:bb:52:9a:48:8e dst_mac 02:c4:c7:35:3b:7f src_ip 15.4.210.202 dst_ip 113.187.79.101 ip_proto tcp src_port 58559 dst_port 43204 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10648 flower src_mac 02:da:c2:80:cd:8f dst_mac 02:a8:13:c4:62:91 vlan_id 1916 vlan_ethtype 0x0800 src_ip 108.29.115.182 dst_ip 30.207.12.205 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10649 flower src_mac 02:28:60:86:d7:d7 dst_mac 02:b1:0f:ce:a5:cf action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10650 flower src_mac 02:c8:6d:4c:48:24 dst_mac 02:90:91:46:6e:ca action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10651 flower src_mac 02:92:3e:70:44:34 dst_mac 02:e6:6f:9e:d1:5c action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10652 flower src_mac 02:67:ca:90:e7:8e dst_mac 02:d6:20:2e:bb:77 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10653 flower src_mac 02:18:da:69:0e:48 dst_mac 02:0f:21:c6:a6:5d vlan_id 3042 vlan_ethtype 0x0800 src_ip 122.9.150.7 dst_ip 63.10.254.23 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10654 flower src_mac 02:bb:71:eb:8d:32 dst_mac 02:62:1d:5c:6b:47 src_ip 101.165.40.130 dst_ip 16.43.240.242 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10655 flower src_mac 02:76:c0:4c:1c:6d dst_mac 02:98:0b:71:68:81 vlan_id 2394 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10656 flower src_mac 02:9d:2a:06:9d:3f dst_mac 02:95:8f:0d:28:65 vlan_id 1876 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10657 flower src_mac 02:31:20:33:11:94 dst_mac 02:a1:b2:c2:5e:52 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10658 flower src_mac 02:ed:4d:e0:b2:73 dst_mac 02:e5:cb:b8:c3:83 vlan_id 1293 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10659 flower src_mac 02:58:68:a2:74:a9 dst_mac 02:0b:9f:18:d1:04 action drop && tc filter add dev swp33 ingress protocol ip pref 10660 flower src_mac 02:7c:16:6f:8f:92 dst_mac 02:c9:d3:ce:41:33 src_ip 17.64.58.7 dst_ip 124.240.72.115 ip_proto tcp src_port 37209 dst_port 16673 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10661 flower src_mac 02:c7:7b:13:40:dd dst_mac 02:87:75:df:ed:43 vlan_id 4049 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10662 flower src_mac 02:1f:d6:45:fc:4e dst_mac 02:93:24:68:8b:f6 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10663 flower src_mac 02:bd:41:f1:eb:a1 dst_mac 02:d3:fa:6b:87:48 vlan_id 1147 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10664 flower src_mac 02:21:92:32:4a:10 dst_mac 02:20:0e:d1:12:93 vlan_id 1041 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10665 flower src_mac 02:89:ce:d6:2e:bf dst_mac 02:2e:8b:e7:68:f0 vlan_id 2622 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10666 flower src_mac 02:40:c5:13:68:ce dst_mac 02:ba:8f:43:56:0f vlan_id 22 vlan_ethtype ipv4 src_ip 109.106.65.181 dst_ip 65.235.208.66 ip_proto udp src_port 23758 dst_port 46963 action pass && tc filter add dev swp33 ingress protocol ip pref 10667 flower src_mac 02:b5:82:32:14:82 dst_mac 02:cf:ff:8a:25:75 src_ip 31.225.33.56 dst_ip 72.139.238.85 ip_proto tcp src_port 8476 dst_port 17130 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10668 flower src_mac 02:a0:e2:8f:b6:ff dst_mac 02:0b:04:61:75:78 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10669 flower src_mac 02:6d:87:9d:ce:26 dst_mac 02:b3:31:d6:86:85 vlan_id 86 vlan_ethtype 0x0800 src_ip 19.64.63.22 dst_ip 37.78.135.46 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10670 flower src_mac 02:5c:24:38:c0:fa dst_mac 02:a2:ad:54:72:0f src_ip 95.155.254.95 dst_ip 60.90.218.208 ip_proto udp src_port 9950 dst_port 54832 action pass && tc filter add dev swp33 ingress protocol ip pref 10671 flower src_mac 02:04:13:d0:c8:a8 dst_mac 02:b1:fe:a7:3a:fb src_ip 49.223.58.109 dst_ip 25.170.175.39 ip_proto icmp code 119 type 16 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10672 flower src_mac 02:85:a4:ed:fe:89 dst_mac 02:f0:69:19:6a:c3 vlan_id 3523 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10673 flower src_mac 02:f8:25:5d:e7:f2 dst_mac 02:9d:8e:3f:bf:03 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10674 flower src_mac 02:24:27:c8:fd:8f dst_mac 02:03:6c:60:2e:50 vlan_id 2187 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10675 flower src_mac 02:f0:33:9e:0d:49 dst_mac 02:fe:53:3c:6c:d3 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10676 flower src_mac 02:59:f0:3b:97:b3 dst_mac 02:10:01:3c:cd:86 vlan_id 3522 vlan_ethtype ipv4 src_ip 48.224.179.131 dst_ip 104.190.207.73 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10677 flower src_mac 02:e1:50:b3:e7:87 dst_mac 02:39:c3:85:a8:74 vlan_id 3045 vlan_ethtype ipv4 src_ip 113.45.208.143 dst_ip 98.55.252.53 ip_proto udp src_port 39806 dst_port 19407 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10678 flower src_mac 02:73:28:1e:5f:ad dst_mac 02:ba:e4:7a:d0:c6 action pass && tc filter add dev swp33 ingress protocol ip pref 10679 flower src_mac 02:c3:a3:ca:40:92 dst_mac 02:51:f6:1c:52:b3 src_ip 74.204.143.105 dst_ip 120.100.111.233 ip_proto icmp code 17 type 11 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10680 flower src_mac 02:29:ef:2e:89:8a dst_mac 02:01:d1:ab:3c:b1 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10681 flower src_mac 02:0a:84:c5:8d:27 dst_mac 02:7a:b1:50:ff:23 vlan_id 1486 vlan_ethtype ip src_ip 39.231.24.181 dst_ip 40.104.35.100 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10682 flower src_mac 02:1e:7d:33:bc:a7 dst_mac 02:2b:1b:96:45:a8 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10683 flower src_mac 02:dd:aa:80:8f:81 dst_mac 02:af:b9:39:58:dc action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10684 flower src_mac 02:6b:71:44:cd:7c dst_mac 02:3e:38:c0:9c:c9 vlan_id 1763 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10685 flower src_mac 02:92:ae:5a:c9:7e dst_mac 02:11:ab:4a:0e:85 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10686 flower src_mac 02:64:ae:41:96:e5 dst_mac 02:ac:3a:76:b7:64 vlan_id 334 vlan_ethtype ipv4 src_ip 102.54.165.88 dst_ip 114.70.181.103 ip_proto tcp src_port 64026 dst_port 24116 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10687 flower src_mac 02:b6:02:80:e9:78 dst_mac 02:2a:df:75:0f:b6 vlan_id 2771 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10688 flower src_mac 02:31:e5:38:bf:32 dst_mac 02:99:32:9d:75:0f vlan_id 2493 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10689 flower src_mac 02:ea:6e:94:94:f0 dst_mac 02:f9:74:b9:fa:e1 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10690 flower src_mac 02:2d:a4:9c:2b:48 dst_mac 02:bb:ab:c0:de:1e src_ip 86.239.19.215 dst_ip 87.240.94.216 ip_proto tcp src_port 41684 dst_port 63904 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10691 flower src_mac 02:0d:ae:88:c3:e1 dst_mac 02:ae:55:94:e6:b3 vlan_id 240 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10692 flower src_mac 02:fe:bf:a8:a9:05 dst_mac 02:73:55:98:7a:2b action trap && tc filter add dev swp33 ingress protocol ip pref 10693 flower src_mac 02:bc:fe:89:76:1d dst_mac 02:a1:8d:71:2b:b3 src_ip 72.112.182.40 dst_ip 32.183.129.22 ip_proto udp src_port 58959 dst_port 52356 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10694 flower src_mac 02:87:87:d1:bf:58 dst_mac 02:6c:f3:3d:8b:e1 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10695 flower src_mac 02:e9:07:78:d6:00 dst_mac 02:56:41:b8:94:38 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10696 flower src_mac 02:8e:03:76:f6:db dst_mac 02:de:13:c7:a8:f5 vlan_id 872 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10697 flower src_mac 02:38:e8:b7:76:95 dst_mac 02:6f:98:0d:1a:a0 vlan_id 3203 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10698 flower src_mac 02:2e:04:a5:fd:7d dst_mac 02:01:c8:c7:f0:48 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10699 flower src_mac 02:f0:8c:26:5e:ad dst_mac 02:f3:42:3b:f5:98 vlan_id 3990 vlan_ethtype 0x0800 src_ip 87.106.225.124 dst_ip 85.31.244.144 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10700 flower src_mac 02:96:b3:4a:37:ee dst_mac 02:83:aa:80:e2:d7 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10701 flower src_mac 02:3d:32:18:1e:7c dst_mac 02:e5:ba:67:5f:fc vlan_id 2908 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10702 flower src_mac 02:52:ad:73:2a:07 dst_mac 02:7a:e2:bf:9e:bd action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10703 flower src_mac 02:3c:2e:eb:f4:ce dst_mac 02:e8:be:d5:fd:1e action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10704 flower src_mac 02:8d:8a:af:ca:ec dst_mac 02:bb:3a:c6:69:43 vlan_id 3730 vlan_ethtype ip src_ip 119.5.109.77 dst_ip 48.138.91.74 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10705 flower src_mac 02:37:23:17:0a:fb dst_mac 02:f7:7a:2f:67:44 vlan_id 2092 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol ip pref 10706 flower src_mac 02:e1:16:73:0b:15 dst_mac 02:8c:5a:dd:58:13 src_ip 90.102.157.245 dst_ip 62.189.191.203 ip_proto icmp code 249 type 12 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10707 flower src_mac 02:bc:db:06:3e:35 dst_mac 02:17:c9:ff:15:8b src_ip 54.48.67.225 dst_ip 56.39.186.119 ip_proto tcp src_port 10971 dst_port 32716 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10708 flower src_mac 02:43:34:d6:9a:aa dst_mac 02:72:aa:ea:9b:36 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10709 flower src_mac 02:94:eb:85:11:5d dst_mac 02:ec:2f:21:5d:5d vlan_id 151 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10710 flower src_mac 02:b9:e1:ba:f9:90 dst_mac 02:0e:ef:18:64:0c action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10711 flower src_mac 02:e0:2c:41:f9:87 dst_mac 02:a6:61:69:22:6c src_ip 45.2.13.100 dst_ip 37.56.94.147 ip_proto udp src_port 14489 dst_port 36999 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10712 flower src_mac 02:15:d6:1a:ee:e4 dst_mac 02:f1:40:b3:f0:82 vlan_id 3950 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10713 flower src_mac 02:ef:75:d7:5f:28 dst_mac 02:a6:96:59:6a:22 vlan_id 1742 vlan_ethtype ipv4 src_ip 50.80.161.70 dst_ip 83.176.156.156 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10714 flower src_mac 02:3c:8c:b7:01:45 dst_mac 02:bf:2c:f8:f5:7b vlan_id 726 vlan_ethtype ip src_ip 85.139.208.187 dst_ip 61.179.11.237 ip_proto tcp src_port 35638 dst_port 26945 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10715 flower src_mac 02:f8:4c:33:4e:c0 dst_mac 02:ae:13:d6:69:d7 action pass && tc filter add dev swp33 ingress protocol ip pref 10716 flower src_mac 02:11:3a:e7:8c:ef dst_mac 02:c3:81:84:3e:e8 src_ip 41.68.249.61 dst_ip 24.121.86.53 ip_proto tcp src_port 37628 dst_port 4162 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10717 flower src_mac 02:76:ad:ef:8f:8a dst_mac 02:4f:e4:e3:a3:03 vlan_id 1398 vlan_ethtype 0x0800 src_ip 44.194.95.131 dst_ip 77.105.191.240 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10718 flower src_mac 02:41:12:19:63:fe dst_mac 02:49:b4:b8:0a:61 src_ip 29.25.144.140 dst_ip 34.108.32.234 ip_proto tcp src_port 34611 dst_port 29802 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10719 flower src_mac 02:97:a3:ec:dc:00 dst_mac 02:4c:68:45:bf:58 vlan_id 1777 vlan_ethtype ip src_ip 72.149.221.143 dst_ip 22.235.43.48 ip_proto udp src_port 19557 dst_port 2789 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10720 flower src_mac 02:4b:cf:e2:cd:e1 dst_mac 02:2b:7e:8b:92:46 vlan_id 843 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol ip pref 10721 flower src_mac 02:08:42:67:70:3e dst_mac 02:b3:ae:3e:a6:b3 src_ip 70.216.125.22 dst_ip 77.250.176.27 ip_proto udp src_port 62514 dst_port 6413 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10722 flower src_mac 02:05:57:f2:73:47 dst_mac 02:30:55:95:d9:f1 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10723 flower src_mac 02:97:a1:84:4d:24 dst_mac 02:17:e7:4c:44:7b action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10724 flower src_mac 02:a5:85:ca:bb:b6 dst_mac 02:12:3f:16:26:66 src_ip 13.122.243.227 dst_ip 97.102.24.146 ip_proto icmp code 14 type 12 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10725 flower src_mac 02:79:cb:f5:c0:58 dst_mac 02:45:ae:1d:01:ae action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10726 flower src_mac 02:75:00:71:f0:67 dst_mac 02:66:77:03:8e:f0 src_ip 57.30.215.194 dst_ip 15.175.105.195 ip_proto tcp src_port 47517 dst_port 42430 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10727 flower src_mac 02:f5:38:1b:f4:32 dst_mac 02:fc:0d:9a:8e:7a src_ip 92.106.216.58 dst_ip 48.71.255.4 ip_proto tcp src_port 28838 dst_port 38241 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10728 flower src_mac 02:a4:6f:ac:5b:7b dst_mac 02:f6:eb:74:d5:75 vlan_id 1247 vlan_ethtype ipv4 src_ip 120.212.89.30 dst_ip 92.18.76.58 ip_proto tcp src_port 43101 dst_port 19524 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10729 flower src_mac 02:06:ed:28:38:0b dst_mac 02:02:8b:72:31:f6 vlan_id 3356 vlan_ethtype 0x0800 src_ip 12.41.135.128 dst_ip 101.246.24.167 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10730 flower src_mac 02:a0:7f:8c:44:ae dst_mac 02:0a:48:18:07:d8 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10731 flower src_mac 02:4b:9a:a0:89:f6 dst_mac 02:b6:81:41:9a:69 vlan_id 3210 vlan_ethtype 0x0800 src_ip 85.226.4.129 dst_ip 39.153.96.172 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10732 flower src_mac 02:cf:39:a4:8b:da dst_mac 02:f7:fe:3a:86:af action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10733 flower src_mac 02:3d:83:bd:b8:1d dst_mac 02:6a:6b:6c:37:6a action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10734 flower src_mac 02:59:f3:82:d8:97 dst_mac 02:4c:8d:14:d6:45 vlan_id 1873 vlan_ethtype ip src_ip 47.228.107.31 dst_ip 94.45.65.234 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10735 flower src_mac 02:f5:ec:04:75:e0 dst_mac 02:2e:14:ca:3b:bc action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10736 flower src_mac 02:aa:86:65:44:9f dst_mac 02:3a:b4:55:88:b5 src_ip 47.204.45.20 dst_ip 70.135.242.147 ip_proto udp src_port 41183 dst_port 36942 action trap && tc filter add dev swp33 ingress protocol ip pref 10737 flower src_mac 02:d5:f8:63:e4:40 dst_mac 02:f7:93:31:9a:ab src_ip 47.5.92.30 dst_ip 16.7.249.80 ip_proto udp src_port 47690 dst_port 56480 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10738 flower src_mac 02:d4:b1:62:4b:06 dst_mac 02:28:36:ea:7a:bd action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10739 flower src_mac 02:5d:57:d3:b6:d5 dst_mac 02:d2:37:e9:73:32 src_ip 54.177.237.123 dst_ip 122.178.171.27 ip_proto tcp src_port 56439 dst_port 13005 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10740 flower src_mac 02:b2:dd:5f:61:f4 dst_mac 02:2b:dd:8d:bb:1d vlan_id 1432 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol ip pref 10741 flower src_mac 02:5b:8a:ee:73:a1 dst_mac 02:e4:9d:e2:a8:44 src_ip 21.113.106.63 dst_ip 13.171.242.2 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10742 flower src_mac 02:92:24:9d:93:5c dst_mac 02:91:b8:d2:b1:e3 vlan_id 42 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10743 flower src_mac 02:a0:ca:ba:dc:86 dst_mac 02:dc:14:f1:fb:cf vlan_id 2787 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol ip pref 10744 flower src_mac 02:41:4b:e2:47:3e dst_mac 02:9a:03:b0:e1:49 src_ip 26.148.102.143 dst_ip 14.75.73.241 ip_proto tcp src_port 49583 dst_port 56629 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10745 flower src_mac 02:97:0d:b6:86:4e dst_mac 02:b5:45:09:20:91 vlan_id 1510 vlan_ethtype ip src_ip 64.217.245.21 dst_ip 75.159.91.64 ip_proto tcp src_port 46015 dst_port 41244 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10746 flower src_mac 02:1b:99:af:e1:f3 dst_mac 02:0d:cc:1b:c8:d4 vlan_id 3284 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol ip pref 10747 flower src_mac 02:cb:fd:76:e4:7e dst_mac 02:30:7d:64:07:38 src_ip 45.21.126.248 dst_ip 114.95.200.120 ip_proto icmp code 254 type 8 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10748 flower src_mac 02:c2:91:f1:c3:3d dst_mac 02:52:90:fe:da:0b vlan_id 2913 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10749 flower src_mac 02:8b:d6:c8:2d:7f dst_mac 02:07:4a:88:4c:b4 src_ip 34.81.201.34 dst_ip 77.113.201.123 ip_proto udp src_port 20244 dst_port 4621 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10750 flower src_mac 02:1f:bb:43:9a:40 dst_mac 02:5b:5a:91:da:01 vlan_id 2593 vlan_ethtype ipv4 src_ip 58.186.23.156 dst_ip 98.68.23.10 ip_proto udp src_port 60291 dst_port 59043 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10751 flower src_mac 02:7e:b6:7e:fd:22 dst_mac 02:7c:e9:88:28:7a src_ip 101.157.151.44 dst_ip 94.114.185.242 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10752 flower src_mac 02:44:d6:e7:28:7e dst_mac 02:dd:55:03:62:c5 vlan_id 2082 vlan_ethtype ip src_ip 124.68.53.133 dst_ip 99.254.46.198 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10753 flower src_mac 02:94:bb:78:e0:46 dst_mac 02:d8:cb:e4:5c:d7 src_ip 13.35.108.89 dst_ip 49.167.52.166 ip_proto icmp code 219 type 18 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10754 flower src_mac 02:b3:11:43:04:db dst_mac 02:e7:35:96:cb:18 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10755 flower src_mac 02:5c:ee:c3:1e:3a dst_mac 02:fe:05:74:0e:3c src_ip 87.161.248.17 dst_ip 52.81.62.93 ip_proto icmp code 179 type 16 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10756 flower src_mac 02:5a:3b:83:cf:10 dst_mac 02:c1:09:39:7c:ae action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10757 flower src_mac 02:8c:97:65:9d:95 dst_mac 02:93:3d:27:81:f6 vlan_id 1106 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10758 flower src_mac 02:a7:93:2b:92:f7 dst_mac 02:bf:4e:41:cc:fb action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10759 flower src_mac 02:69:26:a7:63:26 dst_mac 02:6f:6a:d4:ca:68 vlan_id 2232 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10760 flower src_mac 02:76:71:43:35:10 dst_mac 02:f5:ce:d0:3f:c7 vlan_id 1688 vlan_ethtype ip src_ip 46.109.115.124 dst_ip 56.218.74.203 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10761 flower src_mac 02:67:a1:7b:86:ea dst_mac 02:45:cb:db:55:92 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10762 flower src_mac 02:40:47:c3:12:82 dst_mac 02:59:e1:96:b2:45 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10763 flower src_mac 02:06:30:33:44:35 dst_mac 02:c9:0c:4a:bd:4e vlan_id 1701 vlan_ethtype ipv4 src_ip 59.197.57.36 dst_ip 49.23.70.84 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10764 flower src_mac 02:e5:f1:0e:97:54 dst_mac 02:1f:1f:89:23:c9 vlan_id 1264 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10765 flower src_mac 02:54:cf:12:76:d8 dst_mac 02:97:20:ea:a6:a0 action drop && tc filter add dev swp33 ingress protocol ip pref 10766 flower src_mac 02:ff:2b:b0:6a:80 dst_mac 02:56:bd:ea:37:8c src_ip 50.211.176.245 dst_ip 98.5.48.65 ip_proto icmp code 224 type 12 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10767 flower src_mac 02:85:b9:2f:a2:a9 dst_mac 02:76:6e:66:f0:b3 vlan_id 3818 vlan_ethtype 0x0800 src_ip 83.132.114.64 dst_ip 74.145.190.250 ip_proto udp src_port 64751 dst_port 55056 action trap && tc filter add dev swp33 ingress protocol ip pref 10768 flower src_mac 02:b9:48:78:aa:a6 dst_mac 02:66:70:fb:8a:56 src_ip 114.98.127.30 dst_ip 50.155.75.69 ip_proto udp src_port 53501 dst_port 30870 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10769 flower src_mac 02:42:89:3c:42:5a dst_mac 02:40:06:cc:59:81 vlan_id 3321 vlan_ethtype ip src_ip 34.244.212.248 dst_ip 107.109.227.112 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10770 flower src_mac 02:14:ff:66:53:bd dst_mac 02:4f:db:f2:80:89 vlan_id 3729 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10771 flower src_mac 02:34:4b:fa:6b:f9 dst_mac 02:20:f8:d2:6f:d1 vlan_id 1069 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10772 flower src_mac 02:c9:b8:3a:fa:15 dst_mac 02:6c:59:43:c6:b3 vlan_id 1633 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10773 flower src_mac 02:40:9b:cb:bc:a7 dst_mac 02:f4:e3:29:06:60 src_ip 26.117.200.95 dst_ip 34.112.208.241 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10774 flower src_mac 02:be:37:2d:78:b7 dst_mac 02:c1:ba:2c:17:66 vlan_id 2681 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10775 flower src_mac 02:1e:8b:36:8b:5d dst_mac 02:21:85:5b:ad:ae action pass && tc filter add dev swp33 ingress protocol ip pref 10776 flower src_mac 02:a9:39:ba:3c:66 dst_mac 02:c3:18:31:d9:ad src_ip 111.231.150.75 dst_ip 42.189.180.58 ip_proto udp src_port 39611 dst_port 28469 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10777 flower src_mac 02:92:7f:b3:58:9c dst_mac 02:1e:a0:42:f8:72 vlan_id 1330 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10778 flower src_mac 02:2f:3d:e2:1d:cc dst_mac 02:00:c2:22:8f:94 vlan_id 1783 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10779 flower src_mac 02:95:f2:61:b6:76 dst_mac 02:61:ed:bc:98:e5 src_ip 112.106.94.158 dst_ip 76.124.18.68 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10780 flower src_mac 02:2f:e9:cc:be:b9 dst_mac 02:18:c5:08:dd:09 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10781 flower src_mac 02:16:bf:18:bb:77 dst_mac 02:3e:24:0f:2f:20 vlan_id 1024 vlan_ethtype 0x0800 src_ip 113.233.32.43 dst_ip 94.106.71.160 action trap && tc filter add dev swp33 ingress protocol ip pref 10782 flower src_mac 02:99:56:04:28:3e dst_mac 02:4d:18:20:d1:79 src_ip 13.24.54.184 dst_ip 20.118.21.110 ip_proto udp src_port 33083 dst_port 62175 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10783 flower src_mac 02:5b:09:dc:d9:4b dst_mac 02:a5:52:04:73:89 vlan_id 3296 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol ip pref 10784 flower src_mac 02:fe:c6:85:55:8a dst_mac 02:be:91:45:ce:70 src_ip 51.246.81.94 dst_ip 79.126.137.209 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10785 flower src_mac 02:1c:55:1f:99:79 dst_mac 02:ce:e2:56:09:d8 vlan_id 3559 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10786 flower src_mac 02:dc:b8:04:33:4a dst_mac 02:09:31:89:05:50 vlan_id 385 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10787 flower src_mac 02:de:6b:8a:15:d2 dst_mac 02:a0:54:b6:00:ac src_ip 34.17.147.116 dst_ip 84.31.51.73 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10788 flower src_mac 02:bf:48:bb:ea:4f dst_mac 02:46:65:8b:a4:62 vlan_id 2503 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10789 flower src_mac 02:e7:62:09:17:1a dst_mac 02:fd:84:51:da:4c vlan_id 2251 vlan_ethtype 0x0800 src_ip 86.12.163.10 dst_ip 54.245.34.192 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10790 flower src_mac 02:d8:78:75:f3:1b dst_mac 02:b5:81:d0:fb:2e vlan_id 1238 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10791 flower src_mac 02:d0:56:72:48:53 dst_mac 02:c6:32:23:56:90 vlan_id 893 vlan_ethtype ipv4 src_ip 89.171.246.89 dst_ip 116.253.32.65 ip_proto tcp src_port 33111 dst_port 48331 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10792 flower src_mac 02:a8:9d:86:0d:bf dst_mac 02:ee:96:24:3f:f1 vlan_id 2349 vlan_ethtype ip src_ip 81.230.62.46 dst_ip 116.183.140.86 ip_proto tcp src_port 25219 dst_port 59593 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10793 flower src_mac 02:55:94:42:7f:50 dst_mac 02:de:56:81:e9:5c vlan_id 1532 vlan_ethtype 0x0800 src_ip 71.187.87.64 dst_ip 14.251.22.133 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10794 flower src_mac 02:0d:0c:8e:91:8a dst_mac 02:f7:d4:1f:ef:83 vlan_id 692 vlan_ethtype 0x0800 src_ip 115.253.71.223 dst_ip 27.154.77.185 ip_proto udp src_port 45993 dst_port 6940 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10795 flower src_mac 02:0f:fa:1c:9e:d8 dst_mac 02:7f:86:59:63:5a vlan_id 2237 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10796 flower src_mac 02:1b:2f:32:a0:b0 dst_mac 02:10:8d:91:97:48 vlan_id 2475 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10797 flower src_mac 02:f2:d5:d6:29:3c dst_mac 02:c3:79:c7:3f:8f src_ip 105.222.32.95 dst_ip 122.221.1.170 ip_proto udp src_port 63762 dst_port 8365 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10798 flower src_mac 02:ca:9e:02:9e:e0 dst_mac 02:eb:39:55:7a:68 src_ip 93.135.249.136 dst_ip 27.238.148.4 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10799 flower src_mac 02:bb:7e:cf:3d:fc dst_mac 02:9f:b5:97:64:23 src_ip 97.213.59.1 dst_ip 14.117.97.119 ip_proto tcp src_port 53898 dst_port 39551 action trap INFO asyncssh:logging.py:92 [conn=24, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=24, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=7] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol 802.1q pref 10800 flower src_mac 02:16:06:2e:2d:b1 dst_mac 02:2b:f9:03:cb:30 vlan_id 1812 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10801 flower src_mac 02:a2:c3:ee:ba:b2 dst_mac 02:b7:d0:69:5f:c2 src_ip 121.118.161.32 dst_ip 99.204.228.222 ip_proto udp src_port 110 dst_port 24415 action pass && tc filter add dev swp33 ingress protocol ip pref 10802 flower src_mac 02:1a:c1:d1:b8:c1 dst_mac 02:87:cf:59:13:94 src_ip 114.35.190.194 dst_ip 47.43.103.121 ip_proto tcp src_port 60349 dst_port 53482 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10803 flower src_mac 02:b4:4a:b4:5d:78 dst_mac 02:c6:cd:9f:b2:c4 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10804 flower src_mac 02:f0:b1:6b:a7:56 dst_mac 02:0a:27:b4:59:64 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10805 flower src_mac 02:88:00:75:40:ca dst_mac 02:f0:88:fa:4b:b9 vlan_id 2218 vlan_ethtype ip src_ip 88.114.125.99 dst_ip 24.245.76.3 ip_proto tcp src_port 61040 dst_port 39747 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10806 flower src_mac 02:6d:87:6c:4c:bb dst_mac 02:ea:9b:37:ab:c3 vlan_id 3002 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10807 flower src_mac 02:2f:47:13:0c:64 dst_mac 02:f0:f0:f8:27:35 vlan_id 3232 vlan_ethtype ip src_ip 33.170.37.18 dst_ip 123.142.169.167 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10808 flower src_mac 02:8f:3c:70:6e:64 dst_mac 02:96:c7:13:80:33 vlan_id 3698 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10809 flower src_mac 02:41:3f:39:1c:29 dst_mac 02:e2:42:b4:f4:c8 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10810 flower src_mac 02:c9:27:58:7c:2e dst_mac 02:ad:b4:e3:df:5c src_ip 17.200.50.54 dst_ip 37.236.116.149 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10811 flower src_mac 02:ee:b1:51:99:9d dst_mac 02:50:93:72:49:0a action drop && tc filter add dev swp33 ingress protocol ip pref 10812 flower src_mac 02:50:81:4e:98:37 dst_mac 02:da:f7:28:31:b0 src_ip 38.130.217.222 dst_ip 31.58.238.23 action drop && tc filter add dev swp33 ingress protocol ip pref 10813 flower src_mac 02:17:a1:e7:7a:c6 dst_mac 02:a9:61:d7:08:51 src_ip 45.46.242.80 dst_ip 51.189.125.202 ip_proto icmp code 185 type 13 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10814 flower src_mac 02:54:89:54:0b:41 dst_mac 02:8a:27:17:6e:ac vlan_id 2650 vlan_ethtype ipv4 src_ip 44.177.142.177 dst_ip 80.204.204.95 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10815 flower src_mac 02:0b:ea:f7:0d:80 dst_mac 02:df:54:4c:55:5b src_ip 110.241.10.249 dst_ip 114.96.209.31 ip_proto icmp code 17 type 14 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10816 flower src_mac 02:08:86:3b:5f:53 dst_mac 02:82:3d:cd:b4:c8 vlan_id 465 vlan_ethtype ipv4 src_ip 85.198.27.189 dst_ip 76.60.174.170 ip_proto tcp src_port 44542 dst_port 12154 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10817 flower src_mac 02:9c:ac:9a:92:ff dst_mac 02:71:32:b1:61:c3 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10818 flower src_mac 02:81:7f:d3:bc:3e dst_mac 02:9f:c2:92:95:e8 vlan_id 1845 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10819 flower src_mac 02:23:e7:08:ec:70 dst_mac 02:69:2e:e9:e7:fa src_ip 66.131.56.245 dst_ip 33.177.129.201 ip_proto icmp code 39 type 0 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10820 flower src_mac 02:7b:02:45:20:81 dst_mac 02:63:5e:81:3d:20 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10821 flower src_mac 02:da:f1:78:d6:84 dst_mac 02:87:56:02:80:2e action trap && tc filter add dev swp33 ingress protocol ip pref 10822 flower src_mac 02:3a:65:b2:ac:1a dst_mac 02:f0:16:37:84:3f src_ip 101.193.30.167 dst_ip 119.38.73.78 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10823 flower src_mac 02:77:43:60:0f:29 dst_mac 02:81:6a:06:91:d1 vlan_id 903 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10824 flower src_mac 02:45:7b:6d:2d:88 dst_mac 02:99:3b:23:d3:69 src_ip 64.19.29.116 dst_ip 95.102.187.130 ip_proto tcp src_port 25720 dst_port 48954 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10825 flower src_mac 02:2d:7d:7a:c8:1c dst_mac 02:81:bc:c6:b9:4e vlan_id 506 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10826 flower src_mac 02:63:67:da:6d:0a dst_mac 02:39:2c:86:f2:43 vlan_id 1368 vlan_ethtype ipv4 src_ip 124.5.14.162 dst_ip 83.112.245.47 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10827 flower src_mac 02:bf:37:3d:de:d1 dst_mac 02:ae:3a:1b:54:1a vlan_id 1690 vlan_ethtype ipv4 src_ip 33.62.235.3 dst_ip 117.60.241.147 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10828 flower src_mac 02:70:14:07:ce:98 dst_mac 02:98:d0:a8:a9:ee vlan_id 783 vlan_ethtype 0x0800 src_ip 123.235.146.66 dst_ip 59.231.25.103 ip_proto udp src_port 30810 dst_port 55526 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10829 flower src_mac 02:34:b0:21:1f:0e dst_mac 02:f3:b6:17:12:95 vlan_id 2754 vlan_ethtype 0x0800 src_ip 50.251.34.116 dst_ip 69.175.231.125 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10830 flower src_mac 02:e5:32:56:2a:9d dst_mac 02:a2:11:a1:3c:21 vlan_id 2526 vlan_ethtype ipv4 src_ip 36.127.131.172 dst_ip 115.100.98.243 ip_proto tcp src_port 5442 dst_port 19264 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10831 flower src_mac 02:09:27:72:89:04 dst_mac 02:84:14:4a:da:fe vlan_id 1484 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10832 flower src_mac 02:06:81:2c:d3:c7 dst_mac 02:bd:c0:41:49:10 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10833 flower src_mac 02:0f:2c:06:0a:19 dst_mac 02:b7:bd:f6:48:e4 src_ip 73.126.72.40 dst_ip 120.10.184.185 ip_proto tcp src_port 59432 dst_port 63863 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10834 flower src_mac 02:11:c7:51:62:81 dst_mac 02:74:66:e4:57:4b vlan_id 2453 vlan_ethtype ipv4 src_ip 29.105.0.8 dst_ip 118.166.164.156 ip_proto tcp src_port 59871 dst_port 37736 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10835 flower src_mac 02:e9:ec:12:39:64 dst_mac 02:f5:67:48:2e:47 src_ip 80.110.222.115 dst_ip 50.198.25.27 ip_proto icmp code 160 type 12 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10836 flower src_mac 02:f6:4c:8a:fa:6e dst_mac 02:51:1c:0c:59:b4 vlan_id 311 vlan_ethtype 0x0800 src_ip 35.36.116.60 dst_ip 27.112.166.65 ip_proto tcp src_port 33144 dst_port 53617 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10837 flower src_mac 02:87:c0:54:1f:51 dst_mac 02:ff:d1:e1:35:ba action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10838 flower src_mac 02:de:93:ad:d4:79 dst_mac 02:db:0a:b4:58:c5 vlan_id 3886 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10839 flower src_mac 02:a2:b3:2e:45:c8 dst_mac 02:4e:3e:31:91:31 src_ip 118.112.158.79 dst_ip 83.55.230.157 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10840 flower src_mac 02:85:78:8e:d5:20 dst_mac 02:4b:01:7a:32:3e vlan_id 2988 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol ip pref 10841 flower src_mac 02:01:2c:50:e4:83 dst_mac 02:0f:47:e6:35:a5 src_ip 91.26.6.94 dst_ip 62.202.251.128 ip_proto tcp src_port 42139 dst_port 20399 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10842 flower src_mac 02:46:d1:7d:d3:34 dst_mac 02:2d:d3:a1:82:e6 vlan_id 3374 vlan_ethtype 0x0800 src_ip 61.23.202.72 dst_ip 95.176.151.10 ip_proto tcp src_port 33410 dst_port 23005 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10843 flower src_mac 02:aa:ee:bb:14:25 dst_mac 02:73:d9:a3:00:9d src_ip 68.206.18.147 dst_ip 63.215.231.13 ip_proto icmp code 120 type 12 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10844 flower src_mac 02:f9:f6:32:33:1a dst_mac 02:3c:9d:8a:16:64 vlan_id 981 vlan_ethtype ip src_ip 75.72.9.38 dst_ip 109.72.93.42 ip_proto udp src_port 31313 dst_port 41579 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10845 flower src_mac 02:a7:79:dc:0e:5d dst_mac 02:33:12:e7:5d:f5 vlan_id 1926 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10846 flower src_mac 02:34:99:41:00:47 dst_mac 02:ba:d1:24:8f:25 src_ip 86.65.255.72 dst_ip 103.103.214.91 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10847 flower src_mac 02:01:35:bf:80:ec dst_mac 02:5b:df:8e:26:d0 action trap && tc filter add dev swp33 ingress protocol ip pref 10848 flower src_mac 02:ea:d0:a7:bd:30 dst_mac 02:e7:21:cb:7a:c3 src_ip 100.127.67.100 dst_ip 93.147.39.114 ip_proto icmp code 103 type 8 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10849 flower src_mac 02:63:17:72:36:f2 dst_mac 02:2c:81:ac:46:d9 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10850 flower src_mac 02:3f:52:e1:65:ea dst_mac 02:5a:e9:69:d9:dd vlan_id 2155 vlan_ethtype ipv4 src_ip 26.191.84.219 dst_ip 106.85.177.81 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10851 flower src_mac 02:5c:15:33:37:3d dst_mac 02:48:de:98:f9:43 vlan_id 2564 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10852 flower src_mac 02:a7:72:e9:e0:f0 dst_mac 02:fe:bf:ae:22:d3 vlan_id 472 vlan_ethtype ipv4 src_ip 116.203.142.107 dst_ip 112.120.49.191 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10853 flower src_mac 02:f3:ec:db:52:4c dst_mac 02:45:8c:07:5c:41 vlan_id 82 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10854 flower src_mac 02:60:d6:4b:2f:ee dst_mac 02:77:07:11:b4:77 vlan_id 1873 vlan_ethtype ipv4 src_ip 16.214.100.15 dst_ip 68.179.107.149 ip_proto tcp src_port 49493 dst_port 46296 action pass && tc filter add dev swp33 ingress protocol ip pref 10855 flower src_mac 02:f8:16:2b:18:45 dst_mac 02:2d:08:9a:6b:c8 src_ip 96.237.140.73 dst_ip 100.79.1.20 action pass && tc filter add dev swp33 ingress protocol ip pref 10856 flower src_mac 02:62:6e:16:aa:df dst_mac 02:16:0f:0c:98:2f src_ip 36.3.226.179 dst_ip 52.74.92.232 action trap && tc filter add dev swp33 ingress protocol ip pref 10857 flower src_mac 02:32:14:ee:a7:5e dst_mac 02:f8:7e:f3:1c:10 src_ip 45.36.27.68 dst_ip 41.190.180.119 ip_proto udp src_port 18915 dst_port 64989 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10858 flower src_mac 02:a8:00:e4:8c:02 dst_mac 02:97:76:04:0c:e0 src_ip 62.157.19.237 dst_ip 76.164.118.7 ip_proto udp src_port 17344 dst_port 41067 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10859 flower src_mac 02:59:9e:dc:f6:eb dst_mac 02:c7:5d:f1:d2:99 src_ip 43.171.216.146 dst_ip 91.198.148.212 ip_proto tcp src_port 63219 dst_port 40250 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10860 flower src_mac 02:12:87:87:6c:6d dst_mac 02:64:d2:e0:f7:70 vlan_id 3007 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10861 flower src_mac 02:f6:11:cd:de:67 dst_mac 02:9b:07:83:0d:6e vlan_id 1088 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10862 flower src_mac 02:c5:50:d0:36:9e dst_mac 02:db:8a:7c:7d:c0 src_ip 119.128.244.67 dst_ip 67.238.107.108 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10863 flower src_mac 02:41:1e:9b:fd:d5 dst_mac 02:36:e9:1c:e0:8d src_ip 57.225.63.174 dst_ip 82.218.158.101 ip_proto udp src_port 43415 dst_port 35826 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10864 flower src_mac 02:d2:ce:3a:30:a5 dst_mac 02:17:94:ab:91:fc action pass && tc filter add dev swp33 ingress protocol ip pref 10865 flower src_mac 02:36:64:c3:68:e2 dst_mac 02:2e:3e:29:79:00 src_ip 21.180.222.93 dst_ip 22.70.104.36 ip_proto icmp code 235 type 3 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10866 flower src_mac 02:e7:87:ea:fa:eb dst_mac 02:96:0f:19:2f:63 vlan_id 1276 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10867 flower src_mac 02:0d:62:39:47:80 dst_mac 02:51:54:14:97:bd vlan_id 352 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10868 flower src_mac 02:82:23:69:78:6b dst_mac 02:39:f2:8c:e4:9b vlan_id 1247 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol ip pref 10869 flower src_mac 02:c2:c0:6f:37:d4 dst_mac 02:c4:a8:23:9d:29 src_ip 109.19.32.112 dst_ip 22.57.191.39 ip_proto icmp code 86 type 18 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10870 flower src_mac 02:d6:1f:ca:9c:e8 dst_mac 02:d3:29:2f:d9:8e action trap && tc filter add dev swp33 ingress protocol ip pref 10871 flower src_mac 02:2a:5d:b2:29:65 dst_mac 02:d3:52:06:6e:c1 src_ip 45.217.251.119 dst_ip 64.206.229.204 ip_proto tcp src_port 39081 dst_port 28223 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10872 flower src_mac 02:93:33:cc:bb:ab dst_mac 02:f5:ba:fe:9a:9a action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10873 flower src_mac 02:31:26:61:68:b7 dst_mac 02:cd:02:1a:e2:bc vlan_id 340 vlan_ethtype 0x0800 src_ip 118.46.64.92 dst_ip 92.90.101.158 ip_proto tcp src_port 16229 dst_port 27151 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10874 flower src_mac 02:a5:7c:26:df:fe dst_mac 02:07:b3:ea:4f:d3 src_ip 38.200.186.48 dst_ip 86.43.177.119 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10875 flower src_mac 02:e2:38:92:02:50 dst_mac 02:aa:d5:34:39:09 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10876 flower src_mac 02:d7:e1:f4:61:57 dst_mac 02:55:7b:53:1c:1a vlan_id 3820 vlan_ethtype 0x0800 src_ip 25.241.57.84 dst_ip 111.3.218.88 action trap && tc filter add dev swp33 ingress protocol ip pref 10877 flower src_mac 02:cf:a1:3e:1e:a9 dst_mac 02:6d:1d:75:fa:d3 src_ip 72.6.2.15 dst_ip 110.29.166.185 ip_proto icmp code 98 type 18 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10878 flower src_mac 02:9b:03:d5:f1:5f dst_mac 02:a5:bc:e4:2e:c6 vlan_id 3534 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10879 flower src_mac 02:41:14:6e:a2:fe dst_mac 02:1e:f0:8d:45:8f action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10880 flower src_mac 02:5e:8c:a6:c2:6f dst_mac 02:f7:46:06:39:ac vlan_id 493 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10881 flower src_mac 02:2c:23:c6:d5:19 dst_mac 02:a6:e6:44:4c:93 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10882 flower src_mac 02:9d:08:c8:3f:53 dst_mac 02:62:25:4a:2f:3d vlan_id 1664 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10883 flower src_mac 02:0e:e6:cb:66:60 dst_mac 02:43:fb:2c:0a:87 vlan_id 2006 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol ip pref 10884 flower src_mac 02:f2:09:20:b3:6f dst_mac 02:69:24:98:dd:ea src_ip 28.63.169.112 dst_ip 65.117.66.27 ip_proto udp src_port 29321 dst_port 23972 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10885 flower src_mac 02:c4:17:91:1b:0d dst_mac 02:5b:38:a3:11:c2 vlan_id 3239 vlan_ethtype ipv4 src_ip 65.227.156.10 dst_ip 75.108.44.107 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10886 flower src_mac 02:1b:b4:19:c5:68 dst_mac 02:b5:f6:b9:fd:d2 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10887 flower src_mac 02:88:80:56:7f:be dst_mac 02:a9:15:ff:29:89 vlan_id 2795 vlan_ethtype ip src_ip 38.75.190.5 dst_ip 40.199.203.91 ip_proto udp src_port 26115 dst_port 22739 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10888 flower src_mac 02:27:f7:e4:dc:d5 dst_mac 02:dc:f3:49:b3:39 vlan_id 59 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10889 flower src_mac 02:e1:48:5e:0e:f7 dst_mac 02:e9:c7:53:d8:08 src_ip 30.209.204.209 dst_ip 15.119.68.80 ip_proto icmp code 46 type 15 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10890 flower src_mac 02:e8:31:33:6f:53 dst_mac 02:b5:76:5f:38:6e vlan_id 378 vlan_ethtype ipv4 src_ip 20.76.149.187 dst_ip 115.41.156.99 ip_proto udp src_port 16097 dst_port 43191 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10891 flower src_mac 02:91:f6:eb:0d:92 dst_mac 02:45:4c:e4:49:a3 vlan_id 1563 vlan_ethtype ipv4 src_ip 40.165.163.142 dst_ip 23.71.191.215 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10892 flower src_mac 02:d4:56:f6:7a:3c dst_mac 02:1f:d3:d4:d5:bc vlan_id 2248 vlan_ethtype ipv4 src_ip 87.97.188.210 dst_ip 44.0.145.15 ip_proto tcp src_port 208 dst_port 46074 action trap && tc filter add dev swp33 ingress protocol ip pref 10893 flower src_mac 02:1f:32:8e:42:90 dst_mac 02:00:28:5f:fb:33 src_ip 117.172.94.163 dst_ip 124.42.250.163 ip_proto udp src_port 12721 dst_port 32256 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10894 flower src_mac 02:bb:f2:11:0a:45 dst_mac 02:8c:fd:75:ad:e8 src_ip 43.76.87.75 dst_ip 108.183.219.53 ip_proto icmp code 242 type 17 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10895 flower src_mac 02:82:61:6b:8a:30 dst_mac 02:4e:9f:1a:ec:13 src_ip 58.248.37.154 dst_ip 50.170.221.142 ip_proto icmp code 9 type 3 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10896 flower src_mac 02:55:dd:1e:05:c2 dst_mac 02:fb:bd:28:d4:b5 vlan_id 1006 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10897 flower src_mac 02:a0:cc:0c:88:2b dst_mac 02:81:58:1b:db:6b src_ip 64.195.88.15 dst_ip 36.0.62.242 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10898 flower src_mac 02:b0:ab:7e:72:bf dst_mac 02:4c:ed:b1:af:66 vlan_id 3134 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10899 flower src_mac 02:51:36:9f:a6:e7 dst_mac 02:f2:08:ee:91:a4 vlan_id 551 vlan_ethtype ip src_ip 76.85.136.167 dst_ip 82.116.128.18 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10900 flower src_mac 02:bf:4d:40:db:d0 dst_mac 02:b6:59:5b:61:31 vlan_id 2331 vlan_ethtype ip src_ip 25.199.87.60 dst_ip 107.131.56.145 ip_proto tcp src_port 62810 dst_port 58109 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10901 flower src_mac 02:4e:f3:77:3b:2b dst_mac 02:58:51:eb:d3:27 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10902 flower src_mac 02:e2:64:6d:10:ff dst_mac 02:e0:e0:1b:d2:e0 vlan_id 2959 vlan_ethtype ip src_ip 99.242.106.89 dst_ip 83.210.152.178 ip_proto udp src_port 22094 dst_port 22018 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10903 flower src_mac 02:11:f3:1b:2b:4c dst_mac 02:84:73:a9:70:29 vlan_id 1113 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10904 flower src_mac 02:27:65:18:77:3a dst_mac 02:ca:e5:4e:8f:38 vlan_id 466 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10905 flower src_mac 02:a5:37:9f:0d:d5 dst_mac 02:88:b3:c8:e4:08 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10906 flower src_mac 02:02:96:fb:3d:81 dst_mac 02:3f:e3:4a:70:b7 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10907 flower src_mac 02:fc:69:e2:2e:90 dst_mac 02:24:cd:5c:94:9e vlan_id 777 vlan_ethtype ipv4 src_ip 54.24.55.121 dst_ip 79.253.188.194 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10908 flower src_mac 02:ca:7c:da:a9:71 dst_mac 02:0b:ea:5e:49:92 src_ip 105.47.140.246 dst_ip 119.224.120.145 ip_proto tcp src_port 30848 dst_port 3913 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10909 flower src_mac 02:60:e1:b8:42:a3 dst_mac 02:f0:1c:6f:61:f1 src_ip 104.227.178.100 dst_ip 88.211.95.63 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10910 flower src_mac 02:3a:a8:96:17:6d dst_mac 02:7c:c5:1b:a2:15 vlan_id 3716 vlan_ethtype 0x0800 src_ip 18.128.127.69 dst_ip 45.107.43.203 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10911 flower src_mac 02:75:1b:5b:9f:de dst_mac 02:10:97:43:13:24 vlan_id 2579 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10912 flower src_mac 02:8a:54:b5:d3:ee dst_mac 02:60:c1:d0:83:d4 vlan_id 1537 vlan_ethtype ip src_ip 69.165.18.240 dst_ip 89.199.125.185 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10913 flower src_mac 02:65:00:cd:99:2c dst_mac 02:cf:ba:f6:ad:19 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10914 flower src_mac 02:55:fa:9c:4c:49 dst_mac 02:57:ae:ec:1b:7c vlan_id 4036 vlan_ethtype ip src_ip 125.132.85.63 dst_ip 70.198.90.198 ip_proto tcp src_port 16734 dst_port 55635 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10915 flower src_mac 02:6b:c1:d6:39:b4 dst_mac 02:d4:3d:d9:88:32 vlan_id 3266 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10916 flower src_mac 02:15:ab:32:6f:37 dst_mac 02:b2:c3:00:cc:a3 vlan_id 2704 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10917 flower src_mac 02:7a:e0:ad:d4:e7 dst_mac 02:12:21:13:af:f2 vlan_id 2914 vlan_ethtype 0x0800 src_ip 61.189.26.113 dst_ip 44.154.227.118 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10918 flower src_mac 02:b2:d8:f0:1e:1c dst_mac 02:d9:d2:d7:47:49 vlan_id 55 vlan_ethtype ipv4 src_ip 30.103.35.35 dst_ip 47.210.75.26 ip_proto tcp src_port 33787 dst_port 61823 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10919 flower src_mac 02:d1:2a:f8:88:a4 dst_mac 02:10:8f:dd:5f:51 src_ip 83.65.236.171 dst_ip 112.84.34.193 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10920 flower src_mac 02:ef:d1:12:5e:eb dst_mac 02:55:47:37:36:13 vlan_id 486 vlan_ethtype ipv4 src_ip 54.6.2.225 dst_ip 97.240.38.161 ip_proto udp src_port 11528 dst_port 3337 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10921 flower src_mac 02:e7:14:83:d2:a9 dst_mac 02:05:4d:fa:a1:f4 vlan_id 2295 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10922 flower src_mac 02:64:97:d5:54:22 dst_mac 02:3c:f4:fd:51:5c src_ip 89.228.171.9 dst_ip 23.40.192.33 ip_proto icmp code 121 type 15 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10923 flower src_mac 02:a1:ef:32:a7:c1 dst_mac 02:53:dc:f4:c9:b6 vlan_id 2741 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10924 flower src_mac 02:d2:6a:39:13:50 dst_mac 02:15:44:be:d8:04 vlan_id 3567 vlan_ethtype ipv4 src_ip 68.196.223.154 dst_ip 90.253.204.34 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10925 flower src_mac 02:59:91:d7:7b:ff dst_mac 02:b6:3e:9b:c6:34 src_ip 116.13.150.65 dst_ip 55.53.82.30 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10926 flower src_mac 02:f7:eb:66:3f:bc dst_mac 02:4b:dc:60:3c:76 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10927 flower src_mac 02:30:47:d0:de:90 dst_mac 02:b0:89:32:10:10 vlan_id 1476 vlan_ethtype 0x0800 src_ip 85.87.66.210 dst_ip 83.79.14.178 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10928 flower src_mac 02:bf:8e:e7:bc:a5 dst_mac 02:55:88:50:ad:04 src_ip 103.214.68.184 dst_ip 15.31.34.206 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10929 flower src_mac 02:0e:b0:77:51:8e dst_mac 02:92:cf:4e:19:4b action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10930 flower src_mac 02:c9:0e:38:5d:99 dst_mac 02:25:51:61:dc:af src_ip 72.255.75.90 dst_ip 24.17.128.47 ip_proto icmp code 188 type 13 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10931 flower src_mac 02:64:06:19:a6:2b dst_mac 02:a2:13:6b:aa:37 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10932 flower src_mac 02:00:4f:3c:f6:0e dst_mac 02:eb:77:4c:a8:48 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10933 flower src_mac 02:34:42:80:29:6d dst_mac 02:fb:82:3c:96:b0 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10934 flower src_mac 02:4f:3a:88:db:cb dst_mac 02:79:e5:39:a1:84 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10935 flower src_mac 02:4a:df:bd:19:7c dst_mac 02:d1:1a:b9:c0:5d src_ip 35.193.117.25 dst_ip 89.184.133.195 ip_proto udp src_port 65500 dst_port 23262 action pass && tc filter add dev swp33 ingress protocol ip pref 10936 flower src_mac 02:db:dc:be:dc:cd dst_mac 02:b4:7e:76:3e:c8 src_ip 32.181.190.84 dst_ip 47.0.12.79 ip_proto udp src_port 34662 dst_port 7679 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10937 flower src_mac 02:34:f5:3b:ad:2a dst_mac 02:ac:c7:12:ae:0d src_ip 38.39.133.99 dst_ip 19.65.243.68 ip_proto tcp src_port 31903 dst_port 12086 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10938 flower src_mac 02:86:f3:b4:69:6b dst_mac 02:5e:f7:03:27:de vlan_id 1957 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10939 flower src_mac 02:cd:66:06:95:4b dst_mac 02:ae:e6:16:9c:43 src_ip 42.127.69.124 dst_ip 11.28.233.51 ip_proto tcp src_port 52088 dst_port 42985 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10940 flower src_mac 02:86:b9:6b:0b:ec dst_mac 02:9f:5d:e8:5e:bf vlan_id 226 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol ip pref 10941 flower src_mac 02:28:07:78:d6:83 dst_mac 02:98:1f:47:5c:c1 src_ip 115.66.94.218 dst_ip 71.208.30.93 ip_proto tcp src_port 13139 dst_port 38311 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10942 flower src_mac 02:db:94:33:0c:c9 dst_mac 02:20:e5:26:36:5d vlan_id 2291 vlan_ethtype ip src_ip 64.216.152.247 dst_ip 86.69.128.182 ip_proto tcp src_port 56997 dst_port 4555 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10943 flower src_mac 02:f2:49:28:66:72 dst_mac 02:77:eb:ba:1f:06 src_ip 106.5.186.178 dst_ip 65.87.159.36 ip_proto tcp src_port 43899 dst_port 18092 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10944 flower src_mac 02:7d:b3:29:43:55 dst_mac 02:2d:10:fc:95:1e vlan_id 2541 vlan_ethtype ip src_ip 95.246.65.223 dst_ip 61.165.32.19 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10945 flower src_mac 02:55:1a:bd:f9:f5 dst_mac 02:a9:8b:1f:ac:82 vlan_id 1608 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10946 flower src_mac 02:22:67:de:c5:71 dst_mac 02:36:4d:2a:95:be vlan_id 3786 vlan_ethtype ip src_ip 80.178.31.228 dst_ip 64.57.172.198 ip_proto tcp src_port 49885 dst_port 60268 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10947 flower src_mac 02:58:fa:ad:2a:e9 dst_mac 02:0b:e8:49:c4:ca vlan_id 616 vlan_ethtype ip src_ip 62.108.37.106 dst_ip 63.250.73.242 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10948 flower src_mac 02:67:b1:bc:33:2d dst_mac 02:00:55:85:7a:ea vlan_id 1959 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10949 flower src_mac 02:14:bd:bc:42:62 dst_mac 02:ec:99:9a:4b:8c src_ip 83.187.30.145 dst_ip 111.16.70.20 ip_proto udp src_port 25604 dst_port 26844 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10950 flower src_mac 02:cb:e6:fd:37:fb dst_mac 02:de:3c:53:0f:b6 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10951 flower src_mac 02:6c:43:f9:e3:03 dst_mac 02:e5:bf:59:14:59 vlan_id 2883 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10952 flower src_mac 02:75:c6:d2:75:b1 dst_mac 02:b6:be:19:fe:a3 vlan_id 2492 vlan_ethtype ipv4 src_ip 115.50.241.123 dst_ip 81.21.62.89 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10953 flower src_mac 02:62:2a:c5:9e:47 dst_mac 02:a2:34:03:f0:8d vlan_id 1887 vlan_ethtype ipv4 src_ip 67.144.13.242 dst_ip 57.223.50.245 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10954 flower src_mac 02:8f:95:1d:f6:b8 dst_mac 02:91:b0:f9:ef:03 vlan_id 1074 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10955 flower src_mac 02:d3:de:f2:e4:e3 dst_mac 02:61:4a:de:4b:28 vlan_id 1986 vlan_ethtype ip src_ip 84.64.249.55 dst_ip 119.20.75.21 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10956 flower src_mac 02:33:8e:d7:af:00 dst_mac 02:40:64:cb:a6:88 vlan_id 2522 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10957 flower src_mac 02:f9:0d:04:9b:42 dst_mac 02:35:15:9d:b5:ca vlan_id 1231 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10958 flower src_mac 02:01:24:fb:c0:68 dst_mac 02:83:5f:e8:ed:09 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10959 flower src_mac 02:cc:22:e5:53:37 dst_mac 02:cf:cc:40:e8:4f action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10960 flower src_mac 02:eb:af:de:f6:92 dst_mac 02:34:dd:63:96:6d vlan_id 3673 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10961 flower src_mac 02:d8:b6:e8:53:20 dst_mac 02:25:4e:d7:15:02 src_ip 121.61.179.3 dst_ip 94.182.175.87 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10962 flower src_mac 02:f2:01:93:db:bd dst_mac 02:9c:5e:ae:fd:4d vlan_id 2702 vlan_ethtype ipv4 src_ip 53.173.178.102 dst_ip 90.20.63.94 ip_proto udp src_port 53485 dst_port 10371 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10963 flower src_mac 02:c6:e2:75:6b:f6 dst_mac 02:47:83:55:15:fe vlan_id 1724 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10964 flower src_mac 02:ab:99:4b:fa:c2 dst_mac 02:34:3b:02:59:bd src_ip 18.172.170.250 dst_ip 59.234.15.204 ip_proto tcp src_port 50201 dst_port 1475 action trap && tc filter add dev swp33 ingress protocol ip pref 10965 flower src_mac 02:37:0e:5b:5a:c8 dst_mac 02:a1:2e:84:96:4d src_ip 94.31.153.168 dst_ip 113.157.100.179 ip_proto tcp src_port 7246 dst_port 14074 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10966 flower src_mac 02:0a:f2:7e:cf:1f dst_mac 02:d6:53:99:7b:ee vlan_id 2892 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10967 flower src_mac 02:3f:30:eb:8e:66 dst_mac 02:b7:b5:1e:90:86 vlan_id 3608 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10968 flower src_mac 02:bb:dc:91:b9:76 dst_mac 02:5e:b6:cf:dd:cf vlan_id 2911 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10969 flower src_mac 02:47:57:f1:3a:60 dst_mac 02:94:1b:3c:9a:37 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10970 flower src_mac 02:4a:6c:59:d1:cf dst_mac 02:a2:93:c8:dc:c1 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10971 flower src_mac 02:bb:84:5d:bc:14 dst_mac 02:c1:2e:b2:5e:9c vlan_id 578 vlan_ethtype 0x0800 src_ip 97.55.42.223 dst_ip 17.121.138.31 ip_proto udp src_port 14416 dst_port 12279 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10972 flower src_mac 02:6e:db:b0:40:b7 dst_mac 02:a7:24:dd:51:73 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10973 flower src_mac 02:4b:85:e4:6b:11 dst_mac 02:3e:e5:a3:e1:56 vlan_id 1364 vlan_ethtype ip src_ip 11.65.212.150 dst_ip 108.50.87.150 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10974 flower src_mac 02:0c:05:5c:d9:b2 dst_mac 02:27:e5:ab:49:4a action trap && tc filter add dev swp33 ingress protocol ip pref 10975 flower src_mac 02:a5:76:b4:47:09 dst_mac 02:fb:01:4f:cc:65 src_ip 101.65.139.161 dst_ip 56.165.101.234 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10976 flower src_mac 02:1c:9e:62:98:c5 dst_mac 02:7e:f3:f4:67:31 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10977 flower src_mac 02:72:d4:66:0c:3b dst_mac 02:80:f9:72:24:62 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10978 flower src_mac 02:fb:d5:e8:d5:50 dst_mac 02:ef:19:e6:52:c6 src_ip 87.145.40.74 dst_ip 64.20.17.174 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10979 flower src_mac 02:8c:98:c4:27:00 dst_mac 02:ba:02:2a:93:a8 action pass && tc filter add dev swp33 ingress protocol ip pref 10980 flower src_mac 02:d1:32:08:23:0a dst_mac 02:d4:95:11:c4:af src_ip 50.214.72.71 dst_ip 123.8.239.211 ip_proto udp src_port 9043 dst_port 55797 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10981 flower src_mac 02:f8:b6:ae:01:ba dst_mac 02:f4:3a:5b:33:6d vlan_id 2417 vlan_ethtype ip src_ip 56.154.32.169 dst_ip 14.197.252.165 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10982 flower src_mac 02:38:98:3c:22:4f dst_mac 02:a2:1f:07:07:ab vlan_id 1647 vlan_ethtype ipv4 src_ip 112.7.250.8 dst_ip 102.195.31.162 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10983 flower src_mac 02:29:eb:f8:98:b8 dst_mac 02:b5:9e:14:3e:e3 vlan_id 788 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10984 flower src_mac 02:29:17:f0:14:13 dst_mac 02:ac:e2:16:19:c5 src_ip 95.60.16.91 dst_ip 31.7.25.154 ip_proto udp src_port 54669 dst_port 7616 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10985 flower src_mac 02:25:b1:74:05:74 dst_mac 02:2d:e6:7d:e1:12 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10986 flower src_mac 02:12:43:25:01:f1 dst_mac 02:8b:19:78:3c:1f vlan_id 1107 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10987 flower src_mac 02:c5:b7:46:6f:49 dst_mac 02:5b:70:ec:48:86 vlan_id 2685 vlan_ethtype ip src_ip 116.126.160.97 dst_ip 124.128.1.125 ip_proto udp src_port 22304 dst_port 19283 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10988 flower src_mac 02:07:08:f0:2f:59 dst_mac 02:f5:0c:7f:50:b3 vlan_id 1977 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10989 flower src_mac 02:35:0d:e6:02:f8 dst_mac 02:c8:71:65:37:48 action trap && tc filter add dev swp33 ingress protocol ip pref 10990 flower src_mac 02:cd:b6:2f:48:d6 dst_mac 02:ac:7e:1e:09:03 src_ip 12.161.126.191 dst_ip 41.35.52.193 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10991 flower src_mac 02:96:03:a8:7c:54 dst_mac 02:8f:e6:a6:74:b2 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10992 flower src_mac 02:4a:22:d4:4f:eb dst_mac 02:95:a3:62:85:7c vlan_id 3648 vlan_ethtype 0x0800 src_ip 23.209.18.220 dst_ip 101.217.182.243 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10993 flower src_mac 02:7e:d9:1f:09:c3 dst_mac 02:17:54:af:1e:08 vlan_id 1970 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol ip pref 10994 flower src_mac 02:a3:70:64:1a:cd dst_mac 02:15:c3:90:58:13 src_ip 94.216.218.145 dst_ip 116.121.40.75 ip_proto tcp src_port 1143 dst_port 6136 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10995 flower src_mac 02:a6:21:6c:a0:39 dst_mac 02:3a:5b:c7:14:89 vlan_id 3907 vlan_ethtype ip src_ip 56.67.21.144 dst_ip 57.247.102.58 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10996 flower src_mac 02:59:dc:f2:c8:d8 dst_mac 02:f5:ab:39:b0:b4 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10997 flower src_mac 02:f4:e6:d4:e8:87 dst_mac 02:4b:e9:25:63:b0 vlan_id 3646 vlan_ethtype ip src_ip 63.162.200.62 dst_ip 126.255.108.100 ip_proto tcp src_port 51932 dst_port 47401 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10998 flower src_mac 02:36:7d:33:c5:9e dst_mac 02:36:6d:43:70:7b vlan_id 1506 vlan_ethtype ipv4 src_ip 42.95.83.193 dst_ip 95.138.113.136 ip_proto udp src_port 11635 dst_port 5794 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10999 flower src_mac 02:6d:b3:58:ce:82 dst_mac 02:dc:bf:9d:84:1c src_ip 79.228.74.168 dst_ip 121.150.182.240 ip_proto udp src_port 52767 dst_port 52834 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11000 flower src_mac 02:06:7d:31:f6:7c dst_mac 02:7d:b4:1f:5d:31 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11001 flower src_mac 02:09:8d:82:85:67 dst_mac 02:4d:64:5b:fb:ae src_ip 96.30.213.94 dst_ip 104.68.46.152 ip_proto udp src_port 20147 dst_port 11871 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11002 flower src_mac 02:ac:bd:4a:60:34 dst_mac 02:a9:51:2f:c3:42 vlan_id 360 vlan_ethtype 0x0800 src_ip 86.45.56.247 dst_ip 92.101.228.127 ip_proto tcp src_port 3876 dst_port 17152 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11003 flower src_mac 02:5a:f8:0a:c5:a5 dst_mac 02:64:0c:5e:ad:03 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11004 flower src_mac 02:3f:8f:06:91:2e dst_mac 02:bd:d4:aa:f4:77 src_ip 58.151.249.89 dst_ip 119.70.231.66 ip_proto tcp src_port 39925 dst_port 75 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11005 flower src_mac 02:5d:86:89:2c:2a dst_mac 02:60:fe:22:53:f2 action trap && tc filter add dev swp33 ingress protocol ip pref 11006 flower src_mac 02:75:d5:0f:d3:79 dst_mac 02:95:80:9a:89:7f src_ip 29.165.53.80 dst_ip 94.218.107.194 ip_proto tcp src_port 3991 dst_port 23302 action trap && tc filter add dev swp33 ingress protocol ip pref 11007 flower src_mac 02:5c:bc:f2:5c:9d dst_mac 02:63:c9:55:37:5e src_ip 79.203.192.186 dst_ip 52.227.131.6 ip_proto udp src_port 43226 dst_port 35404 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11008 flower src_mac 02:1d:31:fd:d8:5b dst_mac 02:d4:39:25:d2:6a action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11009 flower src_mac 02:d5:b6:9e:e7:54 dst_mac 02:e8:e0:a9:a6:24 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11010 flower src_mac 02:60:b6:e1:d0:ac dst_mac 02:ab:59:3c:0a:4a vlan_id 2966 vlan_ethtype 0x0800 src_ip 105.51.226.244 dst_ip 110.24.120.83 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11011 flower src_mac 02:d7:83:d5:a3:90 dst_mac 02:2c:82:c0:74:18 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11012 flower src_mac 02:52:d0:9a:bf:12 dst_mac 02:a9:1b:83:94:1b action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11013 flower src_mac 02:66:f7:17:76:2b dst_mac 02:7e:0e:8b:ca:75 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11014 flower src_mac 02:27:7b:de:54:4e dst_mac 02:75:43:30:17:69 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11015 flower src_mac 02:75:af:fe:76:b9 dst_mac 02:8f:2d:2e:8f:a6 vlan_id 2964 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11016 flower src_mac 02:b8:60:e0:b8:ca dst_mac 02:43:1c:6d:cf:de vlan_id 1730 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11017 flower src_mac 02:c0:7e:8b:1b:f3 dst_mac 02:6e:81:55:10:27 vlan_id 547 vlan_ethtype 0x0800 src_ip 92.120.49.244 dst_ip 64.79.38.87 ip_proto tcp src_port 52050 dst_port 28656 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11018 flower src_mac 02:3f:7c:b6:f9:96 dst_mac 02:65:76:52:e0:fa vlan_id 3142 vlan_ethtype 0x0800 src_ip 105.209.131.97 dst_ip 93.52.253.5 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11019 flower src_mac 02:68:92:e3:21:27 dst_mac 02:a6:fb:1b:f9:b6 vlan_id 565 vlan_ethtype ip src_ip 62.141.213.166 dst_ip 93.65.32.59 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11020 flower src_mac 02:6b:41:f2:9c:a9 dst_mac 02:9b:0f:03:75:de vlan_id 2650 vlan_ethtype 0x0800 src_ip 83.254.188.52 dst_ip 87.49.66.24 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11021 flower src_mac 02:fe:17:06:00:8e dst_mac 02:44:91:40:d5:0d vlan_id 2734 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol ip pref 11022 flower src_mac 02:2c:47:ad:46:c7 dst_mac 02:fd:e3:03:d9:17 src_ip 17.50.26.178 dst_ip 61.219.28.218 ip_proto icmp code 186 type 16 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11023 flower src_mac 02:6d:49:12:da:5e dst_mac 02:1f:23:00:af:0d action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11024 flower src_mac 02:76:33:9a:52:f2 dst_mac 02:2d:e9:c8:03:1b vlan_id 1131 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11025 flower src_mac 02:1e:9a:9c:22:e7 dst_mac 02:04:38:5b:28:5c action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11026 flower src_mac 02:16:a8:b5:8d:20 dst_mac 02:7b:9f:e2:22:d8 vlan_id 2742 vlan_ethtype ip src_ip 40.16.224.45 dst_ip 63.179.124.107 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11027 flower src_mac 02:6a:d2:2e:78:8c dst_mac 02:8f:9a:25:85:ae src_ip 74.202.177.90 dst_ip 27.182.88.21 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11028 flower src_mac 02:ee:7e:e1:39:5c dst_mac 02:31:49:6b:03:9b vlan_id 3865 vlan_ethtype ip src_ip 46.20.15.82 dst_ip 79.81.231.77 ip_proto tcp src_port 43422 dst_port 32418 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11029 flower src_mac 02:59:18:b9:1f:c5 dst_mac 02:9e:d9:21:a1:bf vlan_id 3080 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11030 flower src_mac 02:e1:10:c2:52:39 dst_mac 02:8a:7e:a8:d0:50 vlan_id 3222 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11031 flower src_mac 02:80:c3:95:dd:af dst_mac 02:af:a0:a3:8b:75 vlan_id 2401 vlan_ethtype ipv4 src_ip 125.225.141.29 dst_ip 89.103.251.98 ip_proto tcp src_port 370 dst_port 42334 action drop && tc filter add dev swp33 ingress protocol ip pref 11032 flower src_mac 02:c4:7a:fc:d6:f6 dst_mac 02:cd:93:92:26:0a src_ip 61.141.79.18 dst_ip 120.104.226.42 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11033 flower src_mac 02:ad:b9:3d:ae:e9 dst_mac 02:08:75:93:4a:6a vlan_id 2737 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11034 flower src_mac 02:e4:5c:6d:1c:1c dst_mac 02:5c:3c:54:9f:e2 vlan_id 514 vlan_ethtype ip src_ip 88.112.119.178 dst_ip 12.224.120.96 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11035 flower src_mac 02:68:f4:44:1d:8d dst_mac 02:b2:09:4a:6c:27 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11036 flower src_mac 02:04:22:b6:96:91 dst_mac 02:c9:5a:1a:15:43 vlan_id 1930 vlan_ethtype ip src_ip 38.255.49.138 dst_ip 40.142.118.185 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11037 flower src_mac 02:01:4b:a9:ec:c4 dst_mac 02:09:56:f8:7c:8d action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11038 flower src_mac 02:2c:76:d7:62:31 dst_mac 02:de:c0:7d:43:6e vlan_id 1147 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11039 flower src_mac 02:19:b2:72:5b:a5 dst_mac 02:3b:8b:49:03:aa vlan_id 1401 vlan_ethtype ipv4 src_ip 88.113.240.191 dst_ip 86.217.12.180 ip_proto udp src_port 62713 dst_port 15904 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11040 flower src_mac 02:d7:39:bd:3b:77 dst_mac 02:4a:49:62:7b:95 vlan_id 804 vlan_ethtype ipv4 src_ip 75.255.87.185 dst_ip 100.211.153.159 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11041 flower src_mac 02:95:bd:5e:e4:34 dst_mac 02:a3:9f:28:b8:56 vlan_id 189 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11042 flower src_mac 02:9c:44:30:d5:52 dst_mac 02:fd:08:13:f4:b3 vlan_id 2060 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11043 flower src_mac 02:0c:3a:e5:4c:72 dst_mac 02:76:f4:56:3c:2c vlan_id 3958 vlan_ethtype 0x0800 src_ip 94.152.54.211 dst_ip 124.106.118.213 ip_proto tcp src_port 61738 dst_port 56004 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11044 flower src_mac 02:02:8f:b6:49:15 dst_mac 02:7b:be:01:5b:2d vlan_id 1973 vlan_ethtype ip src_ip 77.53.246.84 dst_ip 37.196.21.22 ip_proto tcp src_port 42476 dst_port 37922 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11045 flower src_mac 02:91:b5:c1:24:34 dst_mac 02:05:7f:16:fb:2a src_ip 43.44.59.96 dst_ip 115.81.191.46 ip_proto udp src_port 51848 dst_port 63230 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11046 flower src_mac 02:e8:79:59:18:50 dst_mac 02:71:10:df:4b:50 vlan_id 1743 vlan_ethtype ipv4 src_ip 109.181.222.135 dst_ip 64.134.162.37 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11047 flower src_mac 02:b6:59:df:fb:08 dst_mac 02:c8:99:ae:53:70 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11048 flower src_mac 02:cc:12:8e:e0:c5 dst_mac 02:39:b8:75:0e:55 vlan_id 1488 vlan_ethtype ipv4 src_ip 112.59.216.225 dst_ip 29.56.85.40 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11049 flower src_mac 02:16:ac:1b:c7:81 dst_mac 02:c4:5b:df:3e:14 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11050 flower src_mac 02:a0:23:30:ee:8b dst_mac 02:f6:54:1b:4f:2c vlan_id 3241 vlan_ethtype ip src_ip 83.110.123.202 dst_ip 55.30.162.245 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11051 flower src_mac 02:e0:93:0b:92:2f dst_mac 02:10:69:a0:c1:3b vlan_id 1150 vlan_ethtype ipv4 src_ip 15.166.0.30 dst_ip 68.104.105.140 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11052 flower src_mac 02:0a:8e:86:44:c1 dst_mac 02:c2:6a:5c:ba:c4 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11053 flower src_mac 02:62:0f:55:c3:97 dst_mac 02:84:bb:ae:13:85 vlan_id 1301 vlan_ethtype 0x0800 src_ip 98.246.177.235 dst_ip 113.203.62.125 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11054 flower src_mac 02:53:0c:e2:76:d9 dst_mac 02:46:40:5b:65:b5 vlan_id 2605 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11055 flower src_mac 02:e2:86:82:f1:94 dst_mac 02:8a:95:15:81:fe vlan_id 469 vlan_ethtype ipv4 src_ip 25.180.10.44 dst_ip 123.237.193.128 ip_proto tcp src_port 19656 dst_port 12709 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11056 flower src_mac 02:89:a6:bc:1d:ab dst_mac 02:f6:17:f0:5c:7e vlan_id 1889 vlan_ethtype ip src_ip 105.135.21.220 dst_ip 39.204.16.56 ip_proto udp src_port 12736 dst_port 32125 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11057 flower src_mac 02:81:1b:a6:9c:8a dst_mac 02:a3:37:93:1f:3c vlan_id 133 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11058 flower src_mac 02:6e:a7:e4:d7:b2 dst_mac 02:15:df:af:68:c5 vlan_id 2085 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11059 flower src_mac 02:78:ce:5a:ca:fe dst_mac 02:ba:6e:f0:3a:95 src_ip 86.58.94.34 dst_ip 27.146.176.79 ip_proto icmp code 220 type 15 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11060 flower src_mac 02:7e:98:5d:48:83 dst_mac 02:fd:e4:d5:b1:bb action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11061 flower src_mac 02:4e:ca:ab:32:67 dst_mac 02:a0:73:a4:ac:47 src_ip 120.28.128.86 dst_ip 28.72.254.107 ip_proto tcp src_port 53183 dst_port 13252 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11062 flower src_mac 02:96:b5:4c:76:f2 dst_mac 02:a9:22:3c:52:29 src_ip 44.41.121.142 dst_ip 110.66.149.14 ip_proto udp src_port 41774 dst_port 32123 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11063 flower src_mac 02:75:c6:63:a4:b8 dst_mac 02:2e:45:ec:97:61 src_ip 28.127.208.59 dst_ip 14.243.251.218 ip_proto tcp src_port 48637 dst_port 16474 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11064 flower src_mac 02:eb:6d:61:c9:27 dst_mac 02:cd:34:60:d2:4c vlan_id 3542 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11065 flower src_mac 02:0d:49:15:81:b3 dst_mac 02:9b:f0:fe:08:11 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11066 flower src_mac 02:0e:ab:53:87:f9 dst_mac 02:f9:5e:8d:30:66 vlan_id 3374 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11067 flower src_mac 02:e7:6d:4d:63:61 dst_mac 02:6b:e0:27:8a:ec vlan_id 2707 vlan_ethtype ipv4 src_ip 69.157.187.90 dst_ip 46.29.129.171 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11068 flower src_mac 02:c9:84:0c:0e:96 dst_mac 02:65:ca:a1:89:de vlan_id 2201 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 11069 flower src_mac 02:d6:fe:85:cf:6f dst_mac 02:92:e3:43:ed:de action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11070 flower src_mac 02:ea:7c:66:ae:4e dst_mac 02:9c:67:21:a8:17 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11071 flower src_mac 02:ca:67:41:63:2c dst_mac 02:da:f0:4a:d2:e5 src_ip 95.119.175.133 dst_ip 30.102.223.83 ip_proto icmp code 79 type 4 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11072 flower src_mac 02:56:9f:29:c0:93 dst_mac 02:64:78:fd:fe:b4 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11073 flower src_mac 02:6b:c7:00:6e:6d dst_mac 02:78:d8:06:ac:bb vlan_id 1145 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol ip pref 11074 flower src_mac 02:5e:70:19:09:34 dst_mac 02:6a:4e:fb:a8:0b src_ip 85.239.184.73 dst_ip 68.251.68.111 ip_proto tcp src_port 3497 dst_port 42658 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11075 flower src_mac 02:d4:25:ef:81:70 dst_mac 02:f0:81:0b:55:c2 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11076 flower src_mac 02:b9:ed:ad:cd:5c dst_mac 02:af:df:62:90:d4 src_ip 27.221.48.164 dst_ip 16.205.131.91 ip_proto udp src_port 48694 dst_port 41591 action pass && tc filter add dev swp33 ingress protocol ip pref 11077 flower src_mac 02:95:16:c4:30:03 dst_mac 02:17:de:5f:ec:8c src_ip 90.218.114.242 dst_ip 69.246.155.74 ip_proto tcp src_port 37875 dst_port 6417 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11078 flower src_mac 02:51:fa:64:84:d8 dst_mac 02:8d:5d:63:a3:c3 src_ip 100.150.202.65 dst_ip 93.10.246.244 ip_proto udp src_port 61510 dst_port 32356 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11079 flower src_mac 02:ac:5e:cd:d0:90 dst_mac 02:22:d1:d4:65:bd src_ip 70.68.83.182 dst_ip 55.53.64.31 ip_proto tcp src_port 61591 dst_port 25533 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11080 flower src_mac 02:f5:09:df:da:69 dst_mac 02:d5:d5:ea:99:e4 vlan_id 2288 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11081 flower src_mac 02:aa:ec:1a:97:2e dst_mac 02:7b:3d:e5:ef:54 vlan_id 3196 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11082 flower src_mac 02:61:52:87:92:3e dst_mac 02:29:68:4f:89:1b vlan_id 1860 vlan_ethtype 0x0800 src_ip 108.22.104.142 dst_ip 31.144.217.90 ip_proto tcp src_port 64020 dst_port 46527 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11083 flower src_mac 02:b3:63:9c:10:d4 dst_mac 02:7f:da:8d:9a:23 src_ip 23.254.132.188 dst_ip 97.179.38.211 ip_proto icmp code 212 type 16 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11084 flower src_mac 02:34:62:1a:26:91 dst_mac 02:07:ec:7e:df:ba vlan_id 3194 vlan_ethtype ipv4 src_ip 77.186.56.140 dst_ip 110.151.44.46 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11085 flower src_mac 02:f6:b5:67:f5:61 dst_mac 02:10:82:5d:db:81 src_ip 125.36.86.158 dst_ip 103.110.60.130 ip_proto udp src_port 59863 dst_port 48028 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11086 flower src_mac 02:b2:1c:7c:21:56 dst_mac 02:64:1f:b2:37:ff vlan_id 3307 vlan_ethtype ip src_ip 90.91.204.233 dst_ip 116.8.219.183 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11087 flower src_mac 02:08:1a:5b:e5:50 dst_mac 02:3a:4e:60:d6:35 vlan_id 2521 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11088 flower src_mac 02:4c:bd:3d:4b:29 dst_mac 02:ca:fe:f6:cd:e2 vlan_id 2633 vlan_ethtype ip src_ip 39.253.226.99 dst_ip 76.77.228.1 ip_proto udp src_port 21386 dst_port 13960 action trap && tc filter add dev swp33 ingress protocol ip pref 11089 flower src_mac 02:f7:e9:ab:0d:93 dst_mac 02:09:24:d5:6c:43 src_ip 125.152.42.91 dst_ip 86.87.105.92 ip_proto udp src_port 48879 dst_port 59222 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11090 flower src_mac 02:9f:65:53:66:70 dst_mac 02:19:96:37:ab:3a vlan_id 3809 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol ip pref 11091 flower src_mac 02:a6:bd:f1:c4:5a dst_mac 02:09:b2:84:94:82 src_ip 125.59.50.99 dst_ip 23.217.201.34 ip_proto icmp code 78 type 0 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11092 flower src_mac 02:95:1b:da:f0:ee dst_mac 02:67:30:3e:ed:73 vlan_id 167 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11093 flower src_mac 02:a7:95:53:e5:35 dst_mac 02:bb:8f:f3:5e:69 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11094 flower src_mac 02:9a:86:6f:95:ab dst_mac 02:68:bf:90:1d:16 vlan_id 4074 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11095 flower src_mac 02:df:ba:a1:de:a8 dst_mac 02:fd:2e:3d:f5:0b src_ip 40.17.234.70 dst_ip 62.59.96.161 ip_proto tcp src_port 17759 dst_port 8055 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11096 flower src_mac 02:98:b2:6d:e5:c1 dst_mac 02:fa:f0:02:1a:08 vlan_id 3795 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11097 flower src_mac 02:ea:bc:bf:ed:94 dst_mac 02:4b:80:37:dd:c7 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11098 flower src_mac 02:ae:4f:28:12:d5 dst_mac 02:a0:df:9f:1d:2d action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11099 flower src_mac 02:b5:80:4a:a4:7a dst_mac 02:ac:37:67:cc:9a vlan_id 427 vlan_ethtype 0x0800 src_ip 109.217.23.138 dst_ip 56.27.132.41 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11100 flower src_mac 02:56:a2:19:14:70 dst_mac 02:9f:47:26:73:05 action trap && tc filter add dev swp33 ingress protocol ip pref 11101 flower src_mac 02:7b:e1:80:d1:56 dst_mac 02:03:bd:e1:b6:a3 src_ip 78.209.153.139 dst_ip 120.56.117.117 ip_proto icmp code 130 type 17 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11102 flower src_mac 02:6d:0a:aa:31:47 dst_mac 02:53:86:ba:e4:e1 vlan_id 4086 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11103 flower src_mac 02:dd:99:c7:32:db dst_mac 02:f1:e4:9a:bd:d3 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11104 flower src_mac 02:9f:92:c9:64:da dst_mac 02:fd:55:b6:af:5b vlan_id 1688 vlan_ethtype ip src_ip 43.234.73.21 dst_ip 41.80.179.106 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 11105 flower src_mac 02:5a:c0:d6:b3:0b dst_mac 02:38:8f:3e:cf:14 action pass && tc filter add dev swp33 ingress protocol ip pref 11106 flower src_mac 02:93:0c:ef:09:d5 dst_mac 02:9c:b6:15:97:cb src_ip 74.180.11.34 dst_ip 83.131.48.11 ip_proto udp src_port 12674 dst_port 12803 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11107 flower src_mac 02:19:42:13:55:1a dst_mac 02:fe:3a:f8:02:02 vlan_id 1408 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11108 flower src_mac 02:d8:44:18:7b:6d dst_mac 02:ca:b5:33:e2:4f vlan_id 110 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11109 flower src_mac 02:b2:ea:00:be:1a dst_mac 02:77:df:c4:1e:70 vlan_id 1460 vlan_ethtype ip src_ip 59.195.27.48 dst_ip 18.253.177.159 ip_proto tcp src_port 11323 dst_port 6297 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11110 flower src_mac 02:29:28:35:82:82 dst_mac 02:70:5b:10:96:fe action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11111 flower src_mac 02:cc:6e:60:59:8c dst_mac 02:7b:d4:af:c2:f9 src_ip 57.236.157.191 dst_ip 41.93.170.197 ip_proto icmp code 130 type 16 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11112 flower src_mac 02:d8:b2:3b:54:75 dst_mac 02:e3:46:b2:49:e2 vlan_id 2140 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol ip pref 11113 flower src_mac 02:ef:85:be:92:1b dst_mac 02:c2:3f:7b:55:30 src_ip 115.210.81.172 dst_ip 77.31.21.166 ip_proto tcp src_port 24031 dst_port 4395 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11114 flower src_mac 02:25:c5:a8:41:e1 dst_mac 02:93:76:d8:9a:88 vlan_id 2952 vlan_ethtype ip src_ip 61.232.151.204 dst_ip 51.39.181.35 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11115 flower src_mac 02:57:95:1e:3e:71 dst_mac 02:5b:43:e8:0d:1c src_ip 22.236.103.46 dst_ip 114.250.148.123 ip_proto tcp src_port 46916 dst_port 34079 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11116 flower src_mac 02:f4:dc:a4:65:7b dst_mac 02:1b:55:1e:5f:60 vlan_id 3623 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11117 flower src_mac 02:c1:80:9d:23:af dst_mac 02:3b:0d:9d:c4:28 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11118 flower src_mac 02:ae:a3:27:2f:99 dst_mac 02:09:2e:9f:fc:32 vlan_id 2333 vlan_ethtype 0x0800 src_ip 15.227.142.193 dst_ip 86.224.62.140 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11119 flower src_mac 02:6c:58:05:a9:65 dst_mac 02:34:a5:59:f8:7f action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11120 flower src_mac 02:60:a3:59:9c:a3 dst_mac 02:33:fb:94:00:eb vlan_id 2688 vlan_ethtype ipv4 src_ip 126.195.140.151 dst_ip 17.25.239.96 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11121 flower src_mac 02:b0:27:7c:09:53 dst_mac 02:18:ee:2b:15:31 src_ip 47.239.43.238 dst_ip 33.14.20.199 ip_proto tcp src_port 156 dst_port 59585 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11122 flower src_mac 02:c3:92:aa:4c:2b dst_mac 02:72:ea:21:a7:ed vlan_id 1765 vlan_ethtype ipv4 src_ip 16.90.50.30 dst_ip 49.135.92.221 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11123 flower src_mac 02:35:84:7a:45:f2 dst_mac 02:19:fb:f3:ed:dd action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11124 flower src_mac 02:04:e8:b9:7f:7a dst_mac 02:f9:56:2b:52:e4 vlan_id 2537 vlan_ethtype ipv4 src_ip 59.38.140.69 dst_ip 108.125.15.216 ip_proto tcp src_port 37766 dst_port 41019 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11125 flower src_mac 02:53:bf:3e:bd:05 dst_mac 02:20:cd:17:64:ab vlan_id 2027 vlan_ethtype 0x0800 src_ip 24.24.96.250 dst_ip 70.210.47.204 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11126 flower src_mac 02:7f:b9:26:e2:ac dst_mac 02:a5:6a:8c:4d:fc vlan_id 1525 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11127 flower src_mac 02:20:25:1e:5e:d5 dst_mac 02:97:68:4e:0c:11 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11128 flower src_mac 02:79:5b:6f:e3:fc dst_mac 02:e0:7c:1c:d5:4d vlan_id 1408 vlan_ethtype ipv4 src_ip 116.27.85.188 dst_ip 94.230.154.184 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11129 flower src_mac 02:5f:de:c0:fa:94 dst_mac 02:07:28:ff:01:12 vlan_id 1343 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11130 flower src_mac 02:64:82:1a:fe:e3 dst_mac 02:b3:5d:4f:13:14 src_ip 65.48.163.115 dst_ip 33.105.139.170 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11131 flower src_mac 02:d2:8d:87:33:4c dst_mac 02:7b:ec:bf:76:05 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11132 flower src_mac 02:b2:ff:07:f0:b4 dst_mac 02:81:25:dc:48:37 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11133 flower src_mac 02:18:24:ea:93:ff dst_mac 02:f1:9c:9c:b7:bd action trap && tc filter add dev swp33 ingress protocol ip pref 11134 flower src_mac 02:e5:4f:9d:90:10 dst_mac 02:46:f6:64:fe:d6 src_ip 102.147.11.156 dst_ip 97.82.33.3 ip_proto udp src_port 2882 dst_port 22028 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11135 flower src_mac 02:be:d0:e8:8b:b4 dst_mac 02:f3:7d:3c:b9:ba src_ip 19.228.89.179 dst_ip 105.54.6.21 ip_proto tcp src_port 54425 dst_port 43710 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11136 flower src_mac 02:20:90:7f:c7:9d dst_mac 02:07:17:88:68:85 vlan_id 3214 vlan_ethtype ipv4 src_ip 126.79.125.124 dst_ip 70.237.32.223 ip_proto tcp src_port 44787 dst_port 43838 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11137 flower src_mac 02:ec:1d:0a:16:c7 dst_mac 02:47:12:be:e8:35 vlan_id 3657 vlan_ethtype 0x0800 src_ip 14.204.239.123 dst_ip 103.230.125.74 ip_proto tcp src_port 14061 dst_port 27711 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11138 flower src_mac 02:f4:10:b4:a6:ca dst_mac 02:48:fe:71:54:5d src_ip 126.90.224.84 dst_ip 99.9.154.167 ip_proto udp src_port 22127 dst_port 44675 action trap && tc filter add dev swp33 ingress protocol ip pref 11139 flower src_mac 02:63:61:38:9a:43 dst_mac 02:8d:af:65:1d:59 src_ip 89.21.18.127 dst_ip 33.84.168.143 ip_proto icmp code 94 type 5 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11140 flower src_mac 02:2a:bf:0c:be:fd dst_mac 02:30:5a:73:30:c9 vlan_id 4070 vlan_ethtype 0x0800 src_ip 114.183.251.90 dst_ip 39.195.231.185 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11141 flower src_mac 02:fd:71:c0:d4:d2 dst_mac 02:95:0c:6e:f4:8a vlan_id 2413 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11142 flower src_mac 02:6c:c3:a7:ef:c4 dst_mac 02:0e:0d:bc:c1:40 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11143 flower src_mac 02:47:6a:a5:a7:18 dst_mac 02:5a:4d:c2:8d:e9 vlan_id 846 vlan_ethtype 0x0800 src_ip 47.93.212.72 dst_ip 20.138.25.136 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11144 flower src_mac 02:e9:4b:3d:be:7f dst_mac 02:76:7e:80:98:b1 src_ip 38.59.49.124 dst_ip 11.89.149.209 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11145 flower src_mac 02:ea:80:d1:ae:4f dst_mac 02:fc:fb:17:8c:72 vlan_id 2478 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11146 flower src_mac 02:86:78:5c:b3:bc dst_mac 02:96:d1:fa:7e:4b vlan_id 2573 vlan_ethtype 0x0800 src_ip 21.253.209.62 dst_ip 115.211.26.148 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11147 flower src_mac 02:69:34:88:46:72 dst_mac 02:8f:8c:30:0b:97 vlan_id 39 vlan_ethtype ip src_ip 44.15.148.103 dst_ip 37.30.117.171 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11148 flower src_mac 02:76:3f:70:d0:1a dst_mac 02:11:38:a6:78:eb action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11149 flower src_mac 02:73:b5:b8:66:8d dst_mac 02:1c:a6:0c:fd:40 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11150 flower src_mac 02:87:eb:ae:e7:55 dst_mac 02:7e:59:22:a0:89 vlan_id 4075 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11151 flower src_mac 02:ba:16:5e:e3:12 dst_mac 02:53:96:7f:0c:8d action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11152 flower src_mac 02:d5:80:29:ca:9e dst_mac 02:a0:8b:66:10:a6 src_ip 86.55.202.240 dst_ip 23.178.118.71 ip_proto icmp code 204 type 8 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11153 flower src_mac 02:e3:86:60:45:bf dst_mac 02:c9:fe:57:b3:ed vlan_id 2747 vlan_ethtype ip src_ip 41.9.221.9 dst_ip 94.56.7.48 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11154 flower src_mac 02:76:e2:5d:41:c7 dst_mac 02:31:2f:79:df:1e src_ip 100.223.79.79 dst_ip 120.246.197.171 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11155 flower src_mac 02:02:44:70:01:66 dst_mac 02:b0:da:bd:b2:5a vlan_id 28 vlan_ethtype ipv4 src_ip 102.60.67.223 dst_ip 35.53.131.129 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11156 flower src_mac 02:14:d4:0d:a8:7b dst_mac 02:30:2c:c4:0d:10 src_ip 31.58.47.141 dst_ip 63.248.212.100 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11157 flower src_mac 02:65:62:86:0b:2f dst_mac 02:3f:33:53:f7:53 src_ip 93.199.86.238 dst_ip 62.178.126.92 ip_proto icmp code 67 type 16 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11158 flower src_mac 02:6c:01:37:f6:68 dst_mac 02:1b:70:37:0f:1c src_ip 34.244.97.217 dst_ip 65.163.230.11 ip_proto udp src_port 45350 dst_port 16141 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11159 flower src_mac 02:01:b6:54:2a:87 dst_mac 02:1b:ff:93:81:43 vlan_id 3822 vlan_ethtype ipv4 src_ip 106.73.195.155 dst_ip 54.131.150.113 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11160 flower src_mac 02:f2:6f:9e:52:63 dst_mac 02:fb:3a:d9:59:3f src_ip 92.31.125.212 dst_ip 37.4.146.149 ip_proto udp src_port 7012 dst_port 6394 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11161 flower src_mac 02:ad:16:a6:d8:be dst_mac 02:61:85:a7:b9:c0 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11162 flower src_mac 02:49:1f:9e:b4:51 dst_mac 02:ab:f2:53:bb:a4 src_ip 106.240.125.42 dst_ip 48.24.187.133 ip_proto icmp code 166 type 11 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11163 flower src_mac 02:1c:a5:10:c3:6c dst_mac 02:eb:0b:d2:f0:18 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11164 flower src_mac 02:c0:84:c1:d8:cd dst_mac 02:66:c4:e2:51:b2 vlan_id 4020 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11165 flower src_mac 02:96:0c:bd:86:50 dst_mac 02:35:57:f9:63:fe vlan_id 4049 vlan_ethtype ipv4 src_ip 54.140.180.136 dst_ip 30.60.28.142 ip_proto udp src_port 11560 dst_port 15861 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11166 flower src_mac 02:b6:b5:f3:10:62 dst_mac 02:f8:d7:5c:18:d9 vlan_id 2471 vlan_ethtype ip src_ip 13.170.224.112 dst_ip 29.185.82.103 ip_proto tcp src_port 58497 dst_port 21133 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11167 flower src_mac 02:ad:16:cb:d2:ce dst_mac 02:82:ca:5c:da:33 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11168 flower src_mac 02:e0:89:c6:5f:6b dst_mac 02:b7:d1:79:9c:f0 vlan_id 1996 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11169 flower src_mac 02:2f:f2:8a:19:28 dst_mac 02:d2:ed:6f:f1:c9 vlan_id 3819 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11170 flower src_mac 02:6c:f6:1f:d0:04 dst_mac 02:20:e7:39:22:69 vlan_id 3414 vlan_ethtype 0x0800 src_ip 118.122.18.165 dst_ip 87.195.29.215 ip_proto udp src_port 10635 dst_port 38110 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11171 flower src_mac 02:14:9b:4f:fa:cc dst_mac 02:21:c8:a6:0a:eb action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11172 flower src_mac 02:42:d0:58:81:b0 dst_mac 02:37:57:70:3b:50 vlan_id 1556 vlan_ethtype ipv4 src_ip 86.78.203.74 dst_ip 28.130.153.5 ip_proto tcp src_port 14606 dst_port 5094 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11173 flower src_mac 02:9e:4a:bd:bf:d0 dst_mac 02:8c:52:82:d4:cf vlan_id 798 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11174 flower src_mac 02:11:16:6e:e2:ac dst_mac 02:79:fb:89:f1:6c vlan_id 403 vlan_ethtype 0x0800 src_ip 96.30.49.241 dst_ip 104.56.123.104 ip_proto tcp src_port 44937 dst_port 25935 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11175 flower src_mac 02:eb:cd:40:e1:5a dst_mac 02:24:dc:82:95:58 action pass && tc filter add dev swp33 ingress protocol ip pref 11176 flower src_mac 02:fa:6a:c3:c1:34 dst_mac 02:74:35:bc:c0:56 src_ip 117.239.15.50 dst_ip 70.209.0.207 ip_proto tcp src_port 56431 dst_port 34425 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11177 flower src_mac 02:10:a1:0e:0e:c4 dst_mac 02:0a:8c:31:97:09 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11178 flower src_mac 02:1d:3b:a4:76:c6 dst_mac 02:f4:2c:63:39:30 vlan_id 287 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol ip pref 11179 flower src_mac 02:f1:c9:02:da:85 dst_mac 02:79:43:50:aa:7d src_ip 105.23.16.39 dst_ip 47.183.127.90 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11180 flower src_mac 02:67:f1:0e:ad:04 dst_mac 02:d2:77:95:fa:0f action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11181 flower src_mac 02:fe:3d:2d:28:d3 dst_mac 02:8d:69:31:df:d8 vlan_id 2993 vlan_ethtype 0x0800 src_ip 93.196.173.176 dst_ip 54.133.101.103 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11182 flower src_mac 02:27:98:89:78:41 dst_mac 02:4d:d6:77:b4:7a vlan_id 2040 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11183 flower src_mac 02:d3:40:f8:04:f9 dst_mac 02:88:21:5c:52:a0 vlan_id 3339 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11184 flower src_mac 02:c0:2d:b3:9a:f5 dst_mac 02:0d:bf:e0:73:88 vlan_id 3625 vlan_ethtype ipv4 src_ip 35.137.9.9 dst_ip 62.23.43.105 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11185 flower src_mac 02:7d:8c:85:87:e3 dst_mac 02:e4:c1:6a:6a:10 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11186 flower src_mac 02:ea:89:2e:19:e8 dst_mac 02:d2:7c:f8:fa:78 vlan_id 2138 vlan_ethtype ip src_ip 66.242.150.209 dst_ip 96.123.228.111 ip_proto tcp src_port 57546 dst_port 13552 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11187 flower src_mac 02:9d:e6:2a:60:0a dst_mac 02:4a:08:01:83:24 src_ip 97.117.93.185 dst_ip 107.54.254.97 ip_proto tcp src_port 18330 dst_port 21870 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11188 flower src_mac 02:d9:db:f3:64:aa dst_mac 02:69:2b:81:da:bb src_ip 59.194.73.90 dst_ip 71.84.204.208 ip_proto udp src_port 62247 dst_port 25049 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11189 flower src_mac 02:dd:44:ca:ea:27 dst_mac 02:da:26:14:de:01 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11190 flower src_mac 02:c8:59:00:80:31 dst_mac 02:b7:b3:47:4f:e4 vlan_id 3227 vlan_ethtype ipv4 src_ip 54.26.45.230 dst_ip 19.203.190.242 ip_proto udp src_port 27086 dst_port 24372 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11191 flower src_mac 02:71:d1:7c:f1:77 dst_mac 02:ee:3a:75:46:99 src_ip 74.129.199.135 dst_ip 42.183.184.112 ip_proto tcp src_port 10642 dst_port 54047 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11192 flower src_mac 02:8f:8e:ae:04:66 dst_mac 02:c1:93:49:47:6d action trap && tc filter add dev swp33 ingress protocol ip pref 11193 flower src_mac 02:cf:0a:c7:c7:7e dst_mac 02:d0:7c:60:b1:65 src_ip 121.239.10.45 dst_ip 113.108.152.71 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11194 flower src_mac 02:47:17:bb:dc:a4 dst_mac 02:8e:08:ce:a9:de vlan_id 215 vlan_ethtype ipv4 src_ip 78.95.117.233 dst_ip 87.232.82.133 ip_proto udp src_port 58363 dst_port 20811 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11195 flower src_mac 02:a0:24:ad:5a:76 dst_mac 02:4b:34:bb:48:0a vlan_id 422 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11196 flower src_mac 02:89:41:12:5f:2a dst_mac 02:64:bc:21:5c:17 vlan_id 614 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11197 flower src_mac 02:95:ff:3f:98:93 dst_mac 02:74:cc:07:08:29 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11198 flower src_mac 02:bd:50:81:55:64 dst_mac 02:43:38:d1:1b:0e vlan_id 2752 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11199 flower src_mac 02:9b:67:d1:e0:c6 dst_mac 02:92:cd:77:6a:36 vlan_id 2960 vlan_ethtype ipv4 src_ip 90.123.244.107 dst_ip 90.18.147.28 action trap INFO asyncssh:logging.py:92 [conn=24, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=8] Command: tc filter add dev swp33 ingress protocol 802.1q pref 10800 flower src_mac 02:16:06:2e:2d:b1 dst_mac 02:2b:f9:03:cb:30 vlan_id 1812 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10801 flower src_mac 02:a2:c3:ee:ba:b2 dst_mac 02:b7:d0:69:5f:c2 src_ip 121.118.161.32 dst_ip 99.204.228.222 ip_proto udp src_port 110 dst_port 24415 action pass && tc filter add dev swp33 ingress protocol ip pref 10802 flower src_mac 02:1a:c1:d1:b8:c1 dst_mac 02:87:cf:59:13:94 src_ip 114.35.190.194 dst_ip 47.43.103.121 ip_proto tcp src_port 60349 dst_port 53482 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10803 flower src_mac 02:b4:4a:b4:5d:78 dst_mac 02:c6:cd:9f:b2:c4 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10804 flower src_mac 02:f0:b1:6b:a7:56 dst_mac 02:0a:27:b4:59:64 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10805 flower src_mac 02:88:00:75:40:ca dst_mac 02:f0:88:fa:4b:b9 vlan_id 2218 vlan_ethtype ip src_ip 88.114.125.99 dst_ip 24.245.76.3 ip_proto tcp src_port 61040 dst_port 39747 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10806 flower src_mac 02:6d:87:6c:4c:bb dst_mac 02:ea:9b:37:ab:c3 vlan_id 3002 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10807 flower src_mac 02:2f:47:13:0c:64 dst_mac 02:f0:f0:f8:27:35 vlan_id 3232 vlan_ethtype ip src_ip 33.170.37.18 dst_ip 123.142.169.167 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10808 flower src_mac 02:8f:3c:70:6e:64 dst_mac 02:96:c7:13:80:33 vlan_id 3698 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10809 flower src_mac 02:41:3f:39:1c:29 dst_mac 02:e2:42:b4:f4:c8 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10810 flower src_mac 02:c9:27:58:7c:2e dst_mac 02:ad:b4:e3:df:5c src_ip 17.200.50.54 dst_ip 37.236.116.149 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10811 flower src_mac 02:ee:b1:51:99:9d dst_mac 02:50:93:72:49:0a action drop && tc filter add dev swp33 ingress protocol ip pref 10812 flower src_mac 02:50:81:4e:98:37 dst_mac 02:da:f7:28:31:b0 src_ip 38.130.217.222 dst_ip 31.58.238.23 action drop && tc filter add dev swp33 ingress protocol ip pref 10813 flower src_mac 02:17:a1:e7:7a:c6 dst_mac 02:a9:61:d7:08:51 src_ip 45.46.242.80 dst_ip 51.189.125.202 ip_proto icmp code 185 type 13 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10814 flower src_mac 02:54:89:54:0b:41 dst_mac 02:8a:27:17:6e:ac vlan_id 2650 vlan_ethtype ipv4 src_ip 44.177.142.177 dst_ip 80.204.204.95 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10815 flower src_mac 02:0b:ea:f7:0d:80 dst_mac 02:df:54:4c:55:5b src_ip 110.241.10.249 dst_ip 114.96.209.31 ip_proto icmp code 17 type 14 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10816 flower src_mac 02:08:86:3b:5f:53 dst_mac 02:82:3d:cd:b4:c8 vlan_id 465 vlan_ethtype ipv4 src_ip 85.198.27.189 dst_ip 76.60.174.170 ip_proto tcp src_port 44542 dst_port 12154 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10817 flower src_mac 02:9c:ac:9a:92:ff dst_mac 02:71:32:b1:61:c3 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10818 flower src_mac 02:81:7f:d3:bc:3e dst_mac 02:9f:c2:92:95:e8 vlan_id 1845 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10819 flower src_mac 02:23:e7:08:ec:70 dst_mac 02:69:2e:e9:e7:fa src_ip 66.131.56.245 dst_ip 33.177.129.201 ip_proto icmp code 39 type 0 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10820 flower src_mac 02:7b:02:45:20:81 dst_mac 02:63:5e:81:3d:20 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10821 flower src_mac 02:da:f1:78:d6:84 dst_mac 02:87:56:02:80:2e action trap && tc filter add dev swp33 ingress protocol ip pref 10822 flower src_mac 02:3a:65:b2:ac:1a dst_mac 02:f0:16:37:84:3f src_ip 101.193.30.167 dst_ip 119.38.73.78 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10823 flower src_mac 02:77:43:60:0f:29 dst_mac 02:81:6a:06:91:d1 vlan_id 903 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10824 flower src_mac 02:45:7b:6d:2d:88 dst_mac 02:99:3b:23:d3:69 src_ip 64.19.29.116 dst_ip 95.102.187.130 ip_proto tcp src_port 25720 dst_port 48954 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10825 flower src_mac 02:2d:7d:7a:c8:1c dst_mac 02:81:bc:c6:b9:4e vlan_id 506 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10826 flower src_mac 02:63:67:da:6d:0a dst_mac 02:39:2c:86:f2:43 vlan_id 1368 vlan_ethtype ipv4 src_ip 124.5.14.162 dst_ip 83.112.245.47 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10827 flower src_mac 02:bf:37:3d:de:d1 dst_mac 02:ae:3a:1b:54:1a vlan_id 1690 vlan_ethtype ipv4 src_ip 33.62.235.3 dst_ip 117.60.241.147 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10828 flower src_mac 02:70:14:07:ce:98 dst_mac 02:98:d0:a8:a9:ee vlan_id 783 vlan_ethtype 0x0800 src_ip 123.235.146.66 dst_ip 59.231.25.103 ip_proto udp src_port 30810 dst_port 55526 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10829 flower src_mac 02:34:b0:21:1f:0e dst_mac 02:f3:b6:17:12:95 vlan_id 2754 vlan_ethtype 0x0800 src_ip 50.251.34.116 dst_ip 69.175.231.125 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10830 flower src_mac 02:e5:32:56:2a:9d dst_mac 02:a2:11:a1:3c:21 vlan_id 2526 vlan_ethtype ipv4 src_ip 36.127.131.172 dst_ip 115.100.98.243 ip_proto tcp src_port 5442 dst_port 19264 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10831 flower src_mac 02:09:27:72:89:04 dst_mac 02:84:14:4a:da:fe vlan_id 1484 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10832 flower src_mac 02:06:81:2c:d3:c7 dst_mac 02:bd:c0:41:49:10 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10833 flower src_mac 02:0f:2c:06:0a:19 dst_mac 02:b7:bd:f6:48:e4 src_ip 73.126.72.40 dst_ip 120.10.184.185 ip_proto tcp src_port 59432 dst_port 63863 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10834 flower src_mac 02:11:c7:51:62:81 dst_mac 02:74:66:e4:57:4b vlan_id 2453 vlan_ethtype ipv4 src_ip 29.105.0.8 dst_ip 118.166.164.156 ip_proto tcp src_port 59871 dst_port 37736 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10835 flower src_mac 02:e9:ec:12:39:64 dst_mac 02:f5:67:48:2e:47 src_ip 80.110.222.115 dst_ip 50.198.25.27 ip_proto icmp code 160 type 12 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10836 flower src_mac 02:f6:4c:8a:fa:6e dst_mac 02:51:1c:0c:59:b4 vlan_id 311 vlan_ethtype 0x0800 src_ip 35.36.116.60 dst_ip 27.112.166.65 ip_proto tcp src_port 33144 dst_port 53617 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10837 flower src_mac 02:87:c0:54:1f:51 dst_mac 02:ff:d1:e1:35:ba action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10838 flower src_mac 02:de:93:ad:d4:79 dst_mac 02:db:0a:b4:58:c5 vlan_id 3886 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10839 flower src_mac 02:a2:b3:2e:45:c8 dst_mac 02:4e:3e:31:91:31 src_ip 118.112.158.79 dst_ip 83.55.230.157 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10840 flower src_mac 02:85:78:8e:d5:20 dst_mac 02:4b:01:7a:32:3e vlan_id 2988 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol ip pref 10841 flower src_mac 02:01:2c:50:e4:83 dst_mac 02:0f:47:e6:35:a5 src_ip 91.26.6.94 dst_ip 62.202.251.128 ip_proto tcp src_port 42139 dst_port 20399 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10842 flower src_mac 02:46:d1:7d:d3:34 dst_mac 02:2d:d3:a1:82:e6 vlan_id 3374 vlan_ethtype 0x0800 src_ip 61.23.202.72 dst_ip 95.176.151.10 ip_proto tcp src_port 33410 dst_port 23005 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10843 flower src_mac 02:aa:ee:bb:14:25 dst_mac 02:73:d9:a3:00:9d src_ip 68.206.18.147 dst_ip 63.215.231.13 ip_proto icmp code 120 type 12 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10844 flower src_mac 02:f9:f6:32:33:1a dst_mac 02:3c:9d:8a:16:64 vlan_id 981 vlan_ethtype ip src_ip 75.72.9.38 dst_ip 109.72.93.42 ip_proto udp src_port 31313 dst_port 41579 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10845 flower src_mac 02:a7:79:dc:0e:5d dst_mac 02:33:12:e7:5d:f5 vlan_id 1926 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10846 flower src_mac 02:34:99:41:00:47 dst_mac 02:ba:d1:24:8f:25 src_ip 86.65.255.72 dst_ip 103.103.214.91 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10847 flower src_mac 02:01:35:bf:80:ec dst_mac 02:5b:df:8e:26:d0 action trap && tc filter add dev swp33 ingress protocol ip pref 10848 flower src_mac 02:ea:d0:a7:bd:30 dst_mac 02:e7:21:cb:7a:c3 src_ip 100.127.67.100 dst_ip 93.147.39.114 ip_proto icmp code 103 type 8 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10849 flower src_mac 02:63:17:72:36:f2 dst_mac 02:2c:81:ac:46:d9 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10850 flower src_mac 02:3f:52:e1:65:ea dst_mac 02:5a:e9:69:d9:dd vlan_id 2155 vlan_ethtype ipv4 src_ip 26.191.84.219 dst_ip 106.85.177.81 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10851 flower src_mac 02:5c:15:33:37:3d dst_mac 02:48:de:98:f9:43 vlan_id 2564 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10852 flower src_mac 02:a7:72:e9:e0:f0 dst_mac 02:fe:bf:ae:22:d3 vlan_id 472 vlan_ethtype ipv4 src_ip 116.203.142.107 dst_ip 112.120.49.191 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10853 flower src_mac 02:f3:ec:db:52:4c dst_mac 02:45:8c:07:5c:41 vlan_id 82 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10854 flower src_mac 02:60:d6:4b:2f:ee dst_mac 02:77:07:11:b4:77 vlan_id 1873 vlan_ethtype ipv4 src_ip 16.214.100.15 dst_ip 68.179.107.149 ip_proto tcp src_port 49493 dst_port 46296 action pass && tc filter add dev swp33 ingress protocol ip pref 10855 flower src_mac 02:f8:16:2b:18:45 dst_mac 02:2d:08:9a:6b:c8 src_ip 96.237.140.73 dst_ip 100.79.1.20 action pass && tc filter add dev swp33 ingress protocol ip pref 10856 flower src_mac 02:62:6e:16:aa:df dst_mac 02:16:0f:0c:98:2f src_ip 36.3.226.179 dst_ip 52.74.92.232 action trap && tc filter add dev swp33 ingress protocol ip pref 10857 flower src_mac 02:32:14:ee:a7:5e dst_mac 02:f8:7e:f3:1c:10 src_ip 45.36.27.68 dst_ip 41.190.180.119 ip_proto udp src_port 18915 dst_port 64989 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10858 flower src_mac 02:a8:00:e4:8c:02 dst_mac 02:97:76:04:0c:e0 src_ip 62.157.19.237 dst_ip 76.164.118.7 ip_proto udp src_port 17344 dst_port 41067 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10859 flower src_mac 02:59:9e:dc:f6:eb dst_mac 02:c7:5d:f1:d2:99 src_ip 43.171.216.146 dst_ip 91.198.148.212 ip_proto tcp src_port 63219 dst_port 40250 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10860 flower src_mac 02:12:87:87:6c:6d dst_mac 02:64:d2:e0:f7:70 vlan_id 3007 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10861 flower src_mac 02:f6:11:cd:de:67 dst_mac 02:9b:07:83:0d:6e vlan_id 1088 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10862 flower src_mac 02:c5:50:d0:36:9e dst_mac 02:db:8a:7c:7d:c0 src_ip 119.128.244.67 dst_ip 67.238.107.108 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10863 flower src_mac 02:41:1e:9b:fd:d5 dst_mac 02:36:e9:1c:e0:8d src_ip 57.225.63.174 dst_ip 82.218.158.101 ip_proto udp src_port 43415 dst_port 35826 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10864 flower src_mac 02:d2:ce:3a:30:a5 dst_mac 02:17:94:ab:91:fc action pass && tc filter add dev swp33 ingress protocol ip pref 10865 flower src_mac 02:36:64:c3:68:e2 dst_mac 02:2e:3e:29:79:00 src_ip 21.180.222.93 dst_ip 22.70.104.36 ip_proto icmp code 235 type 3 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10866 flower src_mac 02:e7:87:ea:fa:eb dst_mac 02:96:0f:19:2f:63 vlan_id 1276 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10867 flower src_mac 02:0d:62:39:47:80 dst_mac 02:51:54:14:97:bd vlan_id 352 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10868 flower src_mac 02:82:23:69:78:6b dst_mac 02:39:f2:8c:e4:9b vlan_id 1247 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol ip pref 10869 flower src_mac 02:c2:c0:6f:37:d4 dst_mac 02:c4:a8:23:9d:29 src_ip 109.19.32.112 dst_ip 22.57.191.39 ip_proto icmp code 86 type 18 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10870 flower src_mac 02:d6:1f:ca:9c:e8 dst_mac 02:d3:29:2f:d9:8e action trap && tc filter add dev swp33 ingress protocol ip pref 10871 flower src_mac 02:2a:5d:b2:29:65 dst_mac 02:d3:52:06:6e:c1 src_ip 45.217.251.119 dst_ip 64.206.229.204 ip_proto tcp src_port 39081 dst_port 28223 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10872 flower src_mac 02:93:33:cc:bb:ab dst_mac 02:f5:ba:fe:9a:9a action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10873 flower src_mac 02:31:26:61:68:b7 dst_mac 02:cd:02:1a:e2:bc vlan_id 340 vlan_ethtype 0x0800 src_ip 118.46.64.92 dst_ip 92.90.101.158 ip_proto tcp src_port 16229 dst_port 27151 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10874 flower src_mac 02:a5:7c:26:df:fe dst_mac 02:07:b3:ea:4f:d3 src_ip 38.200.186.48 dst_ip 86.43.177.119 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10875 flower src_mac 02:e2:38:92:02:50 dst_mac 02:aa:d5:34:39:09 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10876 flower src_mac 02:d7:e1:f4:61:57 dst_mac 02:55:7b:53:1c:1a vlan_id 3820 vlan_ethtype 0x0800 src_ip 25.241.57.84 dst_ip 111.3.218.88 action trap && tc filter add dev swp33 ingress protocol ip pref 10877 flower src_mac 02:cf:a1:3e:1e:a9 dst_mac 02:6d:1d:75:fa:d3 src_ip 72.6.2.15 dst_ip 110.29.166.185 ip_proto icmp code 98 type 18 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10878 flower src_mac 02:9b:03:d5:f1:5f dst_mac 02:a5:bc:e4:2e:c6 vlan_id 3534 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10879 flower src_mac 02:41:14:6e:a2:fe dst_mac 02:1e:f0:8d:45:8f action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10880 flower src_mac 02:5e:8c:a6:c2:6f dst_mac 02:f7:46:06:39:ac vlan_id 493 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 10881 flower src_mac 02:2c:23:c6:d5:19 dst_mac 02:a6:e6:44:4c:93 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10882 flower src_mac 02:9d:08:c8:3f:53 dst_mac 02:62:25:4a:2f:3d vlan_id 1664 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10883 flower src_mac 02:0e:e6:cb:66:60 dst_mac 02:43:fb:2c:0a:87 vlan_id 2006 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol ip pref 10884 flower src_mac 02:f2:09:20:b3:6f dst_mac 02:69:24:98:dd:ea src_ip 28.63.169.112 dst_ip 65.117.66.27 ip_proto udp src_port 29321 dst_port 23972 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10885 flower src_mac 02:c4:17:91:1b:0d dst_mac 02:5b:38:a3:11:c2 vlan_id 3239 vlan_ethtype ipv4 src_ip 65.227.156.10 dst_ip 75.108.44.107 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10886 flower src_mac 02:1b:b4:19:c5:68 dst_mac 02:b5:f6:b9:fd:d2 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10887 flower src_mac 02:88:80:56:7f:be dst_mac 02:a9:15:ff:29:89 vlan_id 2795 vlan_ethtype ip src_ip 38.75.190.5 dst_ip 40.199.203.91 ip_proto udp src_port 26115 dst_port 22739 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10888 flower src_mac 02:27:f7:e4:dc:d5 dst_mac 02:dc:f3:49:b3:39 vlan_id 59 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10889 flower src_mac 02:e1:48:5e:0e:f7 dst_mac 02:e9:c7:53:d8:08 src_ip 30.209.204.209 dst_ip 15.119.68.80 ip_proto icmp code 46 type 15 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10890 flower src_mac 02:e8:31:33:6f:53 dst_mac 02:b5:76:5f:38:6e vlan_id 378 vlan_ethtype ipv4 src_ip 20.76.149.187 dst_ip 115.41.156.99 ip_proto udp src_port 16097 dst_port 43191 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10891 flower src_mac 02:91:f6:eb:0d:92 dst_mac 02:45:4c:e4:49:a3 vlan_id 1563 vlan_ethtype ipv4 src_ip 40.165.163.142 dst_ip 23.71.191.215 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10892 flower src_mac 02:d4:56:f6:7a:3c dst_mac 02:1f:d3:d4:d5:bc vlan_id 2248 vlan_ethtype ipv4 src_ip 87.97.188.210 dst_ip 44.0.145.15 ip_proto tcp src_port 208 dst_port 46074 action trap && tc filter add dev swp33 ingress protocol ip pref 10893 flower src_mac 02:1f:32:8e:42:90 dst_mac 02:00:28:5f:fb:33 src_ip 117.172.94.163 dst_ip 124.42.250.163 ip_proto udp src_port 12721 dst_port 32256 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10894 flower src_mac 02:bb:f2:11:0a:45 dst_mac 02:8c:fd:75:ad:e8 src_ip 43.76.87.75 dst_ip 108.183.219.53 ip_proto icmp code 242 type 17 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 10895 flower src_mac 02:82:61:6b:8a:30 dst_mac 02:4e:9f:1a:ec:13 src_ip 58.248.37.154 dst_ip 50.170.221.142 ip_proto icmp code 9 type 3 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10896 flower src_mac 02:55:dd:1e:05:c2 dst_mac 02:fb:bd:28:d4:b5 vlan_id 1006 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10897 flower src_mac 02:a0:cc:0c:88:2b dst_mac 02:81:58:1b:db:6b src_ip 64.195.88.15 dst_ip 36.0.62.242 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10898 flower src_mac 02:b0:ab:7e:72:bf dst_mac 02:4c:ed:b1:af:66 vlan_id 3134 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10899 flower src_mac 02:51:36:9f:a6:e7 dst_mac 02:f2:08:ee:91:a4 vlan_id 551 vlan_ethtype ip src_ip 76.85.136.167 dst_ip 82.116.128.18 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10900 flower src_mac 02:bf:4d:40:db:d0 dst_mac 02:b6:59:5b:61:31 vlan_id 2331 vlan_ethtype ip src_ip 25.199.87.60 dst_ip 107.131.56.145 ip_proto tcp src_port 62810 dst_port 58109 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10901 flower src_mac 02:4e:f3:77:3b:2b dst_mac 02:58:51:eb:d3:27 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10902 flower src_mac 02:e2:64:6d:10:ff dst_mac 02:e0:e0:1b:d2:e0 vlan_id 2959 vlan_ethtype ip src_ip 99.242.106.89 dst_ip 83.210.152.178 ip_proto udp src_port 22094 dst_port 22018 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10903 flower src_mac 02:11:f3:1b:2b:4c dst_mac 02:84:73:a9:70:29 vlan_id 1113 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10904 flower src_mac 02:27:65:18:77:3a dst_mac 02:ca:e5:4e:8f:38 vlan_id 466 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 10905 flower src_mac 02:a5:37:9f:0d:d5 dst_mac 02:88:b3:c8:e4:08 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10906 flower src_mac 02:02:96:fb:3d:81 dst_mac 02:3f:e3:4a:70:b7 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10907 flower src_mac 02:fc:69:e2:2e:90 dst_mac 02:24:cd:5c:94:9e vlan_id 777 vlan_ethtype ipv4 src_ip 54.24.55.121 dst_ip 79.253.188.194 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10908 flower src_mac 02:ca:7c:da:a9:71 dst_mac 02:0b:ea:5e:49:92 src_ip 105.47.140.246 dst_ip 119.224.120.145 ip_proto tcp src_port 30848 dst_port 3913 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10909 flower src_mac 02:60:e1:b8:42:a3 dst_mac 02:f0:1c:6f:61:f1 src_ip 104.227.178.100 dst_ip 88.211.95.63 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10910 flower src_mac 02:3a:a8:96:17:6d dst_mac 02:7c:c5:1b:a2:15 vlan_id 3716 vlan_ethtype 0x0800 src_ip 18.128.127.69 dst_ip 45.107.43.203 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10911 flower src_mac 02:75:1b:5b:9f:de dst_mac 02:10:97:43:13:24 vlan_id 2579 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10912 flower src_mac 02:8a:54:b5:d3:ee dst_mac 02:60:c1:d0:83:d4 vlan_id 1537 vlan_ethtype ip src_ip 69.165.18.240 dst_ip 89.199.125.185 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10913 flower src_mac 02:65:00:cd:99:2c dst_mac 02:cf:ba:f6:ad:19 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10914 flower src_mac 02:55:fa:9c:4c:49 dst_mac 02:57:ae:ec:1b:7c vlan_id 4036 vlan_ethtype ip src_ip 125.132.85.63 dst_ip 70.198.90.198 ip_proto tcp src_port 16734 dst_port 55635 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10915 flower src_mac 02:6b:c1:d6:39:b4 dst_mac 02:d4:3d:d9:88:32 vlan_id 3266 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10916 flower src_mac 02:15:ab:32:6f:37 dst_mac 02:b2:c3:00:cc:a3 vlan_id 2704 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10917 flower src_mac 02:7a:e0:ad:d4:e7 dst_mac 02:12:21:13:af:f2 vlan_id 2914 vlan_ethtype 0x0800 src_ip 61.189.26.113 dst_ip 44.154.227.118 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10918 flower src_mac 02:b2:d8:f0:1e:1c dst_mac 02:d9:d2:d7:47:49 vlan_id 55 vlan_ethtype ipv4 src_ip 30.103.35.35 dst_ip 47.210.75.26 ip_proto tcp src_port 33787 dst_port 61823 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10919 flower src_mac 02:d1:2a:f8:88:a4 dst_mac 02:10:8f:dd:5f:51 src_ip 83.65.236.171 dst_ip 112.84.34.193 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10920 flower src_mac 02:ef:d1:12:5e:eb dst_mac 02:55:47:37:36:13 vlan_id 486 vlan_ethtype ipv4 src_ip 54.6.2.225 dst_ip 97.240.38.161 ip_proto udp src_port 11528 dst_port 3337 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10921 flower src_mac 02:e7:14:83:d2:a9 dst_mac 02:05:4d:fa:a1:f4 vlan_id 2295 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10922 flower src_mac 02:64:97:d5:54:22 dst_mac 02:3c:f4:fd:51:5c src_ip 89.228.171.9 dst_ip 23.40.192.33 ip_proto icmp code 121 type 15 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10923 flower src_mac 02:a1:ef:32:a7:c1 dst_mac 02:53:dc:f4:c9:b6 vlan_id 2741 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10924 flower src_mac 02:d2:6a:39:13:50 dst_mac 02:15:44:be:d8:04 vlan_id 3567 vlan_ethtype ipv4 src_ip 68.196.223.154 dst_ip 90.253.204.34 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10925 flower src_mac 02:59:91:d7:7b:ff dst_mac 02:b6:3e:9b:c6:34 src_ip 116.13.150.65 dst_ip 55.53.82.30 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10926 flower src_mac 02:f7:eb:66:3f:bc dst_mac 02:4b:dc:60:3c:76 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10927 flower src_mac 02:30:47:d0:de:90 dst_mac 02:b0:89:32:10:10 vlan_id 1476 vlan_ethtype 0x0800 src_ip 85.87.66.210 dst_ip 83.79.14.178 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10928 flower src_mac 02:bf:8e:e7:bc:a5 dst_mac 02:55:88:50:ad:04 src_ip 103.214.68.184 dst_ip 15.31.34.206 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10929 flower src_mac 02:0e:b0:77:51:8e dst_mac 02:92:cf:4e:19:4b action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10930 flower src_mac 02:c9:0e:38:5d:99 dst_mac 02:25:51:61:dc:af src_ip 72.255.75.90 dst_ip 24.17.128.47 ip_proto icmp code 188 type 13 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10931 flower src_mac 02:64:06:19:a6:2b dst_mac 02:a2:13:6b:aa:37 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10932 flower src_mac 02:00:4f:3c:f6:0e dst_mac 02:eb:77:4c:a8:48 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10933 flower src_mac 02:34:42:80:29:6d dst_mac 02:fb:82:3c:96:b0 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10934 flower src_mac 02:4f:3a:88:db:cb dst_mac 02:79:e5:39:a1:84 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10935 flower src_mac 02:4a:df:bd:19:7c dst_mac 02:d1:1a:b9:c0:5d src_ip 35.193.117.25 dst_ip 89.184.133.195 ip_proto udp src_port 65500 dst_port 23262 action pass && tc filter add dev swp33 ingress protocol ip pref 10936 flower src_mac 02:db:dc:be:dc:cd dst_mac 02:b4:7e:76:3e:c8 src_ip 32.181.190.84 dst_ip 47.0.12.79 ip_proto udp src_port 34662 dst_port 7679 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 10937 flower src_mac 02:34:f5:3b:ad:2a dst_mac 02:ac:c7:12:ae:0d src_ip 38.39.133.99 dst_ip 19.65.243.68 ip_proto tcp src_port 31903 dst_port 12086 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10938 flower src_mac 02:86:f3:b4:69:6b dst_mac 02:5e:f7:03:27:de vlan_id 1957 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10939 flower src_mac 02:cd:66:06:95:4b dst_mac 02:ae:e6:16:9c:43 src_ip 42.127.69.124 dst_ip 11.28.233.51 ip_proto tcp src_port 52088 dst_port 42985 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10940 flower src_mac 02:86:b9:6b:0b:ec dst_mac 02:9f:5d:e8:5e:bf vlan_id 226 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol ip pref 10941 flower src_mac 02:28:07:78:d6:83 dst_mac 02:98:1f:47:5c:c1 src_ip 115.66.94.218 dst_ip 71.208.30.93 ip_proto tcp src_port 13139 dst_port 38311 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10942 flower src_mac 02:db:94:33:0c:c9 dst_mac 02:20:e5:26:36:5d vlan_id 2291 vlan_ethtype ip src_ip 64.216.152.247 dst_ip 86.69.128.182 ip_proto tcp src_port 56997 dst_port 4555 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10943 flower src_mac 02:f2:49:28:66:72 dst_mac 02:77:eb:ba:1f:06 src_ip 106.5.186.178 dst_ip 65.87.159.36 ip_proto tcp src_port 43899 dst_port 18092 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10944 flower src_mac 02:7d:b3:29:43:55 dst_mac 02:2d:10:fc:95:1e vlan_id 2541 vlan_ethtype ip src_ip 95.246.65.223 dst_ip 61.165.32.19 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10945 flower src_mac 02:55:1a:bd:f9:f5 dst_mac 02:a9:8b:1f:ac:82 vlan_id 1608 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10946 flower src_mac 02:22:67:de:c5:71 dst_mac 02:36:4d:2a:95:be vlan_id 3786 vlan_ethtype ip src_ip 80.178.31.228 dst_ip 64.57.172.198 ip_proto tcp src_port 49885 dst_port 60268 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10947 flower src_mac 02:58:fa:ad:2a:e9 dst_mac 02:0b:e8:49:c4:ca vlan_id 616 vlan_ethtype ip src_ip 62.108.37.106 dst_ip 63.250.73.242 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 10948 flower src_mac 02:67:b1:bc:33:2d dst_mac 02:00:55:85:7a:ea vlan_id 1959 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10949 flower src_mac 02:14:bd:bc:42:62 dst_mac 02:ec:99:9a:4b:8c src_ip 83.187.30.145 dst_ip 111.16.70.20 ip_proto udp src_port 25604 dst_port 26844 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10950 flower src_mac 02:cb:e6:fd:37:fb dst_mac 02:de:3c:53:0f:b6 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10951 flower src_mac 02:6c:43:f9:e3:03 dst_mac 02:e5:bf:59:14:59 vlan_id 2883 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10952 flower src_mac 02:75:c6:d2:75:b1 dst_mac 02:b6:be:19:fe:a3 vlan_id 2492 vlan_ethtype ipv4 src_ip 115.50.241.123 dst_ip 81.21.62.89 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10953 flower src_mac 02:62:2a:c5:9e:47 dst_mac 02:a2:34:03:f0:8d vlan_id 1887 vlan_ethtype ipv4 src_ip 67.144.13.242 dst_ip 57.223.50.245 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10954 flower src_mac 02:8f:95:1d:f6:b8 dst_mac 02:91:b0:f9:ef:03 vlan_id 1074 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10955 flower src_mac 02:d3:de:f2:e4:e3 dst_mac 02:61:4a:de:4b:28 vlan_id 1986 vlan_ethtype ip src_ip 84.64.249.55 dst_ip 119.20.75.21 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10956 flower src_mac 02:33:8e:d7:af:00 dst_mac 02:40:64:cb:a6:88 vlan_id 2522 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10957 flower src_mac 02:f9:0d:04:9b:42 dst_mac 02:35:15:9d:b5:ca vlan_id 1231 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10958 flower src_mac 02:01:24:fb:c0:68 dst_mac 02:83:5f:e8:ed:09 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10959 flower src_mac 02:cc:22:e5:53:37 dst_mac 02:cf:cc:40:e8:4f action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10960 flower src_mac 02:eb:af:de:f6:92 dst_mac 02:34:dd:63:96:6d vlan_id 3673 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 10961 flower src_mac 02:d8:b6:e8:53:20 dst_mac 02:25:4e:d7:15:02 src_ip 121.61.179.3 dst_ip 94.182.175.87 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10962 flower src_mac 02:f2:01:93:db:bd dst_mac 02:9c:5e:ae:fd:4d vlan_id 2702 vlan_ethtype ipv4 src_ip 53.173.178.102 dst_ip 90.20.63.94 ip_proto udp src_port 53485 dst_port 10371 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10963 flower src_mac 02:c6:e2:75:6b:f6 dst_mac 02:47:83:55:15:fe vlan_id 1724 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10964 flower src_mac 02:ab:99:4b:fa:c2 dst_mac 02:34:3b:02:59:bd src_ip 18.172.170.250 dst_ip 59.234.15.204 ip_proto tcp src_port 50201 dst_port 1475 action trap && tc filter add dev swp33 ingress protocol ip pref 10965 flower src_mac 02:37:0e:5b:5a:c8 dst_mac 02:a1:2e:84:96:4d src_ip 94.31.153.168 dst_ip 113.157.100.179 ip_proto tcp src_port 7246 dst_port 14074 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10966 flower src_mac 02:0a:f2:7e:cf:1f dst_mac 02:d6:53:99:7b:ee vlan_id 2892 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10967 flower src_mac 02:3f:30:eb:8e:66 dst_mac 02:b7:b5:1e:90:86 vlan_id 3608 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10968 flower src_mac 02:bb:dc:91:b9:76 dst_mac 02:5e:b6:cf:dd:cf vlan_id 2911 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 10969 flower src_mac 02:47:57:f1:3a:60 dst_mac 02:94:1b:3c:9a:37 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 10970 flower src_mac 02:4a:6c:59:d1:cf dst_mac 02:a2:93:c8:dc:c1 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10971 flower src_mac 02:bb:84:5d:bc:14 dst_mac 02:c1:2e:b2:5e:9c vlan_id 578 vlan_ethtype 0x0800 src_ip 97.55.42.223 dst_ip 17.121.138.31 ip_proto udp src_port 14416 dst_port 12279 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 10972 flower src_mac 02:6e:db:b0:40:b7 dst_mac 02:a7:24:dd:51:73 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10973 flower src_mac 02:4b:85:e4:6b:11 dst_mac 02:3e:e5:a3:e1:56 vlan_id 1364 vlan_ethtype ip src_ip 11.65.212.150 dst_ip 108.50.87.150 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10974 flower src_mac 02:0c:05:5c:d9:b2 dst_mac 02:27:e5:ab:49:4a action trap && tc filter add dev swp33 ingress protocol ip pref 10975 flower src_mac 02:a5:76:b4:47:09 dst_mac 02:fb:01:4f:cc:65 src_ip 101.65.139.161 dst_ip 56.165.101.234 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 10976 flower src_mac 02:1c:9e:62:98:c5 dst_mac 02:7e:f3:f4:67:31 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10977 flower src_mac 02:72:d4:66:0c:3b dst_mac 02:80:f9:72:24:62 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 10978 flower src_mac 02:fb:d5:e8:d5:50 dst_mac 02:ef:19:e6:52:c6 src_ip 87.145.40.74 dst_ip 64.20.17.174 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10979 flower src_mac 02:8c:98:c4:27:00 dst_mac 02:ba:02:2a:93:a8 action pass && tc filter add dev swp33 ingress protocol ip pref 10980 flower src_mac 02:d1:32:08:23:0a dst_mac 02:d4:95:11:c4:af src_ip 50.214.72.71 dst_ip 123.8.239.211 ip_proto udp src_port 9043 dst_port 55797 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10981 flower src_mac 02:f8:b6:ae:01:ba dst_mac 02:f4:3a:5b:33:6d vlan_id 2417 vlan_ethtype ip src_ip 56.154.32.169 dst_ip 14.197.252.165 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10982 flower src_mac 02:38:98:3c:22:4f dst_mac 02:a2:1f:07:07:ab vlan_id 1647 vlan_ethtype ipv4 src_ip 112.7.250.8 dst_ip 102.195.31.162 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 10983 flower src_mac 02:29:eb:f8:98:b8 dst_mac 02:b5:9e:14:3e:e3 vlan_id 788 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 10984 flower src_mac 02:29:17:f0:14:13 dst_mac 02:ac:e2:16:19:c5 src_ip 95.60.16.91 dst_ip 31.7.25.154 ip_proto udp src_port 54669 dst_port 7616 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 10985 flower src_mac 02:25:b1:74:05:74 dst_mac 02:2d:e6:7d:e1:12 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10986 flower src_mac 02:12:43:25:01:f1 dst_mac 02:8b:19:78:3c:1f vlan_id 1107 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10987 flower src_mac 02:c5:b7:46:6f:49 dst_mac 02:5b:70:ec:48:86 vlan_id 2685 vlan_ethtype ip src_ip 116.126.160.97 dst_ip 124.128.1.125 ip_proto udp src_port 22304 dst_port 19283 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 10988 flower src_mac 02:07:08:f0:2f:59 dst_mac 02:f5:0c:7f:50:b3 vlan_id 1977 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10989 flower src_mac 02:35:0d:e6:02:f8 dst_mac 02:c8:71:65:37:48 action trap && tc filter add dev swp33 ingress protocol ip pref 10990 flower src_mac 02:cd:b6:2f:48:d6 dst_mac 02:ac:7e:1e:09:03 src_ip 12.161.126.191 dst_ip 41.35.52.193 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 10991 flower src_mac 02:96:03:a8:7c:54 dst_mac 02:8f:e6:a6:74:b2 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10992 flower src_mac 02:4a:22:d4:4f:eb dst_mac 02:95:a3:62:85:7c vlan_id 3648 vlan_ethtype 0x0800 src_ip 23.209.18.220 dst_ip 101.217.182.243 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10993 flower src_mac 02:7e:d9:1f:09:c3 dst_mac 02:17:54:af:1e:08 vlan_id 1970 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol ip pref 10994 flower src_mac 02:a3:70:64:1a:cd dst_mac 02:15:c3:90:58:13 src_ip 94.216.218.145 dst_ip 116.121.40.75 ip_proto tcp src_port 1143 dst_port 6136 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 10995 flower src_mac 02:a6:21:6c:a0:39 dst_mac 02:3a:5b:c7:14:89 vlan_id 3907 vlan_ethtype ip src_ip 56.67.21.144 dst_ip 57.247.102.58 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 10996 flower src_mac 02:59:dc:f2:c8:d8 dst_mac 02:f5:ab:39:b0:b4 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 10997 flower src_mac 02:f4:e6:d4:e8:87 dst_mac 02:4b:e9:25:63:b0 vlan_id 3646 vlan_ethtype ip src_ip 63.162.200.62 dst_ip 126.255.108.100 ip_proto tcp src_port 51932 dst_port 47401 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 10998 flower src_mac 02:36:7d:33:c5:9e dst_mac 02:36:6d:43:70:7b vlan_id 1506 vlan_ethtype ipv4 src_ip 42.95.83.193 dst_ip 95.138.113.136 ip_proto udp src_port 11635 dst_port 5794 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 10999 flower src_mac 02:6d:b3:58:ce:82 dst_mac 02:dc:bf:9d:84:1c src_ip 79.228.74.168 dst_ip 121.150.182.240 ip_proto udp src_port 52767 dst_port 52834 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11000 flower src_mac 02:06:7d:31:f6:7c dst_mac 02:7d:b4:1f:5d:31 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11001 flower src_mac 02:09:8d:82:85:67 dst_mac 02:4d:64:5b:fb:ae src_ip 96.30.213.94 dst_ip 104.68.46.152 ip_proto udp src_port 20147 dst_port 11871 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11002 flower src_mac 02:ac:bd:4a:60:34 dst_mac 02:a9:51:2f:c3:42 vlan_id 360 vlan_ethtype 0x0800 src_ip 86.45.56.247 dst_ip 92.101.228.127 ip_proto tcp src_port 3876 dst_port 17152 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11003 flower src_mac 02:5a:f8:0a:c5:a5 dst_mac 02:64:0c:5e:ad:03 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11004 flower src_mac 02:3f:8f:06:91:2e dst_mac 02:bd:d4:aa:f4:77 src_ip 58.151.249.89 dst_ip 119.70.231.66 ip_proto tcp src_port 39925 dst_port 75 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11005 flower src_mac 02:5d:86:89:2c:2a dst_mac 02:60:fe:22:53:f2 action trap && tc filter add dev swp33 ingress protocol ip pref 11006 flower src_mac 02:75:d5:0f:d3:79 dst_mac 02:95:80:9a:89:7f src_ip 29.165.53.80 dst_ip 94.218.107.194 ip_proto tcp src_port 3991 dst_port 23302 action trap && tc filter add dev swp33 ingress protocol ip pref 11007 flower src_mac 02:5c:bc:f2:5c:9d dst_mac 02:63:c9:55:37:5e src_ip 79.203.192.186 dst_ip 52.227.131.6 ip_proto udp src_port 43226 dst_port 35404 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11008 flower src_mac 02:1d:31:fd:d8:5b dst_mac 02:d4:39:25:d2:6a action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11009 flower src_mac 02:d5:b6:9e:e7:54 dst_mac 02:e8:e0:a9:a6:24 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11010 flower src_mac 02:60:b6:e1:d0:ac dst_mac 02:ab:59:3c:0a:4a vlan_id 2966 vlan_ethtype 0x0800 src_ip 105.51.226.244 dst_ip 110.24.120.83 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11011 flower src_mac 02:d7:83:d5:a3:90 dst_mac 02:2c:82:c0:74:18 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11012 flower src_mac 02:52:d0:9a:bf:12 dst_mac 02:a9:1b:83:94:1b action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11013 flower src_mac 02:66:f7:17:76:2b dst_mac 02:7e:0e:8b:ca:75 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11014 flower src_mac 02:27:7b:de:54:4e dst_mac 02:75:43:30:17:69 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11015 flower src_mac 02:75:af:fe:76:b9 dst_mac 02:8f:2d:2e:8f:a6 vlan_id 2964 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11016 flower src_mac 02:b8:60:e0:b8:ca dst_mac 02:43:1c:6d:cf:de vlan_id 1730 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11017 flower src_mac 02:c0:7e:8b:1b:f3 dst_mac 02:6e:81:55:10:27 vlan_id 547 vlan_ethtype 0x0800 src_ip 92.120.49.244 dst_ip 64.79.38.87 ip_proto tcp src_port 52050 dst_port 28656 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11018 flower src_mac 02:3f:7c:b6:f9:96 dst_mac 02:65:76:52:e0:fa vlan_id 3142 vlan_ethtype 0x0800 src_ip 105.209.131.97 dst_ip 93.52.253.5 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11019 flower src_mac 02:68:92:e3:21:27 dst_mac 02:a6:fb:1b:f9:b6 vlan_id 565 vlan_ethtype ip src_ip 62.141.213.166 dst_ip 93.65.32.59 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11020 flower src_mac 02:6b:41:f2:9c:a9 dst_mac 02:9b:0f:03:75:de vlan_id 2650 vlan_ethtype 0x0800 src_ip 83.254.188.52 dst_ip 87.49.66.24 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11021 flower src_mac 02:fe:17:06:00:8e dst_mac 02:44:91:40:d5:0d vlan_id 2734 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol ip pref 11022 flower src_mac 02:2c:47:ad:46:c7 dst_mac 02:fd:e3:03:d9:17 src_ip 17.50.26.178 dst_ip 61.219.28.218 ip_proto icmp code 186 type 16 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11023 flower src_mac 02:6d:49:12:da:5e dst_mac 02:1f:23:00:af:0d action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11024 flower src_mac 02:76:33:9a:52:f2 dst_mac 02:2d:e9:c8:03:1b vlan_id 1131 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11025 flower src_mac 02:1e:9a:9c:22:e7 dst_mac 02:04:38:5b:28:5c action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11026 flower src_mac 02:16:a8:b5:8d:20 dst_mac 02:7b:9f:e2:22:d8 vlan_id 2742 vlan_ethtype ip src_ip 40.16.224.45 dst_ip 63.179.124.107 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11027 flower src_mac 02:6a:d2:2e:78:8c dst_mac 02:8f:9a:25:85:ae src_ip 74.202.177.90 dst_ip 27.182.88.21 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11028 flower src_mac 02:ee:7e:e1:39:5c dst_mac 02:31:49:6b:03:9b vlan_id 3865 vlan_ethtype ip src_ip 46.20.15.82 dst_ip 79.81.231.77 ip_proto tcp src_port 43422 dst_port 32418 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11029 flower src_mac 02:59:18:b9:1f:c5 dst_mac 02:9e:d9:21:a1:bf vlan_id 3080 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11030 flower src_mac 02:e1:10:c2:52:39 dst_mac 02:8a:7e:a8:d0:50 vlan_id 3222 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11031 flower src_mac 02:80:c3:95:dd:af dst_mac 02:af:a0:a3:8b:75 vlan_id 2401 vlan_ethtype ipv4 src_ip 125.225.141.29 dst_ip 89.103.251.98 ip_proto tcp src_port 370 dst_port 42334 action drop && tc filter add dev swp33 ingress protocol ip pref 11032 flower src_mac 02:c4:7a:fc:d6:f6 dst_mac 02:cd:93:92:26:0a src_ip 61.141.79.18 dst_ip 120.104.226.42 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11033 flower src_mac 02:ad:b9:3d:ae:e9 dst_mac 02:08:75:93:4a:6a vlan_id 2737 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11034 flower src_mac 02:e4:5c:6d:1c:1c dst_mac 02:5c:3c:54:9f:e2 vlan_id 514 vlan_ethtype ip src_ip 88.112.119.178 dst_ip 12.224.120.96 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11035 flower src_mac 02:68:f4:44:1d:8d dst_mac 02:b2:09:4a:6c:27 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11036 flower src_mac 02:04:22:b6:96:91 dst_mac 02:c9:5a:1a:15:43 vlan_id 1930 vlan_ethtype ip src_ip 38.255.49.138 dst_ip 40.142.118.185 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11037 flower src_mac 02:01:4b:a9:ec:c4 dst_mac 02:09:56:f8:7c:8d action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11038 flower src_mac 02:2c:76:d7:62:31 dst_mac 02:de:c0:7d:43:6e vlan_id 1147 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11039 flower src_mac 02:19:b2:72:5b:a5 dst_mac 02:3b:8b:49:03:aa vlan_id 1401 vlan_ethtype ipv4 src_ip 88.113.240.191 dst_ip 86.217.12.180 ip_proto udp src_port 62713 dst_port 15904 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11040 flower src_mac 02:d7:39:bd:3b:77 dst_mac 02:4a:49:62:7b:95 vlan_id 804 vlan_ethtype ipv4 src_ip 75.255.87.185 dst_ip 100.211.153.159 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11041 flower src_mac 02:95:bd:5e:e4:34 dst_mac 02:a3:9f:28:b8:56 vlan_id 189 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11042 flower src_mac 02:9c:44:30:d5:52 dst_mac 02:fd:08:13:f4:b3 vlan_id 2060 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11043 flower src_mac 02:0c:3a:e5:4c:72 dst_mac 02:76:f4:56:3c:2c vlan_id 3958 vlan_ethtype 0x0800 src_ip 94.152.54.211 dst_ip 124.106.118.213 ip_proto tcp src_port 61738 dst_port 56004 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11044 flower src_mac 02:02:8f:b6:49:15 dst_mac 02:7b:be:01:5b:2d vlan_id 1973 vlan_ethtype ip src_ip 77.53.246.84 dst_ip 37.196.21.22 ip_proto tcp src_port 42476 dst_port 37922 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11045 flower src_mac 02:91:b5:c1:24:34 dst_mac 02:05:7f:16:fb:2a src_ip 43.44.59.96 dst_ip 115.81.191.46 ip_proto udp src_port 51848 dst_port 63230 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11046 flower src_mac 02:e8:79:59:18:50 dst_mac 02:71:10:df:4b:50 vlan_id 1743 vlan_ethtype ipv4 src_ip 109.181.222.135 dst_ip 64.134.162.37 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11047 flower src_mac 02:b6:59:df:fb:08 dst_mac 02:c8:99:ae:53:70 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11048 flower src_mac 02:cc:12:8e:e0:c5 dst_mac 02:39:b8:75:0e:55 vlan_id 1488 vlan_ethtype ipv4 src_ip 112.59.216.225 dst_ip 29.56.85.40 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11049 flower src_mac 02:16:ac:1b:c7:81 dst_mac 02:c4:5b:df:3e:14 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11050 flower src_mac 02:a0:23:30:ee:8b dst_mac 02:f6:54:1b:4f:2c vlan_id 3241 vlan_ethtype ip src_ip 83.110.123.202 dst_ip 55.30.162.245 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11051 flower src_mac 02:e0:93:0b:92:2f dst_mac 02:10:69:a0:c1:3b vlan_id 1150 vlan_ethtype ipv4 src_ip 15.166.0.30 dst_ip 68.104.105.140 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11052 flower src_mac 02:0a:8e:86:44:c1 dst_mac 02:c2:6a:5c:ba:c4 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11053 flower src_mac 02:62:0f:55:c3:97 dst_mac 02:84:bb:ae:13:85 vlan_id 1301 vlan_ethtype 0x0800 src_ip 98.246.177.235 dst_ip 113.203.62.125 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11054 flower src_mac 02:53:0c:e2:76:d9 dst_mac 02:46:40:5b:65:b5 vlan_id 2605 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11055 flower src_mac 02:e2:86:82:f1:94 dst_mac 02:8a:95:15:81:fe vlan_id 469 vlan_ethtype ipv4 src_ip 25.180.10.44 dst_ip 123.237.193.128 ip_proto tcp src_port 19656 dst_port 12709 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11056 flower src_mac 02:89:a6:bc:1d:ab dst_mac 02:f6:17:f0:5c:7e vlan_id 1889 vlan_ethtype ip src_ip 105.135.21.220 dst_ip 39.204.16.56 ip_proto udp src_port 12736 dst_port 32125 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11057 flower src_mac 02:81:1b:a6:9c:8a dst_mac 02:a3:37:93:1f:3c vlan_id 133 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11058 flower src_mac 02:6e:a7:e4:d7:b2 dst_mac 02:15:df:af:68:c5 vlan_id 2085 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11059 flower src_mac 02:78:ce:5a:ca:fe dst_mac 02:ba:6e:f0:3a:95 src_ip 86.58.94.34 dst_ip 27.146.176.79 ip_proto icmp code 220 type 15 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11060 flower src_mac 02:7e:98:5d:48:83 dst_mac 02:fd:e4:d5:b1:bb action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11061 flower src_mac 02:4e:ca:ab:32:67 dst_mac 02:a0:73:a4:ac:47 src_ip 120.28.128.86 dst_ip 28.72.254.107 ip_proto tcp src_port 53183 dst_port 13252 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11062 flower src_mac 02:96:b5:4c:76:f2 dst_mac 02:a9:22:3c:52:29 src_ip 44.41.121.142 dst_ip 110.66.149.14 ip_proto udp src_port 41774 dst_port 32123 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11063 flower src_mac 02:75:c6:63:a4:b8 dst_mac 02:2e:45:ec:97:61 src_ip 28.127.208.59 dst_ip 14.243.251.218 ip_proto tcp src_port 48637 dst_port 16474 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11064 flower src_mac 02:eb:6d:61:c9:27 dst_mac 02:cd:34:60:d2:4c vlan_id 3542 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11065 flower src_mac 02:0d:49:15:81:b3 dst_mac 02:9b:f0:fe:08:11 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11066 flower src_mac 02:0e:ab:53:87:f9 dst_mac 02:f9:5e:8d:30:66 vlan_id 3374 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11067 flower src_mac 02:e7:6d:4d:63:61 dst_mac 02:6b:e0:27:8a:ec vlan_id 2707 vlan_ethtype ipv4 src_ip 69.157.187.90 dst_ip 46.29.129.171 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11068 flower src_mac 02:c9:84:0c:0e:96 dst_mac 02:65:ca:a1:89:de vlan_id 2201 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 11069 flower src_mac 02:d6:fe:85:cf:6f dst_mac 02:92:e3:43:ed:de action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11070 flower src_mac 02:ea:7c:66:ae:4e dst_mac 02:9c:67:21:a8:17 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11071 flower src_mac 02:ca:67:41:63:2c dst_mac 02:da:f0:4a:d2:e5 src_ip 95.119.175.133 dst_ip 30.102.223.83 ip_proto icmp code 79 type 4 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11072 flower src_mac 02:56:9f:29:c0:93 dst_mac 02:64:78:fd:fe:b4 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11073 flower src_mac 02:6b:c7:00:6e:6d dst_mac 02:78:d8:06:ac:bb vlan_id 1145 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol ip pref 11074 flower src_mac 02:5e:70:19:09:34 dst_mac 02:6a:4e:fb:a8:0b src_ip 85.239.184.73 dst_ip 68.251.68.111 ip_proto tcp src_port 3497 dst_port 42658 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11075 flower src_mac 02:d4:25:ef:81:70 dst_mac 02:f0:81:0b:55:c2 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11076 flower src_mac 02:b9:ed:ad:cd:5c dst_mac 02:af:df:62:90:d4 src_ip 27.221.48.164 dst_ip 16.205.131.91 ip_proto udp src_port 48694 dst_port 41591 action pass && tc filter add dev swp33 ingress protocol ip pref 11077 flower src_mac 02:95:16:c4:30:03 dst_mac 02:17:de:5f:ec:8c src_ip 90.218.114.242 dst_ip 69.246.155.74 ip_proto tcp src_port 37875 dst_port 6417 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11078 flower src_mac 02:51:fa:64:84:d8 dst_mac 02:8d:5d:63:a3:c3 src_ip 100.150.202.65 dst_ip 93.10.246.244 ip_proto udp src_port 61510 dst_port 32356 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11079 flower src_mac 02:ac:5e:cd:d0:90 dst_mac 02:22:d1:d4:65:bd src_ip 70.68.83.182 dst_ip 55.53.64.31 ip_proto tcp src_port 61591 dst_port 25533 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11080 flower src_mac 02:f5:09:df:da:69 dst_mac 02:d5:d5:ea:99:e4 vlan_id 2288 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11081 flower src_mac 02:aa:ec:1a:97:2e dst_mac 02:7b:3d:e5:ef:54 vlan_id 3196 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11082 flower src_mac 02:61:52:87:92:3e dst_mac 02:29:68:4f:89:1b vlan_id 1860 vlan_ethtype 0x0800 src_ip 108.22.104.142 dst_ip 31.144.217.90 ip_proto tcp src_port 64020 dst_port 46527 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11083 flower src_mac 02:b3:63:9c:10:d4 dst_mac 02:7f:da:8d:9a:23 src_ip 23.254.132.188 dst_ip 97.179.38.211 ip_proto icmp code 212 type 16 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11084 flower src_mac 02:34:62:1a:26:91 dst_mac 02:07:ec:7e:df:ba vlan_id 3194 vlan_ethtype ipv4 src_ip 77.186.56.140 dst_ip 110.151.44.46 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11085 flower src_mac 02:f6:b5:67:f5:61 dst_mac 02:10:82:5d:db:81 src_ip 125.36.86.158 dst_ip 103.110.60.130 ip_proto udp src_port 59863 dst_port 48028 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11086 flower src_mac 02:b2:1c:7c:21:56 dst_mac 02:64:1f:b2:37:ff vlan_id 3307 vlan_ethtype ip src_ip 90.91.204.233 dst_ip 116.8.219.183 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11087 flower src_mac 02:08:1a:5b:e5:50 dst_mac 02:3a:4e:60:d6:35 vlan_id 2521 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11088 flower src_mac 02:4c:bd:3d:4b:29 dst_mac 02:ca:fe:f6:cd:e2 vlan_id 2633 vlan_ethtype ip src_ip 39.253.226.99 dst_ip 76.77.228.1 ip_proto udp src_port 21386 dst_port 13960 action trap && tc filter add dev swp33 ingress protocol ip pref 11089 flower src_mac 02:f7:e9:ab:0d:93 dst_mac 02:09:24:d5:6c:43 src_ip 125.152.42.91 dst_ip 86.87.105.92 ip_proto udp src_port 48879 dst_port 59222 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11090 flower src_mac 02:9f:65:53:66:70 dst_mac 02:19:96:37:ab:3a vlan_id 3809 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol ip pref 11091 flower src_mac 02:a6:bd:f1:c4:5a dst_mac 02:09:b2:84:94:82 src_ip 125.59.50.99 dst_ip 23.217.201.34 ip_proto icmp code 78 type 0 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11092 flower src_mac 02:95:1b:da:f0:ee dst_mac 02:67:30:3e:ed:73 vlan_id 167 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11093 flower src_mac 02:a7:95:53:e5:35 dst_mac 02:bb:8f:f3:5e:69 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11094 flower src_mac 02:9a:86:6f:95:ab dst_mac 02:68:bf:90:1d:16 vlan_id 4074 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11095 flower src_mac 02:df:ba:a1:de:a8 dst_mac 02:fd:2e:3d:f5:0b src_ip 40.17.234.70 dst_ip 62.59.96.161 ip_proto tcp src_port 17759 dst_port 8055 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11096 flower src_mac 02:98:b2:6d:e5:c1 dst_mac 02:fa:f0:02:1a:08 vlan_id 3795 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11097 flower src_mac 02:ea:bc:bf:ed:94 dst_mac 02:4b:80:37:dd:c7 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11098 flower src_mac 02:ae:4f:28:12:d5 dst_mac 02:a0:df:9f:1d:2d action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11099 flower src_mac 02:b5:80:4a:a4:7a dst_mac 02:ac:37:67:cc:9a vlan_id 427 vlan_ethtype 0x0800 src_ip 109.217.23.138 dst_ip 56.27.132.41 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11100 flower src_mac 02:56:a2:19:14:70 dst_mac 02:9f:47:26:73:05 action trap && tc filter add dev swp33 ingress protocol ip pref 11101 flower src_mac 02:7b:e1:80:d1:56 dst_mac 02:03:bd:e1:b6:a3 src_ip 78.209.153.139 dst_ip 120.56.117.117 ip_proto icmp code 130 type 17 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11102 flower src_mac 02:6d:0a:aa:31:47 dst_mac 02:53:86:ba:e4:e1 vlan_id 4086 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11103 flower src_mac 02:dd:99:c7:32:db dst_mac 02:f1:e4:9a:bd:d3 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11104 flower src_mac 02:9f:92:c9:64:da dst_mac 02:fd:55:b6:af:5b vlan_id 1688 vlan_ethtype ip src_ip 43.234.73.21 dst_ip 41.80.179.106 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 11105 flower src_mac 02:5a:c0:d6:b3:0b dst_mac 02:38:8f:3e:cf:14 action pass && tc filter add dev swp33 ingress protocol ip pref 11106 flower src_mac 02:93:0c:ef:09:d5 dst_mac 02:9c:b6:15:97:cb src_ip 74.180.11.34 dst_ip 83.131.48.11 ip_proto udp src_port 12674 dst_port 12803 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11107 flower src_mac 02:19:42:13:55:1a dst_mac 02:fe:3a:f8:02:02 vlan_id 1408 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11108 flower src_mac 02:d8:44:18:7b:6d dst_mac 02:ca:b5:33:e2:4f vlan_id 110 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11109 flower src_mac 02:b2:ea:00:be:1a dst_mac 02:77:df:c4:1e:70 vlan_id 1460 vlan_ethtype ip src_ip 59.195.27.48 dst_ip 18.253.177.159 ip_proto tcp src_port 11323 dst_port 6297 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11110 flower src_mac 02:29:28:35:82:82 dst_mac 02:70:5b:10:96:fe action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11111 flower src_mac 02:cc:6e:60:59:8c dst_mac 02:7b:d4:af:c2:f9 src_ip 57.236.157.191 dst_ip 41.93.170.197 ip_proto icmp code 130 type 16 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11112 flower src_mac 02:d8:b2:3b:54:75 dst_mac 02:e3:46:b2:49:e2 vlan_id 2140 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol ip pref 11113 flower src_mac 02:ef:85:be:92:1b dst_mac 02:c2:3f:7b:55:30 src_ip 115.210.81.172 dst_ip 77.31.21.166 ip_proto tcp src_port 24031 dst_port 4395 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11114 flower src_mac 02:25:c5:a8:41:e1 dst_mac 02:93:76:d8:9a:88 vlan_id 2952 vlan_ethtype ip src_ip 61.232.151.204 dst_ip 51.39.181.35 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11115 flower src_mac 02:57:95:1e:3e:71 dst_mac 02:5b:43:e8:0d:1c src_ip 22.236.103.46 dst_ip 114.250.148.123 ip_proto tcp src_port 46916 dst_port 34079 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11116 flower src_mac 02:f4:dc:a4:65:7b dst_mac 02:1b:55:1e:5f:60 vlan_id 3623 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11117 flower src_mac 02:c1:80:9d:23:af dst_mac 02:3b:0d:9d:c4:28 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11118 flower src_mac 02:ae:a3:27:2f:99 dst_mac 02:09:2e:9f:fc:32 vlan_id 2333 vlan_ethtype 0x0800 src_ip 15.227.142.193 dst_ip 86.224.62.140 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11119 flower src_mac 02:6c:58:05:a9:65 dst_mac 02:34:a5:59:f8:7f action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11120 flower src_mac 02:60:a3:59:9c:a3 dst_mac 02:33:fb:94:00:eb vlan_id 2688 vlan_ethtype ipv4 src_ip 126.195.140.151 dst_ip 17.25.239.96 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11121 flower src_mac 02:b0:27:7c:09:53 dst_mac 02:18:ee:2b:15:31 src_ip 47.239.43.238 dst_ip 33.14.20.199 ip_proto tcp src_port 156 dst_port 59585 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11122 flower src_mac 02:c3:92:aa:4c:2b dst_mac 02:72:ea:21:a7:ed vlan_id 1765 vlan_ethtype ipv4 src_ip 16.90.50.30 dst_ip 49.135.92.221 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11123 flower src_mac 02:35:84:7a:45:f2 dst_mac 02:19:fb:f3:ed:dd action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11124 flower src_mac 02:04:e8:b9:7f:7a dst_mac 02:f9:56:2b:52:e4 vlan_id 2537 vlan_ethtype ipv4 src_ip 59.38.140.69 dst_ip 108.125.15.216 ip_proto tcp src_port 37766 dst_port 41019 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11125 flower src_mac 02:53:bf:3e:bd:05 dst_mac 02:20:cd:17:64:ab vlan_id 2027 vlan_ethtype 0x0800 src_ip 24.24.96.250 dst_ip 70.210.47.204 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11126 flower src_mac 02:7f:b9:26:e2:ac dst_mac 02:a5:6a:8c:4d:fc vlan_id 1525 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11127 flower src_mac 02:20:25:1e:5e:d5 dst_mac 02:97:68:4e:0c:11 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11128 flower src_mac 02:79:5b:6f:e3:fc dst_mac 02:e0:7c:1c:d5:4d vlan_id 1408 vlan_ethtype ipv4 src_ip 116.27.85.188 dst_ip 94.230.154.184 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11129 flower src_mac 02:5f:de:c0:fa:94 dst_mac 02:07:28:ff:01:12 vlan_id 1343 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11130 flower src_mac 02:64:82:1a:fe:e3 dst_mac 02:b3:5d:4f:13:14 src_ip 65.48.163.115 dst_ip 33.105.139.170 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11131 flower src_mac 02:d2:8d:87:33:4c dst_mac 02:7b:ec:bf:76:05 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11132 flower src_mac 02:b2:ff:07:f0:b4 dst_mac 02:81:25:dc:48:37 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11133 flower src_mac 02:18:24:ea:93:ff dst_mac 02:f1:9c:9c:b7:bd action trap && tc filter add dev swp33 ingress protocol ip pref 11134 flower src_mac 02:e5:4f:9d:90:10 dst_mac 02:46:f6:64:fe:d6 src_ip 102.147.11.156 dst_ip 97.82.33.3 ip_proto udp src_port 2882 dst_port 22028 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11135 flower src_mac 02:be:d0:e8:8b:b4 dst_mac 02:f3:7d:3c:b9:ba src_ip 19.228.89.179 dst_ip 105.54.6.21 ip_proto tcp src_port 54425 dst_port 43710 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11136 flower src_mac 02:20:90:7f:c7:9d dst_mac 02:07:17:88:68:85 vlan_id 3214 vlan_ethtype ipv4 src_ip 126.79.125.124 dst_ip 70.237.32.223 ip_proto tcp src_port 44787 dst_port 43838 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11137 flower src_mac 02:ec:1d:0a:16:c7 dst_mac 02:47:12:be:e8:35 vlan_id 3657 vlan_ethtype 0x0800 src_ip 14.204.239.123 dst_ip 103.230.125.74 ip_proto tcp src_port 14061 dst_port 27711 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11138 flower src_mac 02:f4:10:b4:a6:ca dst_mac 02:48:fe:71:54:5d src_ip 126.90.224.84 dst_ip 99.9.154.167 ip_proto udp src_port 22127 dst_port 44675 action trap && tc filter add dev swp33 ingress protocol ip pref 11139 flower src_mac 02:63:61:38:9a:43 dst_mac 02:8d:af:65:1d:59 src_ip 89.21.18.127 dst_ip 33.84.168.143 ip_proto icmp code 94 type 5 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11140 flower src_mac 02:2a:bf:0c:be:fd dst_mac 02:30:5a:73:30:c9 vlan_id 4070 vlan_ethtype 0x0800 src_ip 114.183.251.90 dst_ip 39.195.231.185 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11141 flower src_mac 02:fd:71:c0:d4:d2 dst_mac 02:95:0c:6e:f4:8a vlan_id 2413 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11142 flower src_mac 02:6c:c3:a7:ef:c4 dst_mac 02:0e:0d:bc:c1:40 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11143 flower src_mac 02:47:6a:a5:a7:18 dst_mac 02:5a:4d:c2:8d:e9 vlan_id 846 vlan_ethtype 0x0800 src_ip 47.93.212.72 dst_ip 20.138.25.136 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11144 flower src_mac 02:e9:4b:3d:be:7f dst_mac 02:76:7e:80:98:b1 src_ip 38.59.49.124 dst_ip 11.89.149.209 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11145 flower src_mac 02:ea:80:d1:ae:4f dst_mac 02:fc:fb:17:8c:72 vlan_id 2478 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11146 flower src_mac 02:86:78:5c:b3:bc dst_mac 02:96:d1:fa:7e:4b vlan_id 2573 vlan_ethtype 0x0800 src_ip 21.253.209.62 dst_ip 115.211.26.148 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11147 flower src_mac 02:69:34:88:46:72 dst_mac 02:8f:8c:30:0b:97 vlan_id 39 vlan_ethtype ip src_ip 44.15.148.103 dst_ip 37.30.117.171 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11148 flower src_mac 02:76:3f:70:d0:1a dst_mac 02:11:38:a6:78:eb action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11149 flower src_mac 02:73:b5:b8:66:8d dst_mac 02:1c:a6:0c:fd:40 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11150 flower src_mac 02:87:eb:ae:e7:55 dst_mac 02:7e:59:22:a0:89 vlan_id 4075 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11151 flower src_mac 02:ba:16:5e:e3:12 dst_mac 02:53:96:7f:0c:8d action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11152 flower src_mac 02:d5:80:29:ca:9e dst_mac 02:a0:8b:66:10:a6 src_ip 86.55.202.240 dst_ip 23.178.118.71 ip_proto icmp code 204 type 8 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11153 flower src_mac 02:e3:86:60:45:bf dst_mac 02:c9:fe:57:b3:ed vlan_id 2747 vlan_ethtype ip src_ip 41.9.221.9 dst_ip 94.56.7.48 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11154 flower src_mac 02:76:e2:5d:41:c7 dst_mac 02:31:2f:79:df:1e src_ip 100.223.79.79 dst_ip 120.246.197.171 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11155 flower src_mac 02:02:44:70:01:66 dst_mac 02:b0:da:bd:b2:5a vlan_id 28 vlan_ethtype ipv4 src_ip 102.60.67.223 dst_ip 35.53.131.129 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11156 flower src_mac 02:14:d4:0d:a8:7b dst_mac 02:30:2c:c4:0d:10 src_ip 31.58.47.141 dst_ip 63.248.212.100 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11157 flower src_mac 02:65:62:86:0b:2f dst_mac 02:3f:33:53:f7:53 src_ip 93.199.86.238 dst_ip 62.178.126.92 ip_proto icmp code 67 type 16 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11158 flower src_mac 02:6c:01:37:f6:68 dst_mac 02:1b:70:37:0f:1c src_ip 34.244.97.217 dst_ip 65.163.230.11 ip_proto udp src_port 45350 dst_port 16141 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11159 flower src_mac 02:01:b6:54:2a:87 dst_mac 02:1b:ff:93:81:43 vlan_id 3822 vlan_ethtype ipv4 src_ip 106.73.195.155 dst_ip 54.131.150.113 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11160 flower src_mac 02:f2:6f:9e:52:63 dst_mac 02:fb:3a:d9:59:3f src_ip 92.31.125.212 dst_ip 37.4.146.149 ip_proto udp src_port 7012 dst_port 6394 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11161 flower src_mac 02:ad:16:a6:d8:be dst_mac 02:61:85:a7:b9:c0 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11162 flower src_mac 02:49:1f:9e:b4:51 dst_mac 02:ab:f2:53:bb:a4 src_ip 106.240.125.42 dst_ip 48.24.187.133 ip_proto icmp code 166 type 11 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11163 flower src_mac 02:1c:a5:10:c3:6c dst_mac 02:eb:0b:d2:f0:18 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11164 flower src_mac 02:c0:84:c1:d8:cd dst_mac 02:66:c4:e2:51:b2 vlan_id 4020 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11165 flower src_mac 02:96:0c:bd:86:50 dst_mac 02:35:57:f9:63:fe vlan_id 4049 vlan_ethtype ipv4 src_ip 54.140.180.136 dst_ip 30.60.28.142 ip_proto udp src_port 11560 dst_port 15861 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11166 flower src_mac 02:b6:b5:f3:10:62 dst_mac 02:f8:d7:5c:18:d9 vlan_id 2471 vlan_ethtype ip src_ip 13.170.224.112 dst_ip 29.185.82.103 ip_proto tcp src_port 58497 dst_port 21133 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11167 flower src_mac 02:ad:16:cb:d2:ce dst_mac 02:82:ca:5c:da:33 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11168 flower src_mac 02:e0:89:c6:5f:6b dst_mac 02:b7:d1:79:9c:f0 vlan_id 1996 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11169 flower src_mac 02:2f:f2:8a:19:28 dst_mac 02:d2:ed:6f:f1:c9 vlan_id 3819 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11170 flower src_mac 02:6c:f6:1f:d0:04 dst_mac 02:20:e7:39:22:69 vlan_id 3414 vlan_ethtype 0x0800 src_ip 118.122.18.165 dst_ip 87.195.29.215 ip_proto udp src_port 10635 dst_port 38110 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11171 flower src_mac 02:14:9b:4f:fa:cc dst_mac 02:21:c8:a6:0a:eb action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11172 flower src_mac 02:42:d0:58:81:b0 dst_mac 02:37:57:70:3b:50 vlan_id 1556 vlan_ethtype ipv4 src_ip 86.78.203.74 dst_ip 28.130.153.5 ip_proto tcp src_port 14606 dst_port 5094 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11173 flower src_mac 02:9e:4a:bd:bf:d0 dst_mac 02:8c:52:82:d4:cf vlan_id 798 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11174 flower src_mac 02:11:16:6e:e2:ac dst_mac 02:79:fb:89:f1:6c vlan_id 403 vlan_ethtype 0x0800 src_ip 96.30.49.241 dst_ip 104.56.123.104 ip_proto tcp src_port 44937 dst_port 25935 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11175 flower src_mac 02:eb:cd:40:e1:5a dst_mac 02:24:dc:82:95:58 action pass && tc filter add dev swp33 ingress protocol ip pref 11176 flower src_mac 02:fa:6a:c3:c1:34 dst_mac 02:74:35:bc:c0:56 src_ip 117.239.15.50 dst_ip 70.209.0.207 ip_proto tcp src_port 56431 dst_port 34425 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11177 flower src_mac 02:10:a1:0e:0e:c4 dst_mac 02:0a:8c:31:97:09 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11178 flower src_mac 02:1d:3b:a4:76:c6 dst_mac 02:f4:2c:63:39:30 vlan_id 287 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol ip pref 11179 flower src_mac 02:f1:c9:02:da:85 dst_mac 02:79:43:50:aa:7d src_ip 105.23.16.39 dst_ip 47.183.127.90 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11180 flower src_mac 02:67:f1:0e:ad:04 dst_mac 02:d2:77:95:fa:0f action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11181 flower src_mac 02:fe:3d:2d:28:d3 dst_mac 02:8d:69:31:df:d8 vlan_id 2993 vlan_ethtype 0x0800 src_ip 93.196.173.176 dst_ip 54.133.101.103 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11182 flower src_mac 02:27:98:89:78:41 dst_mac 02:4d:d6:77:b4:7a vlan_id 2040 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11183 flower src_mac 02:d3:40:f8:04:f9 dst_mac 02:88:21:5c:52:a0 vlan_id 3339 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11184 flower src_mac 02:c0:2d:b3:9a:f5 dst_mac 02:0d:bf:e0:73:88 vlan_id 3625 vlan_ethtype ipv4 src_ip 35.137.9.9 dst_ip 62.23.43.105 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11185 flower src_mac 02:7d:8c:85:87:e3 dst_mac 02:e4:c1:6a:6a:10 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11186 flower src_mac 02:ea:89:2e:19:e8 dst_mac 02:d2:7c:f8:fa:78 vlan_id 2138 vlan_ethtype ip src_ip 66.242.150.209 dst_ip 96.123.228.111 ip_proto tcp src_port 57546 dst_port 13552 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11187 flower src_mac 02:9d:e6:2a:60:0a dst_mac 02:4a:08:01:83:24 src_ip 97.117.93.185 dst_ip 107.54.254.97 ip_proto tcp src_port 18330 dst_port 21870 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11188 flower src_mac 02:d9:db:f3:64:aa dst_mac 02:69:2b:81:da:bb src_ip 59.194.73.90 dst_ip 71.84.204.208 ip_proto udp src_port 62247 dst_port 25049 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11189 flower src_mac 02:dd:44:ca:ea:27 dst_mac 02:da:26:14:de:01 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11190 flower src_mac 02:c8:59:00:80:31 dst_mac 02:b7:b3:47:4f:e4 vlan_id 3227 vlan_ethtype ipv4 src_ip 54.26.45.230 dst_ip 19.203.190.242 ip_proto udp src_port 27086 dst_port 24372 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11191 flower src_mac 02:71:d1:7c:f1:77 dst_mac 02:ee:3a:75:46:99 src_ip 74.129.199.135 dst_ip 42.183.184.112 ip_proto tcp src_port 10642 dst_port 54047 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11192 flower src_mac 02:8f:8e:ae:04:66 dst_mac 02:c1:93:49:47:6d action trap && tc filter add dev swp33 ingress protocol ip pref 11193 flower src_mac 02:cf:0a:c7:c7:7e dst_mac 02:d0:7c:60:b1:65 src_ip 121.239.10.45 dst_ip 113.108.152.71 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11194 flower src_mac 02:47:17:bb:dc:a4 dst_mac 02:8e:08:ce:a9:de vlan_id 215 vlan_ethtype ipv4 src_ip 78.95.117.233 dst_ip 87.232.82.133 ip_proto udp src_port 58363 dst_port 20811 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11195 flower src_mac 02:a0:24:ad:5a:76 dst_mac 02:4b:34:bb:48:0a vlan_id 422 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11196 flower src_mac 02:89:41:12:5f:2a dst_mac 02:64:bc:21:5c:17 vlan_id 614 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11197 flower src_mac 02:95:ff:3f:98:93 dst_mac 02:74:cc:07:08:29 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11198 flower src_mac 02:bd:50:81:55:64 dst_mac 02:43:38:d1:1b:0e vlan_id 2752 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11199 flower src_mac 02:9b:67:d1:e0:c6 dst_mac 02:92:cd:77:6a:36 vlan_id 2960 vlan_ethtype ipv4 src_ip 90.123.244.107 dst_ip 90.18.147.28 action trap INFO asyncssh:logging.py:92 [conn=24, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=24, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=9] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol 802.1q pref 11200 flower src_mac 02:7e:f0:9c:33:0c dst_mac 02:44:28:14:4e:7d vlan_id 1795 vlan_ethtype 0x0800 src_ip 82.179.113.125 dst_ip 33.235.246.174 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11201 flower src_mac 02:a3:02:63:58:de dst_mac 02:6a:b6:b3:6d:52 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11202 flower src_mac 02:37:53:a7:fc:91 dst_mac 02:ad:ab:0c:5e:b3 src_ip 116.116.200.153 dst_ip 118.154.196.181 ip_proto udp src_port 31985 dst_port 59798 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11203 flower src_mac 02:3d:e3:fd:f9:4b dst_mac 02:3e:9e:83:95:08 vlan_id 1165 vlan_ethtype ipv4 src_ip 55.0.155.88 dst_ip 79.99.95.6 ip_proto udp src_port 24544 dst_port 63430 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11204 flower src_mac 02:72:b5:81:ee:c1 dst_mac 02:89:db:7c:a6:b7 src_ip 76.110.198.62 dst_ip 39.79.211.133 ip_proto icmp code 25 type 4 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11205 flower src_mac 02:1f:e4:30:d5:50 dst_mac 02:29:5f:19:13:06 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11206 flower src_mac 02:cb:bf:4c:f9:51 dst_mac 02:96:51:46:33:7c vlan_id 1110 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11207 flower src_mac 02:e2:f3:00:c6:91 dst_mac 02:04:f8:b8:5c:41 vlan_id 2095 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 11208 flower src_mac 02:f0:d5:f5:bf:2a dst_mac 02:7e:ec:20:75:29 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11209 flower src_mac 02:35:e1:fe:d4:c9 dst_mac 02:08:09:5d:ff:38 vlan_id 249 vlan_ethtype 0x0800 src_ip 12.194.121.85 dst_ip 70.135.250.213 ip_proto udp src_port 31805 dst_port 8476 action trap && tc filter add dev swp33 ingress protocol ip pref 11210 flower src_mac 02:a3:15:1c:9c:26 dst_mac 02:45:e9:9b:33:ae src_ip 46.186.20.107 dst_ip 30.158.199.5 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11211 flower src_mac 02:aa:ec:53:71:39 dst_mac 02:95:19:ae:d3:55 vlan_id 1664 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11212 flower src_mac 02:b0:67:26:ed:d7 dst_mac 02:ce:08:44:f4:61 vlan_id 2505 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11213 flower src_mac 02:40:3d:39:18:73 dst_mac 02:b6:d2:f0:ac:f1 vlan_id 2486 vlan_ethtype ipv4 src_ip 31.21.252.223 dst_ip 122.35.72.184 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11214 flower src_mac 02:d6:ac:b1:4e:de dst_mac 02:b0:8e:fa:03:cb action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11215 flower src_mac 02:2c:11:f1:1c:ee dst_mac 02:4b:5c:94:6e:88 vlan_id 2653 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11216 flower src_mac 02:a5:bc:af:75:53 dst_mac 02:78:e5:0a:29:61 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11217 flower src_mac 02:6b:32:0b:16:ae dst_mac 02:d2:44:92:ba:86 vlan_id 3164 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11218 flower src_mac 02:e8:a0:a2:b7:6c dst_mac 02:0c:f4:95:de:0a action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11219 flower src_mac 02:43:31:53:e3:9e dst_mac 02:3d:48:49:a2:8d src_ip 50.216.236.62 dst_ip 103.154.193.146 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11220 flower src_mac 02:99:2c:f6:01:03 dst_mac 02:a9:3d:c2:c8:02 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11221 flower src_mac 02:f7:b1:14:7e:7d dst_mac 02:ff:35:e0:cb:df vlan_id 1472 vlan_ethtype ip src_ip 67.129.236.45 dst_ip 61.251.127.19 ip_proto tcp src_port 59420 dst_port 13417 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11222 flower src_mac 02:c3:f5:5c:6d:0d dst_mac 02:ce:36:f7:f0:91 src_ip 31.106.86.127 dst_ip 71.57.11.244 ip_proto icmp code 235 type 8 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11223 flower src_mac 02:94:04:06:34:62 dst_mac 02:87:fe:22:45:d5 vlan_id 3142 vlan_ethtype ip src_ip 101.216.104.174 dst_ip 58.154.172.41 ip_proto udp src_port 56258 dst_port 12304 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11224 flower src_mac 02:ef:1d:ff:f0:cf dst_mac 02:58:75:55:7e:b0 src_ip 101.212.228.43 dst_ip 18.235.242.199 ip_proto tcp src_port 13925 dst_port 41471 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11225 flower src_mac 02:c9:51:a3:ad:4d dst_mac 02:15:57:5d:9f:c4 vlan_id 3884 vlan_ethtype 0x0800 src_ip 76.53.65.39 dst_ip 103.218.154.71 ip_proto tcp src_port 47050 dst_port 63976 action drop && tc filter add dev swp33 ingress protocol ip pref 11226 flower src_mac 02:cd:39:88:69:58 dst_mac 02:99:61:d7:60:b6 src_ip 87.126.68.15 dst_ip 107.250.180.246 ip_proto tcp src_port 32726 dst_port 26555 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11227 flower src_mac 02:82:30:16:1c:3b dst_mac 02:70:2a:60:48:b1 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11228 flower src_mac 02:f8:c6:67:fa:08 dst_mac 02:c4:a0:2a:49:97 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11229 flower src_mac 02:26:fe:60:64:55 dst_mac 02:bb:f2:56:74:07 src_ip 89.13.163.181 dst_ip 109.58.94.38 ip_proto tcp src_port 31990 dst_port 12666 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11230 flower src_mac 02:e3:c8:46:02:2c dst_mac 02:21:b4:5c:4f:02 src_ip 96.120.247.89 dst_ip 106.133.234.41 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11231 flower src_mac 02:08:3e:85:49:30 dst_mac 02:78:e2:c2:24:f7 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11232 flower src_mac 02:d0:5d:4a:0e:78 dst_mac 02:95:23:9b:ee:4a action pass && tc filter add dev swp33 ingress protocol ip pref 11233 flower src_mac 02:b0:db:9e:2a:ea dst_mac 02:bf:df:6d:54:07 src_ip 102.159.84.14 dst_ip 101.212.32.223 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11234 flower src_mac 02:e5:96:18:e1:7d dst_mac 02:20:a1:0e:c7:72 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11235 flower src_mac 02:ee:5c:16:75:9d dst_mac 02:3b:76:13:9a:ed src_ip 45.49.47.148 dst_ip 112.81.51.6 ip_proto icmp code 201 type 12 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11236 flower src_mac 02:6f:7f:a1:18:77 dst_mac 02:34:cc:f8:b5:97 vlan_id 2120 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11237 flower src_mac 02:14:9c:26:d2:8e dst_mac 02:4f:92:fc:13:ac action pass && tc filter add dev swp33 ingress protocol ip pref 11238 flower src_mac 02:eb:fc:c7:ff:14 dst_mac 02:b2:d1:d5:1d:92 src_ip 11.146.207.210 dst_ip 76.34.182.97 ip_proto icmp code 223 type 15 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11239 flower src_mac 02:9f:5f:95:f5:bf dst_mac 02:11:7d:98:8e:98 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11240 flower src_mac 02:ce:3d:2f:82:b8 dst_mac 02:2e:f1:eb:fd:fb vlan_id 2733 vlan_ethtype 0x0800 src_ip 125.245.186.220 dst_ip 64.33.36.115 ip_proto tcp src_port 55171 dst_port 12197 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11241 flower src_mac 02:bd:46:7e:99:00 dst_mac 02:0b:99:a7:18:30 src_ip 69.20.133.47 dst_ip 72.94.218.22 ip_proto udp src_port 45342 dst_port 51739 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11242 flower src_mac 02:49:c1:93:c7:b8 dst_mac 02:81:90:dd:d0:95 vlan_id 3247 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11243 flower src_mac 02:7b:41:c7:65:48 dst_mac 02:40:ab:e5:6a:98 vlan_id 2730 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11244 flower src_mac 02:ef:43:4d:2c:c4 dst_mac 02:c8:db:ed:47:71 vlan_id 1583 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 11245 flower src_mac 02:d1:2e:b8:f7:a8 dst_mac 02:e1:a5:61:9b:90 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11246 flower src_mac 02:f8:9f:58:45:d3 dst_mac 02:d3:c1:7a:4a:8c src_ip 56.153.118.227 dst_ip 78.194.214.84 ip_proto udp src_port 50565 dst_port 35828 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11247 flower src_mac 02:7d:6a:8c:cd:78 dst_mac 02:73:07:5d:dc:79 vlan_id 3997 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 11248 flower src_mac 02:72:51:fa:81:2a dst_mac 02:53:83:5b:7a:1c action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11249 flower src_mac 02:44:e4:fe:30:25 dst_mac 02:6d:fd:38:3b:1f vlan_id 182 vlan_ethtype ip src_ip 66.132.163.165 dst_ip 99.161.18.224 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11250 flower src_mac 02:73:db:aa:55:65 dst_mac 02:e2:02:58:a0:e0 src_ip 54.218.19.118 dst_ip 55.224.142.85 ip_proto udp src_port 12810 dst_port 4175 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11251 flower src_mac 02:60:9a:fc:78:e9 dst_mac 02:9c:6f:6b:76:7a src_ip 27.45.76.234 dst_ip 89.2.25.152 ip_proto tcp src_port 6860 dst_port 11343 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11252 flower src_mac 02:dc:ce:5e:c6:ba dst_mac 02:b9:17:5d:37:e7 src_ip 125.110.159.183 dst_ip 76.239.86.79 ip_proto tcp src_port 10788 dst_port 22422 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11253 flower src_mac 02:7c:6e:74:75:ef dst_mac 02:4d:a6:75:70:fe action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11254 flower src_mac 02:fa:cf:03:17:24 dst_mac 02:70:dc:a9:58:11 action trap && tc filter add dev swp33 ingress protocol ip pref 11255 flower src_mac 02:37:2f:f0:95:6e dst_mac 02:ef:03:f8:e6:b0 src_ip 100.168.141.218 dst_ip 33.190.100.205 ip_proto icmp code 15 type 4 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11256 flower src_mac 02:63:30:1b:e8:d5 dst_mac 02:bf:d1:c9:28:cd vlan_id 3045 vlan_ethtype ipv4 src_ip 50.148.95.127 dst_ip 54.43.199.76 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11257 flower src_mac 02:c6:be:f6:59:cc dst_mac 02:c8:aa:c1:59:a7 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11258 flower src_mac 02:7e:6d:d9:2f:1e dst_mac 02:b1:85:df:db:84 src_ip 15.98.114.16 dst_ip 124.186.93.158 ip_proto udp src_port 47047 dst_port 2068 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11259 flower src_mac 02:2d:8b:42:de:19 dst_mac 02:62:38:a7:68:b7 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11260 flower src_mac 02:7a:77:68:15:66 dst_mac 02:5a:b8:28:6a:5e action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11261 flower src_mac 02:dd:7e:32:e3:88 dst_mac 02:93:0e:33:ab:1c vlan_id 1787 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11262 flower src_mac 02:35:61:a0:66:db dst_mac 02:19:40:97:89:df action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11263 flower src_mac 02:8c:15:14:8c:32 dst_mac 02:c3:87:f7:7b:c7 src_ip 66.155.15.8 dst_ip 109.244.158.125 ip_proto udp src_port 32607 dst_port 2119 action trap && tc filter add dev swp33 ingress protocol ip pref 11264 flower src_mac 02:57:4f:22:6b:cb dst_mac 02:8a:61:4d:98:80 src_ip 63.181.91.205 dst_ip 75.241.147.18 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11265 flower src_mac 02:b6:b5:e0:73:50 dst_mac 02:82:66:e4:c4:59 vlan_id 3622 vlan_ethtype ipv4 src_ip 47.225.233.78 dst_ip 31.44.123.40 ip_proto udp src_port 292 dst_port 9963 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11266 flower src_mac 02:48:fc:5c:51:89 dst_mac 02:8c:bd:fa:e1:c9 src_ip 42.78.156.205 dst_ip 73.60.120.43 ip_proto tcp src_port 56701 dst_port 48993 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11267 flower src_mac 02:08:3c:b4:35:01 dst_mac 02:3a:2c:06:10:63 vlan_id 3323 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11268 flower src_mac 02:8e:74:ed:49:98 dst_mac 02:7c:1d:52:51:74 vlan_id 506 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11269 flower src_mac 02:2b:2b:b5:10:39 dst_mac 02:7f:7f:91:5d:33 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11270 flower src_mac 02:8d:1a:2c:5a:ff dst_mac 02:ca:42:b6:52:ca vlan_id 2525 vlan_ethtype 0x0800 src_ip 14.148.51.65 dst_ip 81.227.16.205 ip_proto tcp src_port 41025 dst_port 54151 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11271 flower src_mac 02:44:2c:aa:c0:34 dst_mac 02:da:b2:68:71:7e action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 11272 flower src_mac 02:0c:3b:92:f9:78 dst_mac 02:43:b4:77:51:f6 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11273 flower src_mac 02:8e:81:0b:60:f7 dst_mac 02:5a:b7:41:71:b0 vlan_id 999 vlan_ethtype 0x0800 src_ip 82.87.234.229 dst_ip 108.65.15.2 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11274 flower src_mac 02:da:c1:8d:99:be dst_mac 02:e7:ed:24:9c:64 vlan_id 3489 vlan_ethtype ipv4 src_ip 90.173.182.50 dst_ip 112.148.230.224 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11275 flower src_mac 02:27:8e:cb:0f:aa dst_mac 02:80:ae:9c:4d:d5 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11276 flower src_mac 02:34:f3:bf:3c:04 dst_mac 02:25:1e:3b:4d:13 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11277 flower src_mac 02:8f:59:59:ab:7d dst_mac 02:21:ae:df:0f:ed vlan_id 262 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11278 flower src_mac 02:ac:5c:18:86:6b dst_mac 02:49:c3:4b:ca:04 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11279 flower src_mac 02:cf:7a:37:d0:73 dst_mac 02:48:35:15:80:e7 vlan_id 3982 vlan_ethtype ipv4 src_ip 73.101.122.71 dst_ip 68.131.25.14 ip_proto udp src_port 36451 dst_port 27473 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11280 flower src_mac 02:22:e1:6c:74:e8 dst_mac 02:5c:a1:6e:d7:b2 src_ip 25.238.127.126 dst_ip 56.206.143.247 ip_proto udp src_port 40680 dst_port 28408 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11281 flower src_mac 02:9d:db:dc:2b:61 dst_mac 02:1b:5e:88:2d:29 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11282 flower src_mac 02:fe:2c:33:3e:b3 dst_mac 02:97:7d:ef:e4:e4 vlan_id 2531 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11283 flower src_mac 02:31:c8:12:b3:08 dst_mac 02:76:4b:4d:66:a6 vlan_id 1847 vlan_ethtype ipv4 src_ip 66.184.32.18 dst_ip 124.24.208.46 ip_proto tcp src_port 16888 dst_port 12790 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11284 flower src_mac 02:bc:f3:ee:ea:03 dst_mac 02:58:09:ba:e3:be action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11285 flower src_mac 02:d7:b0:f9:b9:75 dst_mac 02:3a:7f:89:6c:16 vlan_id 1298 vlan_ethtype ipv4 src_ip 67.163.32.38 dst_ip 101.182.46.74 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11286 flower src_mac 02:5e:7e:0e:a7:0c dst_mac 02:40:88:70:90:2a vlan_id 3077 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11287 flower src_mac 02:e9:a0:16:3f:6d dst_mac 02:c9:0c:46:2f:7a vlan_id 3452 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11288 flower src_mac 02:4d:a1:58:81:a7 dst_mac 02:2a:cd:cc:41:2c src_ip 22.135.95.18 dst_ip 37.56.240.188 ip_proto icmp code 52 type 8 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11289 flower src_mac 02:6a:ac:da:ca:b6 dst_mac 02:2b:0c:a2:b5:64 vlan_id 31 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11290 flower src_mac 02:21:1b:8c:f5:4d dst_mac 02:64:b6:f0:91:d3 src_ip 69.120.68.28 dst_ip 59.115.44.116 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11291 flower src_mac 02:f7:44:3f:04:cd dst_mac 02:4a:c5:14:5f:be vlan_id 3975 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11292 flower src_mac 02:07:93:36:b6:ee dst_mac 02:b3:eb:6e:23:6b vlan_id 3631 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11293 flower src_mac 02:1f:24:c4:be:31 dst_mac 02:77:32:69:0e:77 vlan_id 957 vlan_ethtype ip src_ip 101.110.100.70 dst_ip 82.190.219.168 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11294 flower src_mac 02:96:e7:44:79:08 dst_mac 02:a7:0e:52:ab:1c action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11295 flower src_mac 02:54:98:40:0d:8d dst_mac 02:a0:39:55:5c:73 vlan_id 1189 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11296 flower src_mac 02:42:c3:72:04:6f dst_mac 02:0d:fd:45:97:dd action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11297 flower src_mac 02:71:4c:71:c6:f5 dst_mac 02:6a:f8:a1:6b:ef vlan_id 2567 vlan_ethtype ipv4 src_ip 118.195.160.234 dst_ip 117.221.121.63 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11298 flower src_mac 02:25:20:70:bd:fe dst_mac 02:b2:e9:2a:d4:4f action pass && tc filter add dev swp33 ingress protocol ip pref 11299 flower src_mac 02:c7:1f:7f:c6:7b dst_mac 02:57:50:fa:1a:2d src_ip 13.249.118.190 dst_ip 64.106.58.89 ip_proto udp src_port 697 dst_port 48966 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11300 flower src_mac 02:3e:ff:30:fb:61 dst_mac 02:e3:22:3e:d4:cf src_ip 96.8.42.240 dst_ip 74.251.17.64 ip_proto udp src_port 25302 dst_port 25149 action trap && tc filter add dev swp33 ingress protocol ip pref 11301 flower src_mac 02:46:89:96:7c:fc dst_mac 02:ce:f3:79:1a:67 src_ip 108.109.17.74 dst_ip 106.91.184.182 ip_proto udp src_port 47423 dst_port 27038 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11302 flower src_mac 02:d2:61:90:c9:c8 dst_mac 02:e8:71:95:d5:82 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11303 flower src_mac 02:f8:2a:13:3d:f7 dst_mac 02:87:3d:6a:2e:7a src_ip 38.202.151.97 dst_ip 115.10.11.163 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11304 flower src_mac 02:ea:22:42:b2:22 dst_mac 02:69:64:a6:6f:f7 vlan_id 786 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11305 flower src_mac 02:6e:10:67:f3:1a dst_mac 02:ff:8d:7a:f7:bb vlan_id 3254 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol ip pref 11306 flower src_mac 02:24:99:02:8d:d9 dst_mac 02:85:38:4a:e6:08 src_ip 18.108.254.199 dst_ip 86.63.49.217 ip_proto icmp code 109 type 3 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11307 flower src_mac 02:82:8b:9b:ff:74 dst_mac 02:46:a1:53:0c:13 vlan_id 3288 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11308 flower src_mac 02:54:97:4c:98:73 dst_mac 02:38:87:ff:20:6a src_ip 19.20.88.103 dst_ip 43.80.45.248 action drop && tc filter add dev swp33 ingress protocol ip pref 11309 flower src_mac 02:13:a9:36:bc:7a dst_mac 02:3e:e6:25:32:98 src_ip 104.123.200.44 dst_ip 68.153.106.206 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11310 flower src_mac 02:16:f9:67:ee:75 dst_mac 02:23:44:d7:0e:94 vlan_id 4051 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11311 flower src_mac 02:76:b2:8b:43:46 dst_mac 02:b4:48:26:e2:0e action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11312 flower src_mac 02:90:f0:ef:4e:3e dst_mac 02:7f:8c:20:ad:43 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11313 flower src_mac 02:7b:74:09:8a:ba dst_mac 02:76:84:1a:42:8b vlan_id 2192 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11314 flower src_mac 02:80:76:5c:b8:2d dst_mac 02:1d:60:70:d6:a8 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 11315 flower src_mac 02:ff:a1:c9:a4:84 dst_mac 02:8a:7b:22:92:94 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11316 flower src_mac 02:ac:b8:ce:8d:c4 dst_mac 02:39:1b:2f:90:13 vlan_id 3373 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11317 flower src_mac 02:e2:c3:5e:a4:17 dst_mac 02:97:d8:1e:80:1b src_ip 57.177.59.192 dst_ip 42.178.84.224 ip_proto udp src_port 2329 dst_port 2978 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11318 flower src_mac 02:c9:1d:9e:58:07 dst_mac 02:76:80:ae:97:84 vlan_id 454 vlan_ethtype ipv4 src_ip 65.199.199.219 dst_ip 22.1.203.206 ip_proto udp src_port 63236 dst_port 20850 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11319 flower src_mac 02:ec:99:55:66:05 dst_mac 02:7e:75:3e:9e:62 vlan_id 1706 vlan_ethtype ipv4 src_ip 20.221.251.59 dst_ip 67.111.187.151 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11320 flower src_mac 02:b2:44:36:44:cc dst_mac 02:83:8b:80:77:cb vlan_id 1438 vlan_ethtype ip src_ip 38.179.81.68 dst_ip 109.184.189.87 ip_proto tcp src_port 27748 dst_port 49200 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11321 flower src_mac 02:2a:59:60:39:65 dst_mac 02:ca:9d:b6:56:8c vlan_id 2058 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11322 flower src_mac 02:eb:b0:e7:bb:65 dst_mac 02:2d:3f:73:80:56 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11323 flower src_mac 02:63:74:6f:03:0b dst_mac 02:f8:8a:08:a4:96 vlan_id 1901 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 11324 flower src_mac 02:ae:51:77:52:fc dst_mac 02:82:ef:d1:5c:54 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11325 flower src_mac 02:05:2b:3b:a4:9f dst_mac 02:27:73:6b:b8:97 vlan_id 1742 vlan_ethtype 0x0800 src_ip 26.3.116.224 dst_ip 18.196.48.202 ip_proto udp src_port 12578 dst_port 26040 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11326 flower src_mac 02:3a:bd:b8:87:94 dst_mac 02:f8:d2:66:4d:d9 vlan_id 786 vlan_ethtype ipv4 src_ip 39.175.164.14 dst_ip 42.85.152.65 ip_proto tcp src_port 4439 dst_port 20304 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11327 flower src_mac 02:29:1d:c3:d9:0b dst_mac 02:32:6c:7e:a5:00 src_ip 62.141.37.50 dst_ip 115.0.43.122 ip_proto udp src_port 23503 dst_port 3851 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11328 flower src_mac 02:be:97:f8:09:ab dst_mac 02:f3:d7:d8:a9:4e vlan_id 962 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11329 flower src_mac 02:ce:d3:68:ce:10 dst_mac 02:8c:c8:b7:f5:e2 vlan_id 788 vlan_ethtype 0x0800 src_ip 79.12.212.210 dst_ip 98.216.13.96 ip_proto udp src_port 30334 dst_port 27316 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11330 flower src_mac 02:83:7f:11:cb:ba dst_mac 02:2e:43:32:e2:7a action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11331 flower src_mac 02:68:1f:d9:10:8d dst_mac 02:8c:8a:39:f8:26 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11332 flower src_mac 02:a1:85:c7:70:d4 dst_mac 02:81:28:ba:59:6d vlan_id 1860 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol ip pref 11333 flower src_mac 02:d3:14:f5:f9:75 dst_mac 02:67:06:f7:ba:e4 src_ip 87.94.222.98 dst_ip 51.194.115.77 ip_proto icmp code 165 type 11 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11334 flower src_mac 02:e7:d7:b4:f4:57 dst_mac 02:ba:05:3b:50:05 vlan_id 79 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11335 flower src_mac 02:d4:11:5f:28:3f dst_mac 02:37:77:df:97:17 src_ip 35.156.246.46 dst_ip 94.81.178.231 ip_proto icmp code 195 type 12 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11336 flower src_mac 02:79:7e:54:42:4f dst_mac 02:0d:b4:65:18:c3 vlan_id 3316 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11337 flower src_mac 02:a9:b1:1b:ad:19 dst_mac 02:c3:a2:af:93:c6 src_ip 56.129.107.143 dst_ip 41.24.196.158 ip_proto icmp code 78 type 14 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11338 flower src_mac 02:29:ff:58:1e:76 dst_mac 02:8e:af:39:01:87 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11339 flower src_mac 02:3b:a7:9a:14:31 dst_mac 02:08:95:c4:f4:02 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11340 flower src_mac 02:8b:36:ec:d7:3c dst_mac 02:98:44:97:2f:74 vlan_id 1059 vlan_ethtype ip src_ip 33.174.180.221 dst_ip 85.99.75.229 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11341 flower src_mac 02:aa:c9:ff:1a:b5 dst_mac 02:c8:c9:44:d3:52 vlan_id 1972 vlan_ethtype ip src_ip 103.115.34.72 dst_ip 53.30.136.97 ip_proto udp src_port 25658 dst_port 8206 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11342 flower src_mac 02:8b:9e:73:ff:d7 dst_mac 02:20:98:10:41:ba action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11343 flower src_mac 02:c3:5c:00:00:59 dst_mac 02:86:f9:19:7c:8f vlan_id 1904 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11344 flower src_mac 02:e5:9e:48:16:36 dst_mac 02:e7:05:21:95:29 vlan_id 1424 vlan_ethtype ipv4 src_ip 112.99.207.81 dst_ip 118.70.41.10 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11345 flower src_mac 02:55:10:5b:60:d9 dst_mac 02:2f:0f:1c:54:8c vlan_id 2600 vlan_ethtype ipv4 src_ip 91.187.1.54 dst_ip 94.105.254.124 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11346 flower src_mac 02:ec:d2:62:df:7b dst_mac 02:11:ff:0a:95:99 vlan_id 1921 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11347 flower src_mac 02:89:a6:ae:e5:ad dst_mac 02:57:f6:9a:52:a0 vlan_id 815 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11348 flower src_mac 02:e2:8a:a1:03:59 dst_mac 02:55:89:ab:22:fe action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11349 flower src_mac 02:8e:53:df:a5:6f dst_mac 02:95:d9:e3:ad:11 vlan_id 285 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11350 flower src_mac 02:75:76:a4:82:2d dst_mac 02:4e:0b:d9:f2:81 vlan_id 2426 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11351 flower src_mac 02:ef:1c:e6:c6:38 dst_mac 02:8f:59:e4:7c:60 vlan_id 2580 vlan_ethtype ipv4 src_ip 68.235.191.204 dst_ip 69.48.114.80 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11352 flower src_mac 02:9c:9f:9b:71:13 dst_mac 02:af:48:ce:fb:4e vlan_id 2899 vlan_ethtype ip src_ip 53.217.136.106 dst_ip 62.192.128.108 ip_proto tcp src_port 25503 dst_port 31643 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11353 flower src_mac 02:5a:0b:38:2d:5b dst_mac 02:2e:b7:8e:fc:ea vlan_id 1243 vlan_ethtype ipv4 src_ip 102.244.33.207 dst_ip 30.94.91.223 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11354 flower src_mac 02:ae:c3:e5:d1:6e dst_mac 02:4f:8c:7a:39:05 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11355 flower src_mac 02:08:f1:33:a4:bb dst_mac 02:d7:db:af:f2:6e vlan_id 3900 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11356 flower src_mac 02:56:82:b5:e9:5e dst_mac 02:13:07:bd:c1:32 vlan_id 759 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11357 flower src_mac 02:63:02:b9:ad:e4 dst_mac 02:71:f6:a1:ea:b3 vlan_id 1984 vlan_ethtype ipv4 src_ip 125.33.54.236 dst_ip 27.86.82.183 action drop && tc filter add dev swp33 ingress protocol ip pref 11358 flower src_mac 02:ba:66:ca:30:5a dst_mac 02:76:d0:c5:c5:b0 src_ip 12.75.165.159 dst_ip 105.24.203.193 ip_proto icmp code 159 type 18 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11359 flower src_mac 02:a9:a1:01:5e:52 dst_mac 02:b6:1f:ae:33:22 vlan_id 4072 vlan_ethtype 0x0800 src_ip 54.135.218.105 dst_ip 115.27.68.53 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11360 flower src_mac 02:8c:d1:cb:bb:b0 dst_mac 02:8f:d3:2c:79:8e vlan_id 993 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11361 flower src_mac 02:d7:e7:4a:3c:22 dst_mac 02:32:44:03:60:f9 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11362 flower src_mac 02:1a:3b:c0:a5:aa dst_mac 02:5a:ea:bf:5e:dd action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 11363 flower src_mac 02:cc:a6:db:2a:b4 dst_mac 02:59:77:a7:78:c9 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11364 flower src_mac 02:32:3f:05:a5:8b dst_mac 02:5e:1f:22:e5:e5 src_ip 106.100.160.156 dst_ip 55.249.243.160 ip_proto udp src_port 60292 dst_port 19343 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11365 flower src_mac 02:92:69:d3:b2:09 dst_mac 02:af:35:e4:22:de src_ip 105.133.232.153 dst_ip 38.41.193.220 ip_proto udp src_port 13738 dst_port 48397 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11366 flower src_mac 02:5d:cb:07:0a:92 dst_mac 02:1b:8a:9c:75:db src_ip 41.222.74.153 dst_ip 70.157.172.71 ip_proto tcp src_port 62625 dst_port 4787 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11367 flower src_mac 02:63:f3:99:32:b0 dst_mac 02:dc:94:b6:a0:68 vlan_id 3798 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11368 flower src_mac 02:30:ff:39:c2:69 dst_mac 02:67:eb:b1:42:f1 vlan_id 2497 vlan_ethtype 0x0800 src_ip 29.157.210.7 dst_ip 27.138.40.130 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11369 flower src_mac 02:06:df:b3:aa:61 dst_mac 02:36:38:01:a4:1f vlan_id 2694 vlan_ethtype ip src_ip 104.95.130.141 dst_ip 49.99.78.3 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11370 flower src_mac 02:80:32:a7:81:2b dst_mac 02:5d:56:17:09:43 vlan_id 1629 vlan_ethtype ip src_ip 31.92.146.225 dst_ip 53.238.8.12 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11371 flower src_mac 02:b6:bb:26:48:fa dst_mac 02:3a:05:66:cd:94 src_ip 66.140.223.13 dst_ip 36.51.42.65 ip_proto udp src_port 7170 dst_port 49652 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11372 flower src_mac 02:77:5e:8b:9a:12 dst_mac 02:0f:82:40:a6:df vlan_id 891 vlan_ethtype ipv4 src_ip 60.125.218.157 dst_ip 53.206.29.32 ip_proto tcp src_port 61866 dst_port 31947 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11373 flower src_mac 02:01:d3:d9:30:d2 dst_mac 02:3d:d0:b6:44:90 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11374 flower src_mac 02:ba:97:06:2d:24 dst_mac 02:ec:22:8d:eb:e8 vlan_id 10 vlan_ethtype ip src_ip 114.249.113.212 dst_ip 38.165.49.136 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11375 flower src_mac 02:ec:ab:8c:e1:d8 dst_mac 02:1e:2c:fc:10:03 src_ip 49.245.13.209 dst_ip 92.231.129.116 ip_proto udp src_port 5999 dst_port 44001 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11376 flower src_mac 02:16:f0:1d:a1:e8 dst_mac 02:4d:12:f7:2e:b3 vlan_id 133 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11377 flower src_mac 02:b5:72:74:e4:1b dst_mac 02:f1:c4:72:29:c2 vlan_id 1299 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11378 flower src_mac 02:2d:43:6d:aa:95 dst_mac 02:b1:3f:d3:12:f6 src_ip 21.172.37.141 dst_ip 20.14.35.125 ip_proto icmp code 97 type 12 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11379 flower src_mac 02:15:6b:5c:c1:67 dst_mac 02:5f:ee:3a:59:9b src_ip 73.133.86.202 dst_ip 23.200.172.150 ip_proto udp src_port 53037 dst_port 33211 action trap && tc filter add dev swp33 ingress protocol ip pref 11380 flower src_mac 02:46:99:fd:d0:c9 dst_mac 02:51:ed:38:f8:a4 src_ip 15.242.124.105 dst_ip 85.29.234.55 ip_proto udp src_port 47219 dst_port 42757 action drop && tc filter add dev swp33 ingress protocol ip pref 11381 flower src_mac 02:9b:13:72:ed:58 dst_mac 02:b9:9b:46:88:22 src_ip 119.30.65.103 dst_ip 51.121.31.91 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11382 flower src_mac 02:ff:05:61:a9:a4 dst_mac 02:e5:d9:81:d6:6d vlan_id 3662 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11383 flower src_mac 02:e7:64:42:8e:68 dst_mac 02:42:6b:61:94:4d action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11384 flower src_mac 02:ff:a2:eb:c0:92 dst_mac 02:ea:3c:24:75:ed action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11385 flower src_mac 02:82:2c:9c:9d:7f dst_mac 02:e5:bf:ad:4a:35 vlan_id 3804 vlan_ethtype ipv4 src_ip 64.119.12.64 dst_ip 122.178.108.18 ip_proto tcp src_port 28341 dst_port 14291 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11386 flower src_mac 02:48:1d:28:44:fd dst_mac 02:44:2f:44:e6:ff action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11387 flower src_mac 02:f2:22:38:fc:a5 dst_mac 02:57:5b:e9:c4:51 vlan_id 3882 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11388 flower src_mac 02:8b:a6:13:52:c7 dst_mac 02:0b:78:c0:e0:eb src_ip 117.115.225.217 dst_ip 90.75.6.60 ip_proto tcp src_port 20972 dst_port 56070 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11389 flower src_mac 02:a3:5e:4c:f5:8d dst_mac 02:87:8a:71:a2:c2 vlan_id 442 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11390 flower src_mac 02:1c:05:9b:38:95 dst_mac 02:39:d1:7a:5b:e1 src_ip 100.8.88.188 dst_ip 68.235.145.68 ip_proto icmp code 99 type 0 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11391 flower src_mac 02:05:f7:f7:3a:77 dst_mac 02:59:6e:a8:50:0c src_ip 91.122.179.78 dst_ip 34.244.172.223 ip_proto udp src_port 51111 dst_port 55717 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11392 flower src_mac 02:d2:73:86:62:63 dst_mac 02:c5:c8:9b:55:8a vlan_id 369 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11393 flower src_mac 02:e9:0c:cc:fc:84 dst_mac 02:55:04:ac:dd:4d action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11394 flower src_mac 02:42:d5:e0:5a:f5 dst_mac 02:50:3d:20:b4:d2 vlan_id 1304 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11395 flower src_mac 02:e1:f0:9c:e7:e6 dst_mac 02:59:2c:64:7d:8e action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11396 flower src_mac 02:0e:bf:09:bb:81 dst_mac 02:f4:2b:7f:ad:c4 vlan_id 1423 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11397 flower src_mac 02:9b:67:1a:cf:68 dst_mac 02:a7:33:0e:6c:ac vlan_id 290 vlan_ethtype ip src_ip 63.158.20.86 dst_ip 42.240.30.197 ip_proto udp src_port 64220 dst_port 15769 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11398 flower src_mac 02:c6:77:32:fa:0e dst_mac 02:87:0b:85:c1:d2 action trap && tc filter add dev swp33 ingress protocol ip pref 11399 flower src_mac 02:bd:3a:10:3a:76 dst_mac 02:7b:d6:67:85:87 src_ip 19.118.149.199 dst_ip 95.117.24.109 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11400 flower src_mac 02:8c:c0:fd:92:91 dst_mac 02:e9:ea:26:a2:28 vlan_id 3084 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11401 flower src_mac 02:d8:53:e9:40:c3 dst_mac 02:2f:c8:e1:87:83 vlan_id 3543 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11402 flower src_mac 02:b8:57:39:de:38 dst_mac 02:cb:91:a9:03:b8 vlan_id 2832 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11403 flower src_mac 02:5c:73:82:7d:71 dst_mac 02:a6:7c:0d:be:5d vlan_id 3701 vlan_ethtype 0x0800 src_ip 60.29.134.73 dst_ip 115.153.53.206 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11404 flower src_mac 02:16:c1:c3:18:b1 dst_mac 02:5f:23:0c:83:97 vlan_id 3090 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11405 flower src_mac 02:10:6b:78:79:5f dst_mac 02:a6:3b:4f:b3:bd action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11406 flower src_mac 02:f6:74:5d:82:46 dst_mac 02:21:f5:80:b9:a2 vlan_id 3530 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11407 flower src_mac 02:34:48:00:05:ea dst_mac 02:81:2a:f3:49:ba vlan_id 1099 vlan_ethtype ip src_ip 117.233.173.240 dst_ip 64.49.224.8 ip_proto udp src_port 38784 dst_port 22148 action drop && tc filter add dev swp33 ingress protocol ip pref 11408 flower src_mac 02:f2:fd:dd:32:db dst_mac 02:f6:93:ad:af:c4 src_ip 23.163.146.157 dst_ip 85.60.36.45 ip_proto tcp src_port 3583 dst_port 54852 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11409 flower src_mac 02:ec:d6:af:4e:8d dst_mac 02:81:10:78:64:40 vlan_id 1120 vlan_ethtype ipv4 src_ip 120.198.47.230 dst_ip 120.73.7.62 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11410 flower src_mac 02:02:38:bc:4f:68 dst_mac 02:c8:4a:c0:c5:74 vlan_id 1080 vlan_ethtype 0x0800 src_ip 76.141.119.161 dst_ip 86.195.147.100 ip_proto tcp src_port 22163 dst_port 10630 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11411 flower src_mac 02:20:82:ec:80:53 dst_mac 02:76:75:39:81:56 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11412 flower src_mac 02:42:03:30:d8:89 dst_mac 02:b1:89:e7:97:d1 vlan_id 2604 vlan_ethtype ipv4 src_ip 121.64.48.124 dst_ip 49.81.170.29 ip_proto udp src_port 2522 dst_port 49723 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11413 flower src_mac 02:80:ae:b2:22:06 dst_mac 02:c4:3b:31:5d:e0 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11414 flower src_mac 02:cd:20:c2:65:58 dst_mac 02:d7:10:e7:66:a7 vlan_id 3743 vlan_ethtype ip src_ip 64.206.18.148 dst_ip 124.53.236.53 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11415 flower src_mac 02:f4:86:58:79:47 dst_mac 02:9a:21:f5:ff:2b src_ip 37.88.88.193 dst_ip 37.135.13.179 ip_proto tcp src_port 49563 dst_port 1207 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11416 flower src_mac 02:59:c6:7d:e2:91 dst_mac 02:1e:23:1e:a5:18 src_ip 33.57.164.72 dst_ip 52.47.66.24 ip_proto tcp src_port 62920 dst_port 11169 action trap && tc filter add dev swp33 ingress protocol ip pref 11417 flower src_mac 02:d3:8a:1a:b7:86 dst_mac 02:11:27:71:a2:23 src_ip 75.150.150.96 dst_ip 64.186.8.47 ip_proto tcp src_port 34335 dst_port 22147 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11418 flower src_mac 02:cd:13:fe:e3:2f dst_mac 02:17:a9:93:3f:e0 vlan_id 3944 vlan_ethtype ipv4 src_ip 91.89.140.78 dst_ip 26.136.51.225 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11419 flower src_mac 02:33:2f:e3:e6:e9 dst_mac 02:49:0d:9f:8a:da src_ip 60.34.66.226 dst_ip 94.247.168.77 ip_proto icmp code 141 type 14 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11420 flower src_mac 02:18:54:6a:24:08 dst_mac 02:2e:e7:9f:23:6e vlan_id 1615 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11421 flower src_mac 02:bf:ef:a2:f0:df dst_mac 02:1e:07:1d:59:01 vlan_id 1590 vlan_ethtype 0x0800 src_ip 21.204.191.26 dst_ip 22.50.143.215 action drop && tc filter add dev swp33 ingress protocol ip pref 11422 flower src_mac 02:73:1f:f4:4d:6c dst_mac 02:08:d4:4e:1e:1e src_ip 84.193.41.58 dst_ip 37.228.47.247 ip_proto tcp src_port 57414 dst_port 52639 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11423 flower src_mac 02:12:40:d8:8c:d1 dst_mac 02:8b:37:43:75:61 vlan_id 2728 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol ip pref 11424 flower src_mac 02:d6:1c:6c:c6:0f dst_mac 02:5b:2b:9b:c4:61 src_ip 50.133.245.216 dst_ip 101.29.141.18 ip_proto icmp code 229 type 5 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11425 flower src_mac 02:51:ee:df:34:7a dst_mac 02:95:be:aa:bf:2c vlan_id 3921 vlan_ethtype ip src_ip 85.225.93.146 dst_ip 16.86.184.21 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11426 flower src_mac 02:3c:aa:b7:12:01 dst_mac 02:18:2b:76:71:67 vlan_id 2510 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11427 flower src_mac 02:dd:fc:cd:3c:18 dst_mac 02:87:1f:41:36:8c vlan_id 3195 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11428 flower src_mac 02:aa:1d:d8:5d:f6 dst_mac 02:04:c6:81:18:47 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11429 flower src_mac 02:b4:ec:84:c3:0f dst_mac 02:23:fe:a2:cf:28 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11430 flower src_mac 02:10:67:09:14:f5 dst_mac 02:b0:e6:52:01:c7 vlan_id 2927 vlan_ethtype ipv4 src_ip 27.238.70.81 dst_ip 62.178.104.85 ip_proto tcp src_port 23707 dst_port 55685 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11431 flower src_mac 02:85:14:73:30:78 dst_mac 02:f6:d0:95:2c:49 vlan_id 1291 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11432 flower src_mac 02:ec:57:65:f3:48 dst_mac 02:d3:76:74:fb:7e action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11433 flower src_mac 02:ca:83:85:cc:e6 dst_mac 02:6a:56:16:d7:3b vlan_id 2179 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11434 flower src_mac 02:e5:e7:65:78:d8 dst_mac 02:ef:37:e0:cb:a1 vlan_id 3576 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11435 flower src_mac 02:70:91:67:dd:50 dst_mac 02:a0:ac:b5:32:69 vlan_id 3002 vlan_ethtype ipv4 src_ip 69.12.181.190 dst_ip 11.109.175.78 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11436 flower src_mac 02:d3:e2:be:68:5b dst_mac 02:c5:a4:33:b9:bd vlan_id 2572 vlan_ethtype 0x0800 src_ip 64.94.234.198 dst_ip 28.18.249.203 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11437 flower src_mac 02:a9:c4:3c:56:2b dst_mac 02:6b:ec:2b:f0:db vlan_id 3613 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11438 flower src_mac 02:09:e2:47:78:a9 dst_mac 02:de:f0:7c:58:b3 vlan_id 685 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11439 flower src_mac 02:8e:ae:c7:2a:8b dst_mac 02:89:32:c1:1d:82 vlan_id 1316 vlan_ethtype ip src_ip 52.122.113.13 dst_ip 115.113.201.113 ip_proto udp src_port 30461 dst_port 29854 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11440 flower src_mac 02:54:a1:bf:30:3a dst_mac 02:ca:7a:be:d5:f6 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11441 flower src_mac 02:c1:2e:6e:b8:76 dst_mac 02:ff:c3:c4:41:84 vlan_id 363 vlan_ethtype 0x0800 src_ip 22.182.199.64 dst_ip 70.68.20.228 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11442 flower src_mac 02:49:de:8d:a8:e9 dst_mac 02:40:7f:0c:7e:18 src_ip 84.231.224.82 dst_ip 16.17.155.246 ip_proto icmp code 2 type 16 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11443 flower src_mac 02:c9:69:da:6d:75 dst_mac 02:35:aa:c2:50:f4 vlan_id 3219 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11444 flower src_mac 02:ee:ea:b3:1e:75 dst_mac 02:5a:62:c5:fd:e5 src_ip 13.61.103.59 dst_ip 22.242.163.187 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11445 flower src_mac 02:42:6a:98:61:21 dst_mac 02:11:b5:0c:50:55 src_ip 66.21.94.106 dst_ip 104.121.243.58 ip_proto udp src_port 28082 dst_port 54515 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11446 flower src_mac 02:b0:46:78:7d:b2 dst_mac 02:32:3f:b8:16:1d action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11447 flower src_mac 02:4f:fb:89:77:6f dst_mac 02:ad:ec:d8:e8:35 vlan_id 1091 vlan_ethtype 0x0800 src_ip 76.81.182.118 dst_ip 14.164.65.105 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11448 flower src_mac 02:00:9e:c4:57:fd dst_mac 02:db:03:bd:d8:57 vlan_id 2071 vlan_ethtype ip src_ip 126.125.130.223 dst_ip 80.210.161.142 ip_proto udp src_port 60786 dst_port 26732 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11449 flower src_mac 02:b5:1a:5a:7f:f2 dst_mac 02:10:fb:83:90:59 vlan_id 2791 vlan_ethtype ip src_ip 121.2.69.197 dst_ip 49.132.109.45 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11450 flower src_mac 02:4a:6e:33:f1:13 dst_mac 02:61:75:d0:64:b6 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11451 flower src_mac 02:27:82:11:dc:b8 dst_mac 02:14:b3:70:73:66 vlan_id 441 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11452 flower src_mac 02:ed:db:bc:d6:2a dst_mac 02:0a:bc:f3:46:f6 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11453 flower src_mac 02:4c:b9:3c:cc:53 dst_mac 02:6e:b8:0b:01:ae src_ip 110.188.254.100 dst_ip 51.7.82.191 ip_proto tcp src_port 45867 dst_port 21735 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11454 flower src_mac 02:19:e6:30:be:7c dst_mac 02:16:db:f1:5a:b7 src_ip 75.235.162.161 dst_ip 116.224.15.128 ip_proto tcp src_port 18067 dst_port 35000 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11455 flower src_mac 02:b4:2c:bd:26:ab dst_mac 02:2e:29:0e:87:3b src_ip 17.88.168.117 dst_ip 86.31.194.244 ip_proto udp src_port 25583 dst_port 32227 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11456 flower src_mac 02:c6:7a:ca:7d:43 dst_mac 02:fa:9b:ff:59:fd action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11457 flower src_mac 02:a3:2a:8b:84:d4 dst_mac 02:c7:23:1c:aa:68 vlan_id 1604 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11458 flower src_mac 02:81:5c:9d:bd:23 dst_mac 02:da:f6:6a:22:82 src_ip 105.40.214.51 dst_ip 79.139.210.36 ip_proto udp src_port 56616 dst_port 540 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11459 flower src_mac 02:27:c4:99:dc:0a dst_mac 02:a0:9c:74:c2:c0 vlan_id 3740 vlan_ethtype ipv4 src_ip 92.228.51.60 dst_ip 117.141.74.249 ip_proto tcp src_port 43182 dst_port 6300 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11460 flower src_mac 02:69:23:ed:06:51 dst_mac 02:0e:96:61:a1:6b vlan_id 689 vlan_ethtype ipv4 src_ip 112.52.204.204 dst_ip 36.136.64.129 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11461 flower src_mac 02:2a:67:02:62:a6 dst_mac 02:4d:83:5b:ed:b9 vlan_id 1261 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11462 flower src_mac 02:ba:64:35:15:97 dst_mac 02:b2:e4:a2:96:15 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11463 flower src_mac 02:79:d3:3a:35:c4 dst_mac 02:33:76:24:c8:69 vlan_id 2280 vlan_ethtype 0x0800 src_ip 99.15.84.80 dst_ip 90.36.65.184 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11464 flower src_mac 02:07:36:57:86:4f dst_mac 02:91:9f:38:9f:73 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11465 flower src_mac 02:d4:b8:05:04:60 dst_mac 02:c0:aa:df:82:e5 vlan_id 542 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11466 flower src_mac 02:09:18:43:75:a7 dst_mac 02:c0:32:d8:e5:bb src_ip 72.80.199.135 dst_ip 89.122.5.76 ip_proto udp src_port 48463 dst_port 35766 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11467 flower src_mac 02:9d:2e:89:e1:77 dst_mac 02:b1:de:dc:f5:72 vlan_id 2882 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11468 flower src_mac 02:70:f9:56:b5:1c dst_mac 02:c2:0d:3b:91:9b action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11469 flower src_mac 02:a8:3f:d9:d0:e8 dst_mac 02:bd:46:d2:53:d5 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11470 flower src_mac 02:a1:81:11:f6:c8 dst_mac 02:73:53:ca:37:c1 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11471 flower src_mac 02:83:9e:71:2a:75 dst_mac 02:c9:ac:0d:c8:ca action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11472 flower src_mac 02:16:97:92:ef:9f dst_mac 02:16:b5:fe:65:30 vlan_id 2203 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11473 flower src_mac 02:a3:52:30:ef:5f dst_mac 02:1d:0d:54:91:de action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11474 flower src_mac 02:d8:53:71:e5:b2 dst_mac 02:ab:49:9f:3b:15 vlan_id 2869 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol ip pref 11475 flower src_mac 02:aa:09:46:72:50 dst_mac 02:ad:f5:b2:cb:50 src_ip 26.207.218.214 dst_ip 110.32.93.142 ip_proto tcp src_port 32620 dst_port 47785 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11476 flower src_mac 02:c3:36:e0:c4:ec dst_mac 02:c9:42:d8:7e:85 src_ip 126.185.38.23 dst_ip 123.143.136.82 ip_proto udp src_port 16097 dst_port 27999 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11477 flower src_mac 02:d3:27:5e:d5:15 dst_mac 02:7a:95:c2:4e:c8 vlan_id 3148 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11478 flower src_mac 02:3b:8e:df:14:8d dst_mac 02:bc:34:4a:ca:4e vlan_id 2331 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11479 flower src_mac 02:09:60:a9:51:7a dst_mac 02:52:1b:10:fa:04 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11480 flower src_mac 02:02:28:8a:0a:ea dst_mac 02:3c:8c:4e:80:b1 vlan_id 3544 vlan_ethtype 0x0800 src_ip 107.23.195.20 dst_ip 86.84.18.207 ip_proto tcp src_port 16571 dst_port 48142 action drop && tc filter add dev swp33 ingress protocol ip pref 11481 flower src_mac 02:4f:fb:81:1c:d4 dst_mac 02:ac:45:66:d5:2d src_ip 73.98.205.33 dst_ip 36.6.41.137 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11482 flower src_mac 02:7c:b2:f1:10:cb dst_mac 02:8d:ef:51:b6:be vlan_id 3858 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11483 flower src_mac 02:b6:e6:f2:23:4f dst_mac 02:25:9a:35:c8:3a vlan_id 3594 vlan_ethtype ipv4 src_ip 16.50.78.242 dst_ip 103.72.100.33 ip_proto udp src_port 46400 dst_port 34202 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11484 flower src_mac 02:82:eb:47:1e:cf dst_mac 02:d9:05:00:9c:aa src_ip 67.9.74.27 dst_ip 120.217.71.117 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11485 flower src_mac 02:78:d8:c3:31:5e dst_mac 02:20:4d:47:91:ad action trap && tc filter add dev swp33 ingress protocol ip pref 11486 flower src_mac 02:6b:0a:28:e4:b3 dst_mac 02:e2:69:61:b2:29 src_ip 12.91.104.91 dst_ip 99.171.118.134 ip_proto icmp code 231 type 17 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11487 flower src_mac 02:ed:59:aa:fa:d7 dst_mac 02:2c:8c:43:61:b6 vlan_id 553 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11488 flower src_mac 02:6b:b2:13:65:e5 dst_mac 02:82:85:a4:28:12 vlan_id 622 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11489 flower src_mac 02:87:44:07:56:b6 dst_mac 02:0d:8c:81:e0:fa vlan_id 2787 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 11490 flower src_mac 02:c8:41:dd:39:f1 dst_mac 02:99:1c:82:3d:6e action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11491 flower src_mac 02:0b:e5:af:f1:4e dst_mac 02:72:54:e1:f4:66 src_ip 84.3.126.249 dst_ip 25.249.229.16 ip_proto icmp code 238 type 11 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11492 flower src_mac 02:f5:3e:7b:5a:8a dst_mac 02:34:e6:35:7c:3a src_ip 50.156.109.240 dst_ip 71.247.53.187 ip_proto udp src_port 20208 dst_port 48589 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11493 flower src_mac 02:e8:b7:cf:b9:d4 dst_mac 02:d4:3a:c5:43:bd vlan_id 395 vlan_ethtype ipv4 src_ip 14.155.136.137 dst_ip 96.110.65.145 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11494 flower src_mac 02:f5:1d:87:01:6b dst_mac 02:af:12:61:db:a3 vlan_id 2454 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11495 flower src_mac 02:43:69:95:68:bc dst_mac 02:16:14:11:66:2e vlan_id 2555 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11496 flower src_mac 02:71:98:66:b9:30 dst_mac 02:55:0c:42:68:30 vlan_id 3749 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11497 flower src_mac 02:27:32:a2:d2:24 dst_mac 02:97:0c:d1:c1:0c vlan_id 2530 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11498 flower src_mac 02:e2:50:10:5f:80 dst_mac 02:de:00:bd:a9:3f vlan_id 2458 vlan_ethtype 0x0800 src_ip 125.32.87.52 dst_ip 48.215.152.51 ip_proto udp src_port 64115 dst_port 48233 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11499 flower src_mac 02:34:66:a4:3d:4e dst_mac 02:83:d7:97:b9:0e action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11500 flower src_mac 02:b3:0c:37:e0:c8 dst_mac 02:99:9a:33:35:39 vlan_id 2125 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11501 flower src_mac 02:07:2b:d5:7e:46 dst_mac 02:ef:06:46:8e:cf vlan_id 3560 vlan_ethtype 0x0800 src_ip 101.249.130.215 dst_ip 48.158.192.92 ip_proto udp src_port 33456 dst_port 38314 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11502 flower src_mac 02:95:cd:03:b2:80 dst_mac 02:11:35:d7:4f:de vlan_id 3110 vlan_ethtype ip src_ip 50.202.78.140 dst_ip 121.6.107.136 ip_proto udp src_port 35388 dst_port 44289 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11503 flower src_mac 02:cb:10:15:33:8b dst_mac 02:fb:98:7a:16:3f action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11504 flower src_mac 02:4b:be:5c:ec:9f dst_mac 02:53:e3:3f:4d:53 src_ip 43.52.26.29 dst_ip 32.253.23.95 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11505 flower src_mac 02:0a:d0:c4:4c:ce dst_mac 02:0e:8e:e8:4a:2c action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11506 flower src_mac 02:da:c6:c7:aa:06 dst_mac 02:4d:c0:02:5f:88 src_ip 88.192.184.120 dst_ip 109.50.114.51 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11507 flower src_mac 02:b7:8e:d8:a1:7c dst_mac 02:72:ac:df:78:14 action trap && tc filter add dev swp33 ingress protocol ip pref 11508 flower src_mac 02:45:62:c3:d7:04 dst_mac 02:d3:0c:39:c3:21 src_ip 91.122.33.14 dst_ip 44.35.11.248 ip_proto icmp code 240 type 4 action trap && tc filter add dev swp33 ingress protocol ip pref 11509 flower src_mac 02:1c:20:e0:d3:73 dst_mac 02:7d:6e:6f:8c:db src_ip 115.26.49.137 dst_ip 121.112.159.141 ip_proto udp src_port 55528 dst_port 28930 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11510 flower src_mac 02:9f:24:36:c6:34 dst_mac 02:1c:7f:9f:75:25 vlan_id 1914 vlan_ethtype 0x0800 src_ip 46.253.168.216 dst_ip 84.36.10.235 ip_proto tcp src_port 9334 dst_port 15948 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11511 flower src_mac 02:4b:a1:14:c8:3b dst_mac 02:08:c3:f6:eb:1b action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11512 flower src_mac 02:f8:c4:28:ab:78 dst_mac 02:26:7d:f1:43:54 src_ip 125.30.242.2 dst_ip 28.160.167.111 ip_proto tcp src_port 36553 dst_port 41869 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11513 flower src_mac 02:9a:0d:38:42:29 dst_mac 02:4d:dd:fc:ff:6f vlan_id 648 vlan_ethtype ip src_ip 94.195.95.245 dst_ip 59.172.209.204 ip_proto udp src_port 34774 dst_port 947 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11514 flower src_mac 02:cc:05:5e:b7:f0 dst_mac 02:0e:37:8a:e2:77 vlan_id 2639 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11515 flower src_mac 02:62:24:1a:a3:1c dst_mac 02:e8:54:a6:30:6c action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11516 flower src_mac 02:8c:a8:45:6a:24 dst_mac 02:04:a1:c3:82:2e action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11517 flower src_mac 02:2c:66:1a:43:53 dst_mac 02:07:18:5b:6a:27 src_ip 27.195.115.97 dst_ip 110.90.34.248 ip_proto tcp src_port 38470 dst_port 44120 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11518 flower src_mac 02:f2:34:44:16:d0 dst_mac 02:47:cd:c1:9e:dc action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11519 flower src_mac 02:3c:e2:56:5a:ab dst_mac 02:86:da:07:06:92 vlan_id 3414 vlan_ethtype 0x0800 src_ip 118.7.35.51 dst_ip 65.22.185.23 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11520 flower src_mac 02:bc:f5:a7:be:56 dst_mac 02:6e:c4:82:ac:4b vlan_id 1704 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 11521 flower src_mac 02:1e:14:12:14:17 dst_mac 02:97:6d:a4:78:32 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11522 flower src_mac 02:51:78:70:5f:a7 dst_mac 02:5d:76:33:6c:4c vlan_id 3729 vlan_ethtype 0x0800 src_ip 75.156.234.201 dst_ip 38.94.59.57 ip_proto udp src_port 48887 dst_port 9863 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11523 flower src_mac 02:b5:a5:c2:e3:88 dst_mac 02:39:0d:10:7a:d6 vlan_id 3134 vlan_ethtype 0x0800 src_ip 55.98.17.248 dst_ip 64.111.92.202 ip_proto udp src_port 783 dst_port 17116 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11524 flower src_mac 02:84:43:fe:46:7b dst_mac 02:bc:45:0a:99:10 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11525 flower src_mac 02:cb:5e:87:34:cc dst_mac 02:2b:d0:aa:57:71 src_ip 94.109.156.202 dst_ip 122.26.196.140 ip_proto udp src_port 46525 dst_port 18623 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11526 flower src_mac 02:6a:52:f6:4b:d4 dst_mac 02:27:41:79:1c:8d vlan_id 2225 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11527 flower src_mac 02:7d:c5:f1:19:4c dst_mac 02:21:d1:9e:bd:44 src_ip 14.84.35.171 dst_ip 26.16.64.5 ip_proto tcp src_port 21045 dst_port 52683 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11528 flower src_mac 02:18:f2:24:f6:97 dst_mac 02:38:66:d1:e5:97 vlan_id 3793 vlan_ethtype 0x0800 src_ip 75.217.5.158 dst_ip 63.120.24.222 ip_proto tcp src_port 16003 dst_port 18153 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11529 flower src_mac 02:68:33:7b:53:44 dst_mac 02:11:95:bf:1b:e0 vlan_id 2879 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11530 flower src_mac 02:09:b0:b6:2e:ab dst_mac 02:95:31:c0:c8:11 src_ip 57.182.114.40 dst_ip 97.232.53.44 ip_proto udp src_port 24380 dst_port 27385 action pass && tc filter add dev swp33 ingress protocol ip pref 11531 flower src_mac 02:9c:55:1d:5c:18 dst_mac 02:be:30:25:b1:29 src_ip 121.75.47.152 dst_ip 12.12.249.59 ip_proto tcp src_port 35127 dst_port 4893 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11532 flower src_mac 02:eb:45:78:2c:fc dst_mac 02:be:72:00:7e:84 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11533 flower src_mac 02:42:f7:45:8c:e3 dst_mac 02:4e:63:da:af:c0 vlan_id 2430 vlan_ethtype 0x0800 src_ip 27.110.234.94 dst_ip 52.96.100.126 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11534 flower src_mac 02:09:85:35:b3:a4 dst_mac 02:a7:38:2a:5a:8a vlan_id 1387 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol ip pref 11535 flower src_mac 02:b3:8b:bc:72:d0 dst_mac 02:11:a1:5a:d4:e3 src_ip 21.170.57.100 dst_ip 32.130.158.85 ip_proto icmp code 41 type 15 action pass INFO asyncssh:logging.py:92 [conn=24, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=10] Command: tc filter add dev swp33 ingress protocol 802.1q pref 11200 flower src_mac 02:7e:f0:9c:33:0c dst_mac 02:44:28:14:4e:7d vlan_id 1795 vlan_ethtype 0x0800 src_ip 82.179.113.125 dst_ip 33.235.246.174 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11201 flower src_mac 02:a3:02:63:58:de dst_mac 02:6a:b6:b3:6d:52 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11202 flower src_mac 02:37:53:a7:fc:91 dst_mac 02:ad:ab:0c:5e:b3 src_ip 116.116.200.153 dst_ip 118.154.196.181 ip_proto udp src_port 31985 dst_port 59798 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11203 flower src_mac 02:3d:e3:fd:f9:4b dst_mac 02:3e:9e:83:95:08 vlan_id 1165 vlan_ethtype ipv4 src_ip 55.0.155.88 dst_ip 79.99.95.6 ip_proto udp src_port 24544 dst_port 63430 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11204 flower src_mac 02:72:b5:81:ee:c1 dst_mac 02:89:db:7c:a6:b7 src_ip 76.110.198.62 dst_ip 39.79.211.133 ip_proto icmp code 25 type 4 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11205 flower src_mac 02:1f:e4:30:d5:50 dst_mac 02:29:5f:19:13:06 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11206 flower src_mac 02:cb:bf:4c:f9:51 dst_mac 02:96:51:46:33:7c vlan_id 1110 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11207 flower src_mac 02:e2:f3:00:c6:91 dst_mac 02:04:f8:b8:5c:41 vlan_id 2095 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 11208 flower src_mac 02:f0:d5:f5:bf:2a dst_mac 02:7e:ec:20:75:29 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11209 flower src_mac 02:35:e1:fe:d4:c9 dst_mac 02:08:09:5d:ff:38 vlan_id 249 vlan_ethtype 0x0800 src_ip 12.194.121.85 dst_ip 70.135.250.213 ip_proto udp src_port 31805 dst_port 8476 action trap && tc filter add dev swp33 ingress protocol ip pref 11210 flower src_mac 02:a3:15:1c:9c:26 dst_mac 02:45:e9:9b:33:ae src_ip 46.186.20.107 dst_ip 30.158.199.5 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11211 flower src_mac 02:aa:ec:53:71:39 dst_mac 02:95:19:ae:d3:55 vlan_id 1664 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11212 flower src_mac 02:b0:67:26:ed:d7 dst_mac 02:ce:08:44:f4:61 vlan_id 2505 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11213 flower src_mac 02:40:3d:39:18:73 dst_mac 02:b6:d2:f0:ac:f1 vlan_id 2486 vlan_ethtype ipv4 src_ip 31.21.252.223 dst_ip 122.35.72.184 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11214 flower src_mac 02:d6:ac:b1:4e:de dst_mac 02:b0:8e:fa:03:cb action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11215 flower src_mac 02:2c:11:f1:1c:ee dst_mac 02:4b:5c:94:6e:88 vlan_id 2653 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11216 flower src_mac 02:a5:bc:af:75:53 dst_mac 02:78:e5:0a:29:61 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11217 flower src_mac 02:6b:32:0b:16:ae dst_mac 02:d2:44:92:ba:86 vlan_id 3164 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11218 flower src_mac 02:e8:a0:a2:b7:6c dst_mac 02:0c:f4:95:de:0a action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11219 flower src_mac 02:43:31:53:e3:9e dst_mac 02:3d:48:49:a2:8d src_ip 50.216.236.62 dst_ip 103.154.193.146 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11220 flower src_mac 02:99:2c:f6:01:03 dst_mac 02:a9:3d:c2:c8:02 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11221 flower src_mac 02:f7:b1:14:7e:7d dst_mac 02:ff:35:e0:cb:df vlan_id 1472 vlan_ethtype ip src_ip 67.129.236.45 dst_ip 61.251.127.19 ip_proto tcp src_port 59420 dst_port 13417 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11222 flower src_mac 02:c3:f5:5c:6d:0d dst_mac 02:ce:36:f7:f0:91 src_ip 31.106.86.127 dst_ip 71.57.11.244 ip_proto icmp code 235 type 8 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11223 flower src_mac 02:94:04:06:34:62 dst_mac 02:87:fe:22:45:d5 vlan_id 3142 vlan_ethtype ip src_ip 101.216.104.174 dst_ip 58.154.172.41 ip_proto udp src_port 56258 dst_port 12304 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11224 flower src_mac 02:ef:1d:ff:f0:cf dst_mac 02:58:75:55:7e:b0 src_ip 101.212.228.43 dst_ip 18.235.242.199 ip_proto tcp src_port 13925 dst_port 41471 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11225 flower src_mac 02:c9:51:a3:ad:4d dst_mac 02:15:57:5d:9f:c4 vlan_id 3884 vlan_ethtype 0x0800 src_ip 76.53.65.39 dst_ip 103.218.154.71 ip_proto tcp src_port 47050 dst_port 63976 action drop && tc filter add dev swp33 ingress protocol ip pref 11226 flower src_mac 02:cd:39:88:69:58 dst_mac 02:99:61:d7:60:b6 src_ip 87.126.68.15 dst_ip 107.250.180.246 ip_proto tcp src_port 32726 dst_port 26555 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11227 flower src_mac 02:82:30:16:1c:3b dst_mac 02:70:2a:60:48:b1 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11228 flower src_mac 02:f8:c6:67:fa:08 dst_mac 02:c4:a0:2a:49:97 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11229 flower src_mac 02:26:fe:60:64:55 dst_mac 02:bb:f2:56:74:07 src_ip 89.13.163.181 dst_ip 109.58.94.38 ip_proto tcp src_port 31990 dst_port 12666 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11230 flower src_mac 02:e3:c8:46:02:2c dst_mac 02:21:b4:5c:4f:02 src_ip 96.120.247.89 dst_ip 106.133.234.41 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11231 flower src_mac 02:08:3e:85:49:30 dst_mac 02:78:e2:c2:24:f7 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11232 flower src_mac 02:d0:5d:4a:0e:78 dst_mac 02:95:23:9b:ee:4a action pass && tc filter add dev swp33 ingress protocol ip pref 11233 flower src_mac 02:b0:db:9e:2a:ea dst_mac 02:bf:df:6d:54:07 src_ip 102.159.84.14 dst_ip 101.212.32.223 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11234 flower src_mac 02:e5:96:18:e1:7d dst_mac 02:20:a1:0e:c7:72 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11235 flower src_mac 02:ee:5c:16:75:9d dst_mac 02:3b:76:13:9a:ed src_ip 45.49.47.148 dst_ip 112.81.51.6 ip_proto icmp code 201 type 12 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11236 flower src_mac 02:6f:7f:a1:18:77 dst_mac 02:34:cc:f8:b5:97 vlan_id 2120 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11237 flower src_mac 02:14:9c:26:d2:8e dst_mac 02:4f:92:fc:13:ac action pass && tc filter add dev swp33 ingress protocol ip pref 11238 flower src_mac 02:eb:fc:c7:ff:14 dst_mac 02:b2:d1:d5:1d:92 src_ip 11.146.207.210 dst_ip 76.34.182.97 ip_proto icmp code 223 type 15 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11239 flower src_mac 02:9f:5f:95:f5:bf dst_mac 02:11:7d:98:8e:98 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11240 flower src_mac 02:ce:3d:2f:82:b8 dst_mac 02:2e:f1:eb:fd:fb vlan_id 2733 vlan_ethtype 0x0800 src_ip 125.245.186.220 dst_ip 64.33.36.115 ip_proto tcp src_port 55171 dst_port 12197 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11241 flower src_mac 02:bd:46:7e:99:00 dst_mac 02:0b:99:a7:18:30 src_ip 69.20.133.47 dst_ip 72.94.218.22 ip_proto udp src_port 45342 dst_port 51739 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11242 flower src_mac 02:49:c1:93:c7:b8 dst_mac 02:81:90:dd:d0:95 vlan_id 3247 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11243 flower src_mac 02:7b:41:c7:65:48 dst_mac 02:40:ab:e5:6a:98 vlan_id 2730 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11244 flower src_mac 02:ef:43:4d:2c:c4 dst_mac 02:c8:db:ed:47:71 vlan_id 1583 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 11245 flower src_mac 02:d1:2e:b8:f7:a8 dst_mac 02:e1:a5:61:9b:90 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11246 flower src_mac 02:f8:9f:58:45:d3 dst_mac 02:d3:c1:7a:4a:8c src_ip 56.153.118.227 dst_ip 78.194.214.84 ip_proto udp src_port 50565 dst_port 35828 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11247 flower src_mac 02:7d:6a:8c:cd:78 dst_mac 02:73:07:5d:dc:79 vlan_id 3997 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 11248 flower src_mac 02:72:51:fa:81:2a dst_mac 02:53:83:5b:7a:1c action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11249 flower src_mac 02:44:e4:fe:30:25 dst_mac 02:6d:fd:38:3b:1f vlan_id 182 vlan_ethtype ip src_ip 66.132.163.165 dst_ip 99.161.18.224 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11250 flower src_mac 02:73:db:aa:55:65 dst_mac 02:e2:02:58:a0:e0 src_ip 54.218.19.118 dst_ip 55.224.142.85 ip_proto udp src_port 12810 dst_port 4175 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11251 flower src_mac 02:60:9a:fc:78:e9 dst_mac 02:9c:6f:6b:76:7a src_ip 27.45.76.234 dst_ip 89.2.25.152 ip_proto tcp src_port 6860 dst_port 11343 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11252 flower src_mac 02:dc:ce:5e:c6:ba dst_mac 02:b9:17:5d:37:e7 src_ip 125.110.159.183 dst_ip 76.239.86.79 ip_proto tcp src_port 10788 dst_port 22422 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11253 flower src_mac 02:7c:6e:74:75:ef dst_mac 02:4d:a6:75:70:fe action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11254 flower src_mac 02:fa:cf:03:17:24 dst_mac 02:70:dc:a9:58:11 action trap && tc filter add dev swp33 ingress protocol ip pref 11255 flower src_mac 02:37:2f:f0:95:6e dst_mac 02:ef:03:f8:e6:b0 src_ip 100.168.141.218 dst_ip 33.190.100.205 ip_proto icmp code 15 type 4 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11256 flower src_mac 02:63:30:1b:e8:d5 dst_mac 02:bf:d1:c9:28:cd vlan_id 3045 vlan_ethtype ipv4 src_ip 50.148.95.127 dst_ip 54.43.199.76 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11257 flower src_mac 02:c6:be:f6:59:cc dst_mac 02:c8:aa:c1:59:a7 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11258 flower src_mac 02:7e:6d:d9:2f:1e dst_mac 02:b1:85:df:db:84 src_ip 15.98.114.16 dst_ip 124.186.93.158 ip_proto udp src_port 47047 dst_port 2068 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11259 flower src_mac 02:2d:8b:42:de:19 dst_mac 02:62:38:a7:68:b7 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11260 flower src_mac 02:7a:77:68:15:66 dst_mac 02:5a:b8:28:6a:5e action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11261 flower src_mac 02:dd:7e:32:e3:88 dst_mac 02:93:0e:33:ab:1c vlan_id 1787 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11262 flower src_mac 02:35:61:a0:66:db dst_mac 02:19:40:97:89:df action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11263 flower src_mac 02:8c:15:14:8c:32 dst_mac 02:c3:87:f7:7b:c7 src_ip 66.155.15.8 dst_ip 109.244.158.125 ip_proto udp src_port 32607 dst_port 2119 action trap && tc filter add dev swp33 ingress protocol ip pref 11264 flower src_mac 02:57:4f:22:6b:cb dst_mac 02:8a:61:4d:98:80 src_ip 63.181.91.205 dst_ip 75.241.147.18 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11265 flower src_mac 02:b6:b5:e0:73:50 dst_mac 02:82:66:e4:c4:59 vlan_id 3622 vlan_ethtype ipv4 src_ip 47.225.233.78 dst_ip 31.44.123.40 ip_proto udp src_port 292 dst_port 9963 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11266 flower src_mac 02:48:fc:5c:51:89 dst_mac 02:8c:bd:fa:e1:c9 src_ip 42.78.156.205 dst_ip 73.60.120.43 ip_proto tcp src_port 56701 dst_port 48993 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11267 flower src_mac 02:08:3c:b4:35:01 dst_mac 02:3a:2c:06:10:63 vlan_id 3323 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11268 flower src_mac 02:8e:74:ed:49:98 dst_mac 02:7c:1d:52:51:74 vlan_id 506 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11269 flower src_mac 02:2b:2b:b5:10:39 dst_mac 02:7f:7f:91:5d:33 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11270 flower src_mac 02:8d:1a:2c:5a:ff dst_mac 02:ca:42:b6:52:ca vlan_id 2525 vlan_ethtype 0x0800 src_ip 14.148.51.65 dst_ip 81.227.16.205 ip_proto tcp src_port 41025 dst_port 54151 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11271 flower src_mac 02:44:2c:aa:c0:34 dst_mac 02:da:b2:68:71:7e action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 11272 flower src_mac 02:0c:3b:92:f9:78 dst_mac 02:43:b4:77:51:f6 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11273 flower src_mac 02:8e:81:0b:60:f7 dst_mac 02:5a:b7:41:71:b0 vlan_id 999 vlan_ethtype 0x0800 src_ip 82.87.234.229 dst_ip 108.65.15.2 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11274 flower src_mac 02:da:c1:8d:99:be dst_mac 02:e7:ed:24:9c:64 vlan_id 3489 vlan_ethtype ipv4 src_ip 90.173.182.50 dst_ip 112.148.230.224 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11275 flower src_mac 02:27:8e:cb:0f:aa dst_mac 02:80:ae:9c:4d:d5 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11276 flower src_mac 02:34:f3:bf:3c:04 dst_mac 02:25:1e:3b:4d:13 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11277 flower src_mac 02:8f:59:59:ab:7d dst_mac 02:21:ae:df:0f:ed vlan_id 262 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11278 flower src_mac 02:ac:5c:18:86:6b dst_mac 02:49:c3:4b:ca:04 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11279 flower src_mac 02:cf:7a:37:d0:73 dst_mac 02:48:35:15:80:e7 vlan_id 3982 vlan_ethtype ipv4 src_ip 73.101.122.71 dst_ip 68.131.25.14 ip_proto udp src_port 36451 dst_port 27473 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11280 flower src_mac 02:22:e1:6c:74:e8 dst_mac 02:5c:a1:6e:d7:b2 src_ip 25.238.127.126 dst_ip 56.206.143.247 ip_proto udp src_port 40680 dst_port 28408 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11281 flower src_mac 02:9d:db:dc:2b:61 dst_mac 02:1b:5e:88:2d:29 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11282 flower src_mac 02:fe:2c:33:3e:b3 dst_mac 02:97:7d:ef:e4:e4 vlan_id 2531 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11283 flower src_mac 02:31:c8:12:b3:08 dst_mac 02:76:4b:4d:66:a6 vlan_id 1847 vlan_ethtype ipv4 src_ip 66.184.32.18 dst_ip 124.24.208.46 ip_proto tcp src_port 16888 dst_port 12790 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11284 flower src_mac 02:bc:f3:ee:ea:03 dst_mac 02:58:09:ba:e3:be action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11285 flower src_mac 02:d7:b0:f9:b9:75 dst_mac 02:3a:7f:89:6c:16 vlan_id 1298 vlan_ethtype ipv4 src_ip 67.163.32.38 dst_ip 101.182.46.74 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11286 flower src_mac 02:5e:7e:0e:a7:0c dst_mac 02:40:88:70:90:2a vlan_id 3077 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11287 flower src_mac 02:e9:a0:16:3f:6d dst_mac 02:c9:0c:46:2f:7a vlan_id 3452 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11288 flower src_mac 02:4d:a1:58:81:a7 dst_mac 02:2a:cd:cc:41:2c src_ip 22.135.95.18 dst_ip 37.56.240.188 ip_proto icmp code 52 type 8 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11289 flower src_mac 02:6a:ac:da:ca:b6 dst_mac 02:2b:0c:a2:b5:64 vlan_id 31 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11290 flower src_mac 02:21:1b:8c:f5:4d dst_mac 02:64:b6:f0:91:d3 src_ip 69.120.68.28 dst_ip 59.115.44.116 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11291 flower src_mac 02:f7:44:3f:04:cd dst_mac 02:4a:c5:14:5f:be vlan_id 3975 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11292 flower src_mac 02:07:93:36:b6:ee dst_mac 02:b3:eb:6e:23:6b vlan_id 3631 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11293 flower src_mac 02:1f:24:c4:be:31 dst_mac 02:77:32:69:0e:77 vlan_id 957 vlan_ethtype ip src_ip 101.110.100.70 dst_ip 82.190.219.168 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11294 flower src_mac 02:96:e7:44:79:08 dst_mac 02:a7:0e:52:ab:1c action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11295 flower src_mac 02:54:98:40:0d:8d dst_mac 02:a0:39:55:5c:73 vlan_id 1189 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11296 flower src_mac 02:42:c3:72:04:6f dst_mac 02:0d:fd:45:97:dd action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11297 flower src_mac 02:71:4c:71:c6:f5 dst_mac 02:6a:f8:a1:6b:ef vlan_id 2567 vlan_ethtype ipv4 src_ip 118.195.160.234 dst_ip 117.221.121.63 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11298 flower src_mac 02:25:20:70:bd:fe dst_mac 02:b2:e9:2a:d4:4f action pass && tc filter add dev swp33 ingress protocol ip pref 11299 flower src_mac 02:c7:1f:7f:c6:7b dst_mac 02:57:50:fa:1a:2d src_ip 13.249.118.190 dst_ip 64.106.58.89 ip_proto udp src_port 697 dst_port 48966 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11300 flower src_mac 02:3e:ff:30:fb:61 dst_mac 02:e3:22:3e:d4:cf src_ip 96.8.42.240 dst_ip 74.251.17.64 ip_proto udp src_port 25302 dst_port 25149 action trap && tc filter add dev swp33 ingress protocol ip pref 11301 flower src_mac 02:46:89:96:7c:fc dst_mac 02:ce:f3:79:1a:67 src_ip 108.109.17.74 dst_ip 106.91.184.182 ip_proto udp src_port 47423 dst_port 27038 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11302 flower src_mac 02:d2:61:90:c9:c8 dst_mac 02:e8:71:95:d5:82 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11303 flower src_mac 02:f8:2a:13:3d:f7 dst_mac 02:87:3d:6a:2e:7a src_ip 38.202.151.97 dst_ip 115.10.11.163 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11304 flower src_mac 02:ea:22:42:b2:22 dst_mac 02:69:64:a6:6f:f7 vlan_id 786 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11305 flower src_mac 02:6e:10:67:f3:1a dst_mac 02:ff:8d:7a:f7:bb vlan_id 3254 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol ip pref 11306 flower src_mac 02:24:99:02:8d:d9 dst_mac 02:85:38:4a:e6:08 src_ip 18.108.254.199 dst_ip 86.63.49.217 ip_proto icmp code 109 type 3 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11307 flower src_mac 02:82:8b:9b:ff:74 dst_mac 02:46:a1:53:0c:13 vlan_id 3288 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11308 flower src_mac 02:54:97:4c:98:73 dst_mac 02:38:87:ff:20:6a src_ip 19.20.88.103 dst_ip 43.80.45.248 action drop && tc filter add dev swp33 ingress protocol ip pref 11309 flower src_mac 02:13:a9:36:bc:7a dst_mac 02:3e:e6:25:32:98 src_ip 104.123.200.44 dst_ip 68.153.106.206 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11310 flower src_mac 02:16:f9:67:ee:75 dst_mac 02:23:44:d7:0e:94 vlan_id 4051 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11311 flower src_mac 02:76:b2:8b:43:46 dst_mac 02:b4:48:26:e2:0e action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11312 flower src_mac 02:90:f0:ef:4e:3e dst_mac 02:7f:8c:20:ad:43 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11313 flower src_mac 02:7b:74:09:8a:ba dst_mac 02:76:84:1a:42:8b vlan_id 2192 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11314 flower src_mac 02:80:76:5c:b8:2d dst_mac 02:1d:60:70:d6:a8 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 11315 flower src_mac 02:ff:a1:c9:a4:84 dst_mac 02:8a:7b:22:92:94 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11316 flower src_mac 02:ac:b8:ce:8d:c4 dst_mac 02:39:1b:2f:90:13 vlan_id 3373 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11317 flower src_mac 02:e2:c3:5e:a4:17 dst_mac 02:97:d8:1e:80:1b src_ip 57.177.59.192 dst_ip 42.178.84.224 ip_proto udp src_port 2329 dst_port 2978 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11318 flower src_mac 02:c9:1d:9e:58:07 dst_mac 02:76:80:ae:97:84 vlan_id 454 vlan_ethtype ipv4 src_ip 65.199.199.219 dst_ip 22.1.203.206 ip_proto udp src_port 63236 dst_port 20850 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11319 flower src_mac 02:ec:99:55:66:05 dst_mac 02:7e:75:3e:9e:62 vlan_id 1706 vlan_ethtype ipv4 src_ip 20.221.251.59 dst_ip 67.111.187.151 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11320 flower src_mac 02:b2:44:36:44:cc dst_mac 02:83:8b:80:77:cb vlan_id 1438 vlan_ethtype ip src_ip 38.179.81.68 dst_ip 109.184.189.87 ip_proto tcp src_port 27748 dst_port 49200 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11321 flower src_mac 02:2a:59:60:39:65 dst_mac 02:ca:9d:b6:56:8c vlan_id 2058 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11322 flower src_mac 02:eb:b0:e7:bb:65 dst_mac 02:2d:3f:73:80:56 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11323 flower src_mac 02:63:74:6f:03:0b dst_mac 02:f8:8a:08:a4:96 vlan_id 1901 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 11324 flower src_mac 02:ae:51:77:52:fc dst_mac 02:82:ef:d1:5c:54 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11325 flower src_mac 02:05:2b:3b:a4:9f dst_mac 02:27:73:6b:b8:97 vlan_id 1742 vlan_ethtype 0x0800 src_ip 26.3.116.224 dst_ip 18.196.48.202 ip_proto udp src_port 12578 dst_port 26040 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11326 flower src_mac 02:3a:bd:b8:87:94 dst_mac 02:f8:d2:66:4d:d9 vlan_id 786 vlan_ethtype ipv4 src_ip 39.175.164.14 dst_ip 42.85.152.65 ip_proto tcp src_port 4439 dst_port 20304 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11327 flower src_mac 02:29:1d:c3:d9:0b dst_mac 02:32:6c:7e:a5:00 src_ip 62.141.37.50 dst_ip 115.0.43.122 ip_proto udp src_port 23503 dst_port 3851 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11328 flower src_mac 02:be:97:f8:09:ab dst_mac 02:f3:d7:d8:a9:4e vlan_id 962 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11329 flower src_mac 02:ce:d3:68:ce:10 dst_mac 02:8c:c8:b7:f5:e2 vlan_id 788 vlan_ethtype 0x0800 src_ip 79.12.212.210 dst_ip 98.216.13.96 ip_proto udp src_port 30334 dst_port 27316 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11330 flower src_mac 02:83:7f:11:cb:ba dst_mac 02:2e:43:32:e2:7a action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11331 flower src_mac 02:68:1f:d9:10:8d dst_mac 02:8c:8a:39:f8:26 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11332 flower src_mac 02:a1:85:c7:70:d4 dst_mac 02:81:28:ba:59:6d vlan_id 1860 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol ip pref 11333 flower src_mac 02:d3:14:f5:f9:75 dst_mac 02:67:06:f7:ba:e4 src_ip 87.94.222.98 dst_ip 51.194.115.77 ip_proto icmp code 165 type 11 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11334 flower src_mac 02:e7:d7:b4:f4:57 dst_mac 02:ba:05:3b:50:05 vlan_id 79 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11335 flower src_mac 02:d4:11:5f:28:3f dst_mac 02:37:77:df:97:17 src_ip 35.156.246.46 dst_ip 94.81.178.231 ip_proto icmp code 195 type 12 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11336 flower src_mac 02:79:7e:54:42:4f dst_mac 02:0d:b4:65:18:c3 vlan_id 3316 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11337 flower src_mac 02:a9:b1:1b:ad:19 dst_mac 02:c3:a2:af:93:c6 src_ip 56.129.107.143 dst_ip 41.24.196.158 ip_proto icmp code 78 type 14 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11338 flower src_mac 02:29:ff:58:1e:76 dst_mac 02:8e:af:39:01:87 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11339 flower src_mac 02:3b:a7:9a:14:31 dst_mac 02:08:95:c4:f4:02 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11340 flower src_mac 02:8b:36:ec:d7:3c dst_mac 02:98:44:97:2f:74 vlan_id 1059 vlan_ethtype ip src_ip 33.174.180.221 dst_ip 85.99.75.229 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11341 flower src_mac 02:aa:c9:ff:1a:b5 dst_mac 02:c8:c9:44:d3:52 vlan_id 1972 vlan_ethtype ip src_ip 103.115.34.72 dst_ip 53.30.136.97 ip_proto udp src_port 25658 dst_port 8206 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11342 flower src_mac 02:8b:9e:73:ff:d7 dst_mac 02:20:98:10:41:ba action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11343 flower src_mac 02:c3:5c:00:00:59 dst_mac 02:86:f9:19:7c:8f vlan_id 1904 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11344 flower src_mac 02:e5:9e:48:16:36 dst_mac 02:e7:05:21:95:29 vlan_id 1424 vlan_ethtype ipv4 src_ip 112.99.207.81 dst_ip 118.70.41.10 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11345 flower src_mac 02:55:10:5b:60:d9 dst_mac 02:2f:0f:1c:54:8c vlan_id 2600 vlan_ethtype ipv4 src_ip 91.187.1.54 dst_ip 94.105.254.124 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11346 flower src_mac 02:ec:d2:62:df:7b dst_mac 02:11:ff:0a:95:99 vlan_id 1921 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11347 flower src_mac 02:89:a6:ae:e5:ad dst_mac 02:57:f6:9a:52:a0 vlan_id 815 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11348 flower src_mac 02:e2:8a:a1:03:59 dst_mac 02:55:89:ab:22:fe action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11349 flower src_mac 02:8e:53:df:a5:6f dst_mac 02:95:d9:e3:ad:11 vlan_id 285 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11350 flower src_mac 02:75:76:a4:82:2d dst_mac 02:4e:0b:d9:f2:81 vlan_id 2426 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11351 flower src_mac 02:ef:1c:e6:c6:38 dst_mac 02:8f:59:e4:7c:60 vlan_id 2580 vlan_ethtype ipv4 src_ip 68.235.191.204 dst_ip 69.48.114.80 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11352 flower src_mac 02:9c:9f:9b:71:13 dst_mac 02:af:48:ce:fb:4e vlan_id 2899 vlan_ethtype ip src_ip 53.217.136.106 dst_ip 62.192.128.108 ip_proto tcp src_port 25503 dst_port 31643 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11353 flower src_mac 02:5a:0b:38:2d:5b dst_mac 02:2e:b7:8e:fc:ea vlan_id 1243 vlan_ethtype ipv4 src_ip 102.244.33.207 dst_ip 30.94.91.223 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11354 flower src_mac 02:ae:c3:e5:d1:6e dst_mac 02:4f:8c:7a:39:05 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11355 flower src_mac 02:08:f1:33:a4:bb dst_mac 02:d7:db:af:f2:6e vlan_id 3900 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11356 flower src_mac 02:56:82:b5:e9:5e dst_mac 02:13:07:bd:c1:32 vlan_id 759 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11357 flower src_mac 02:63:02:b9:ad:e4 dst_mac 02:71:f6:a1:ea:b3 vlan_id 1984 vlan_ethtype ipv4 src_ip 125.33.54.236 dst_ip 27.86.82.183 action drop && tc filter add dev swp33 ingress protocol ip pref 11358 flower src_mac 02:ba:66:ca:30:5a dst_mac 02:76:d0:c5:c5:b0 src_ip 12.75.165.159 dst_ip 105.24.203.193 ip_proto icmp code 159 type 18 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11359 flower src_mac 02:a9:a1:01:5e:52 dst_mac 02:b6:1f:ae:33:22 vlan_id 4072 vlan_ethtype 0x0800 src_ip 54.135.218.105 dst_ip 115.27.68.53 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11360 flower src_mac 02:8c:d1:cb:bb:b0 dst_mac 02:8f:d3:2c:79:8e vlan_id 993 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11361 flower src_mac 02:d7:e7:4a:3c:22 dst_mac 02:32:44:03:60:f9 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11362 flower src_mac 02:1a:3b:c0:a5:aa dst_mac 02:5a:ea:bf:5e:dd action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 11363 flower src_mac 02:cc:a6:db:2a:b4 dst_mac 02:59:77:a7:78:c9 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11364 flower src_mac 02:32:3f:05:a5:8b dst_mac 02:5e:1f:22:e5:e5 src_ip 106.100.160.156 dst_ip 55.249.243.160 ip_proto udp src_port 60292 dst_port 19343 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11365 flower src_mac 02:92:69:d3:b2:09 dst_mac 02:af:35:e4:22:de src_ip 105.133.232.153 dst_ip 38.41.193.220 ip_proto udp src_port 13738 dst_port 48397 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11366 flower src_mac 02:5d:cb:07:0a:92 dst_mac 02:1b:8a:9c:75:db src_ip 41.222.74.153 dst_ip 70.157.172.71 ip_proto tcp src_port 62625 dst_port 4787 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11367 flower src_mac 02:63:f3:99:32:b0 dst_mac 02:dc:94:b6:a0:68 vlan_id 3798 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11368 flower src_mac 02:30:ff:39:c2:69 dst_mac 02:67:eb:b1:42:f1 vlan_id 2497 vlan_ethtype 0x0800 src_ip 29.157.210.7 dst_ip 27.138.40.130 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11369 flower src_mac 02:06:df:b3:aa:61 dst_mac 02:36:38:01:a4:1f vlan_id 2694 vlan_ethtype ip src_ip 104.95.130.141 dst_ip 49.99.78.3 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11370 flower src_mac 02:80:32:a7:81:2b dst_mac 02:5d:56:17:09:43 vlan_id 1629 vlan_ethtype ip src_ip 31.92.146.225 dst_ip 53.238.8.12 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11371 flower src_mac 02:b6:bb:26:48:fa dst_mac 02:3a:05:66:cd:94 src_ip 66.140.223.13 dst_ip 36.51.42.65 ip_proto udp src_port 7170 dst_port 49652 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11372 flower src_mac 02:77:5e:8b:9a:12 dst_mac 02:0f:82:40:a6:df vlan_id 891 vlan_ethtype ipv4 src_ip 60.125.218.157 dst_ip 53.206.29.32 ip_proto tcp src_port 61866 dst_port 31947 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11373 flower src_mac 02:01:d3:d9:30:d2 dst_mac 02:3d:d0:b6:44:90 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11374 flower src_mac 02:ba:97:06:2d:24 dst_mac 02:ec:22:8d:eb:e8 vlan_id 10 vlan_ethtype ip src_ip 114.249.113.212 dst_ip 38.165.49.136 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11375 flower src_mac 02:ec:ab:8c:e1:d8 dst_mac 02:1e:2c:fc:10:03 src_ip 49.245.13.209 dst_ip 92.231.129.116 ip_proto udp src_port 5999 dst_port 44001 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11376 flower src_mac 02:16:f0:1d:a1:e8 dst_mac 02:4d:12:f7:2e:b3 vlan_id 133 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11377 flower src_mac 02:b5:72:74:e4:1b dst_mac 02:f1:c4:72:29:c2 vlan_id 1299 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11378 flower src_mac 02:2d:43:6d:aa:95 dst_mac 02:b1:3f:d3:12:f6 src_ip 21.172.37.141 dst_ip 20.14.35.125 ip_proto icmp code 97 type 12 action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11379 flower src_mac 02:15:6b:5c:c1:67 dst_mac 02:5f:ee:3a:59:9b src_ip 73.133.86.202 dst_ip 23.200.172.150 ip_proto udp src_port 53037 dst_port 33211 action trap && tc filter add dev swp33 ingress protocol ip pref 11380 flower src_mac 02:46:99:fd:d0:c9 dst_mac 02:51:ed:38:f8:a4 src_ip 15.242.124.105 dst_ip 85.29.234.55 ip_proto udp src_port 47219 dst_port 42757 action drop && tc filter add dev swp33 ingress protocol ip pref 11381 flower src_mac 02:9b:13:72:ed:58 dst_mac 02:b9:9b:46:88:22 src_ip 119.30.65.103 dst_ip 51.121.31.91 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11382 flower src_mac 02:ff:05:61:a9:a4 dst_mac 02:e5:d9:81:d6:6d vlan_id 3662 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11383 flower src_mac 02:e7:64:42:8e:68 dst_mac 02:42:6b:61:94:4d action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11384 flower src_mac 02:ff:a2:eb:c0:92 dst_mac 02:ea:3c:24:75:ed action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11385 flower src_mac 02:82:2c:9c:9d:7f dst_mac 02:e5:bf:ad:4a:35 vlan_id 3804 vlan_ethtype ipv4 src_ip 64.119.12.64 dst_ip 122.178.108.18 ip_proto tcp src_port 28341 dst_port 14291 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11386 flower src_mac 02:48:1d:28:44:fd dst_mac 02:44:2f:44:e6:ff action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11387 flower src_mac 02:f2:22:38:fc:a5 dst_mac 02:57:5b:e9:c4:51 vlan_id 3882 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11388 flower src_mac 02:8b:a6:13:52:c7 dst_mac 02:0b:78:c0:e0:eb src_ip 117.115.225.217 dst_ip 90.75.6.60 ip_proto tcp src_port 20972 dst_port 56070 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11389 flower src_mac 02:a3:5e:4c:f5:8d dst_mac 02:87:8a:71:a2:c2 vlan_id 442 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11390 flower src_mac 02:1c:05:9b:38:95 dst_mac 02:39:d1:7a:5b:e1 src_ip 100.8.88.188 dst_ip 68.235.145.68 ip_proto icmp code 99 type 0 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11391 flower src_mac 02:05:f7:f7:3a:77 dst_mac 02:59:6e:a8:50:0c src_ip 91.122.179.78 dst_ip 34.244.172.223 ip_proto udp src_port 51111 dst_port 55717 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11392 flower src_mac 02:d2:73:86:62:63 dst_mac 02:c5:c8:9b:55:8a vlan_id 369 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11393 flower src_mac 02:e9:0c:cc:fc:84 dst_mac 02:55:04:ac:dd:4d action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11394 flower src_mac 02:42:d5:e0:5a:f5 dst_mac 02:50:3d:20:b4:d2 vlan_id 1304 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11395 flower src_mac 02:e1:f0:9c:e7:e6 dst_mac 02:59:2c:64:7d:8e action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11396 flower src_mac 02:0e:bf:09:bb:81 dst_mac 02:f4:2b:7f:ad:c4 vlan_id 1423 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11397 flower src_mac 02:9b:67:1a:cf:68 dst_mac 02:a7:33:0e:6c:ac vlan_id 290 vlan_ethtype ip src_ip 63.158.20.86 dst_ip 42.240.30.197 ip_proto udp src_port 64220 dst_port 15769 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11398 flower src_mac 02:c6:77:32:fa:0e dst_mac 02:87:0b:85:c1:d2 action trap && tc filter add dev swp33 ingress protocol ip pref 11399 flower src_mac 02:bd:3a:10:3a:76 dst_mac 02:7b:d6:67:85:87 src_ip 19.118.149.199 dst_ip 95.117.24.109 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11400 flower src_mac 02:8c:c0:fd:92:91 dst_mac 02:e9:ea:26:a2:28 vlan_id 3084 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11401 flower src_mac 02:d8:53:e9:40:c3 dst_mac 02:2f:c8:e1:87:83 vlan_id 3543 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11402 flower src_mac 02:b8:57:39:de:38 dst_mac 02:cb:91:a9:03:b8 vlan_id 2832 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11403 flower src_mac 02:5c:73:82:7d:71 dst_mac 02:a6:7c:0d:be:5d vlan_id 3701 vlan_ethtype 0x0800 src_ip 60.29.134.73 dst_ip 115.153.53.206 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11404 flower src_mac 02:16:c1:c3:18:b1 dst_mac 02:5f:23:0c:83:97 vlan_id 3090 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11405 flower src_mac 02:10:6b:78:79:5f dst_mac 02:a6:3b:4f:b3:bd action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11406 flower src_mac 02:f6:74:5d:82:46 dst_mac 02:21:f5:80:b9:a2 vlan_id 3530 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11407 flower src_mac 02:34:48:00:05:ea dst_mac 02:81:2a:f3:49:ba vlan_id 1099 vlan_ethtype ip src_ip 117.233.173.240 dst_ip 64.49.224.8 ip_proto udp src_port 38784 dst_port 22148 action drop && tc filter add dev swp33 ingress protocol ip pref 11408 flower src_mac 02:f2:fd:dd:32:db dst_mac 02:f6:93:ad:af:c4 src_ip 23.163.146.157 dst_ip 85.60.36.45 ip_proto tcp src_port 3583 dst_port 54852 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11409 flower src_mac 02:ec:d6:af:4e:8d dst_mac 02:81:10:78:64:40 vlan_id 1120 vlan_ethtype ipv4 src_ip 120.198.47.230 dst_ip 120.73.7.62 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11410 flower src_mac 02:02:38:bc:4f:68 dst_mac 02:c8:4a:c0:c5:74 vlan_id 1080 vlan_ethtype 0x0800 src_ip 76.141.119.161 dst_ip 86.195.147.100 ip_proto tcp src_port 22163 dst_port 10630 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11411 flower src_mac 02:20:82:ec:80:53 dst_mac 02:76:75:39:81:56 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11412 flower src_mac 02:42:03:30:d8:89 dst_mac 02:b1:89:e7:97:d1 vlan_id 2604 vlan_ethtype ipv4 src_ip 121.64.48.124 dst_ip 49.81.170.29 ip_proto udp src_port 2522 dst_port 49723 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11413 flower src_mac 02:80:ae:b2:22:06 dst_mac 02:c4:3b:31:5d:e0 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11414 flower src_mac 02:cd:20:c2:65:58 dst_mac 02:d7:10:e7:66:a7 vlan_id 3743 vlan_ethtype ip src_ip 64.206.18.148 dst_ip 124.53.236.53 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11415 flower src_mac 02:f4:86:58:79:47 dst_mac 02:9a:21:f5:ff:2b src_ip 37.88.88.193 dst_ip 37.135.13.179 ip_proto tcp src_port 49563 dst_port 1207 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11416 flower src_mac 02:59:c6:7d:e2:91 dst_mac 02:1e:23:1e:a5:18 src_ip 33.57.164.72 dst_ip 52.47.66.24 ip_proto tcp src_port 62920 dst_port 11169 action trap && tc filter add dev swp33 ingress protocol ip pref 11417 flower src_mac 02:d3:8a:1a:b7:86 dst_mac 02:11:27:71:a2:23 src_ip 75.150.150.96 dst_ip 64.186.8.47 ip_proto tcp src_port 34335 dst_port 22147 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11418 flower src_mac 02:cd:13:fe:e3:2f dst_mac 02:17:a9:93:3f:e0 vlan_id 3944 vlan_ethtype ipv4 src_ip 91.89.140.78 dst_ip 26.136.51.225 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11419 flower src_mac 02:33:2f:e3:e6:e9 dst_mac 02:49:0d:9f:8a:da src_ip 60.34.66.226 dst_ip 94.247.168.77 ip_proto icmp code 141 type 14 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11420 flower src_mac 02:18:54:6a:24:08 dst_mac 02:2e:e7:9f:23:6e vlan_id 1615 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11421 flower src_mac 02:bf:ef:a2:f0:df dst_mac 02:1e:07:1d:59:01 vlan_id 1590 vlan_ethtype 0x0800 src_ip 21.204.191.26 dst_ip 22.50.143.215 action drop && tc filter add dev swp33 ingress protocol ip pref 11422 flower src_mac 02:73:1f:f4:4d:6c dst_mac 02:08:d4:4e:1e:1e src_ip 84.193.41.58 dst_ip 37.228.47.247 ip_proto tcp src_port 57414 dst_port 52639 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11423 flower src_mac 02:12:40:d8:8c:d1 dst_mac 02:8b:37:43:75:61 vlan_id 2728 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol ip pref 11424 flower src_mac 02:d6:1c:6c:c6:0f dst_mac 02:5b:2b:9b:c4:61 src_ip 50.133.245.216 dst_ip 101.29.141.18 ip_proto icmp code 229 type 5 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11425 flower src_mac 02:51:ee:df:34:7a dst_mac 02:95:be:aa:bf:2c vlan_id 3921 vlan_ethtype ip src_ip 85.225.93.146 dst_ip 16.86.184.21 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11426 flower src_mac 02:3c:aa:b7:12:01 dst_mac 02:18:2b:76:71:67 vlan_id 2510 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11427 flower src_mac 02:dd:fc:cd:3c:18 dst_mac 02:87:1f:41:36:8c vlan_id 3195 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11428 flower src_mac 02:aa:1d:d8:5d:f6 dst_mac 02:04:c6:81:18:47 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11429 flower src_mac 02:b4:ec:84:c3:0f dst_mac 02:23:fe:a2:cf:28 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11430 flower src_mac 02:10:67:09:14:f5 dst_mac 02:b0:e6:52:01:c7 vlan_id 2927 vlan_ethtype ipv4 src_ip 27.238.70.81 dst_ip 62.178.104.85 ip_proto tcp src_port 23707 dst_port 55685 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11431 flower src_mac 02:85:14:73:30:78 dst_mac 02:f6:d0:95:2c:49 vlan_id 1291 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11432 flower src_mac 02:ec:57:65:f3:48 dst_mac 02:d3:76:74:fb:7e action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11433 flower src_mac 02:ca:83:85:cc:e6 dst_mac 02:6a:56:16:d7:3b vlan_id 2179 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11434 flower src_mac 02:e5:e7:65:78:d8 dst_mac 02:ef:37:e0:cb:a1 vlan_id 3576 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11435 flower src_mac 02:70:91:67:dd:50 dst_mac 02:a0:ac:b5:32:69 vlan_id 3002 vlan_ethtype ipv4 src_ip 69.12.181.190 dst_ip 11.109.175.78 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11436 flower src_mac 02:d3:e2:be:68:5b dst_mac 02:c5:a4:33:b9:bd vlan_id 2572 vlan_ethtype 0x0800 src_ip 64.94.234.198 dst_ip 28.18.249.203 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11437 flower src_mac 02:a9:c4:3c:56:2b dst_mac 02:6b:ec:2b:f0:db vlan_id 3613 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11438 flower src_mac 02:09:e2:47:78:a9 dst_mac 02:de:f0:7c:58:b3 vlan_id 685 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11439 flower src_mac 02:8e:ae:c7:2a:8b dst_mac 02:89:32:c1:1d:82 vlan_id 1316 vlan_ethtype ip src_ip 52.122.113.13 dst_ip 115.113.201.113 ip_proto udp src_port 30461 dst_port 29854 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11440 flower src_mac 02:54:a1:bf:30:3a dst_mac 02:ca:7a:be:d5:f6 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11441 flower src_mac 02:c1:2e:6e:b8:76 dst_mac 02:ff:c3:c4:41:84 vlan_id 363 vlan_ethtype 0x0800 src_ip 22.182.199.64 dst_ip 70.68.20.228 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11442 flower src_mac 02:49:de:8d:a8:e9 dst_mac 02:40:7f:0c:7e:18 src_ip 84.231.224.82 dst_ip 16.17.155.246 ip_proto icmp code 2 type 16 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11443 flower src_mac 02:c9:69:da:6d:75 dst_mac 02:35:aa:c2:50:f4 vlan_id 3219 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11444 flower src_mac 02:ee:ea:b3:1e:75 dst_mac 02:5a:62:c5:fd:e5 src_ip 13.61.103.59 dst_ip 22.242.163.187 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11445 flower src_mac 02:42:6a:98:61:21 dst_mac 02:11:b5:0c:50:55 src_ip 66.21.94.106 dst_ip 104.121.243.58 ip_proto udp src_port 28082 dst_port 54515 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11446 flower src_mac 02:b0:46:78:7d:b2 dst_mac 02:32:3f:b8:16:1d action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11447 flower src_mac 02:4f:fb:89:77:6f dst_mac 02:ad:ec:d8:e8:35 vlan_id 1091 vlan_ethtype 0x0800 src_ip 76.81.182.118 dst_ip 14.164.65.105 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11448 flower src_mac 02:00:9e:c4:57:fd dst_mac 02:db:03:bd:d8:57 vlan_id 2071 vlan_ethtype ip src_ip 126.125.130.223 dst_ip 80.210.161.142 ip_proto udp src_port 60786 dst_port 26732 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11449 flower src_mac 02:b5:1a:5a:7f:f2 dst_mac 02:10:fb:83:90:59 vlan_id 2791 vlan_ethtype ip src_ip 121.2.69.197 dst_ip 49.132.109.45 action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11450 flower src_mac 02:4a:6e:33:f1:13 dst_mac 02:61:75:d0:64:b6 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11451 flower src_mac 02:27:82:11:dc:b8 dst_mac 02:14:b3:70:73:66 vlan_id 441 vlan_ethtype 0x9200 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11452 flower src_mac 02:ed:db:bc:d6:2a dst_mac 02:0a:bc:f3:46:f6 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11453 flower src_mac 02:4c:b9:3c:cc:53 dst_mac 02:6e:b8:0b:01:ae src_ip 110.188.254.100 dst_ip 51.7.82.191 ip_proto tcp src_port 45867 dst_port 21735 action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11454 flower src_mac 02:19:e6:30:be:7c dst_mac 02:16:db:f1:5a:b7 src_ip 75.235.162.161 dst_ip 116.224.15.128 ip_proto tcp src_port 18067 dst_port 35000 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11455 flower src_mac 02:b4:2c:bd:26:ab dst_mac 02:2e:29:0e:87:3b src_ip 17.88.168.117 dst_ip 86.31.194.244 ip_proto udp src_port 25583 dst_port 32227 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11456 flower src_mac 02:c6:7a:ca:7d:43 dst_mac 02:fa:9b:ff:59:fd action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11457 flower src_mac 02:a3:2a:8b:84:d4 dst_mac 02:c7:23:1c:aa:68 vlan_id 1604 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11458 flower src_mac 02:81:5c:9d:bd:23 dst_mac 02:da:f6:6a:22:82 src_ip 105.40.214.51 dst_ip 79.139.210.36 ip_proto udp src_port 56616 dst_port 540 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11459 flower src_mac 02:27:c4:99:dc:0a dst_mac 02:a0:9c:74:c2:c0 vlan_id 3740 vlan_ethtype ipv4 src_ip 92.228.51.60 dst_ip 117.141.74.249 ip_proto tcp src_port 43182 dst_port 6300 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11460 flower src_mac 02:69:23:ed:06:51 dst_mac 02:0e:96:61:a1:6b vlan_id 689 vlan_ethtype ipv4 src_ip 112.52.204.204 dst_ip 36.136.64.129 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11461 flower src_mac 02:2a:67:02:62:a6 dst_mac 02:4d:83:5b:ed:b9 vlan_id 1261 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11462 flower src_mac 02:ba:64:35:15:97 dst_mac 02:b2:e4:a2:96:15 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11463 flower src_mac 02:79:d3:3a:35:c4 dst_mac 02:33:76:24:c8:69 vlan_id 2280 vlan_ethtype 0x0800 src_ip 99.15.84.80 dst_ip 90.36.65.184 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11464 flower src_mac 02:07:36:57:86:4f dst_mac 02:91:9f:38:9f:73 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11465 flower src_mac 02:d4:b8:05:04:60 dst_mac 02:c0:aa:df:82:e5 vlan_id 542 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol ipv4 pref 11466 flower src_mac 02:09:18:43:75:a7 dst_mac 02:c0:32:d8:e5:bb src_ip 72.80.199.135 dst_ip 89.122.5.76 ip_proto udp src_port 48463 dst_port 35766 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11467 flower src_mac 02:9d:2e:89:e1:77 dst_mac 02:b1:de:dc:f5:72 vlan_id 2882 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11468 flower src_mac 02:70:f9:56:b5:1c dst_mac 02:c2:0d:3b:91:9b action drop && tc filter add dev swp33 ingress protocol 0x9300 pref 11469 flower src_mac 02:a8:3f:d9:d0:e8 dst_mac 02:bd:46:d2:53:d5 action pass && tc filter add dev swp33 ingress protocol 0x9200 pref 11470 flower src_mac 02:a1:81:11:f6:c8 dst_mac 02:73:53:ca:37:c1 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11471 flower src_mac 02:83:9e:71:2a:75 dst_mac 02:c9:ac:0d:c8:ca action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11472 flower src_mac 02:16:97:92:ef:9f dst_mac 02:16:b5:fe:65:30 vlan_id 2203 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11473 flower src_mac 02:a3:52:30:ef:5f dst_mac 02:1d:0d:54:91:de action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11474 flower src_mac 02:d8:53:71:e5:b2 dst_mac 02:ab:49:9f:3b:15 vlan_id 2869 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol ip pref 11475 flower src_mac 02:aa:09:46:72:50 dst_mac 02:ad:f5:b2:cb:50 src_ip 26.207.218.214 dst_ip 110.32.93.142 ip_proto tcp src_port 32620 dst_port 47785 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11476 flower src_mac 02:c3:36:e0:c4:ec dst_mac 02:c9:42:d8:7e:85 src_ip 126.185.38.23 dst_ip 123.143.136.82 ip_proto udp src_port 16097 dst_port 27999 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11477 flower src_mac 02:d3:27:5e:d5:15 dst_mac 02:7a:95:c2:4e:c8 vlan_id 3148 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11478 flower src_mac 02:3b:8e:df:14:8d dst_mac 02:bc:34:4a:ca:4e vlan_id 2331 vlan_ethtype 0x9200 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11479 flower src_mac 02:09:60:a9:51:7a dst_mac 02:52:1b:10:fa:04 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11480 flower src_mac 02:02:28:8a:0a:ea dst_mac 02:3c:8c:4e:80:b1 vlan_id 3544 vlan_ethtype 0x0800 src_ip 107.23.195.20 dst_ip 86.84.18.207 ip_proto tcp src_port 16571 dst_port 48142 action drop && tc filter add dev swp33 ingress protocol ip pref 11481 flower src_mac 02:4f:fb:81:1c:d4 dst_mac 02:ac:45:66:d5:2d src_ip 73.98.205.33 dst_ip 36.6.41.137 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11482 flower src_mac 02:7c:b2:f1:10:cb dst_mac 02:8d:ef:51:b6:be vlan_id 3858 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11483 flower src_mac 02:b6:e6:f2:23:4f dst_mac 02:25:9a:35:c8:3a vlan_id 3594 vlan_ethtype ipv4 src_ip 16.50.78.242 dst_ip 103.72.100.33 ip_proto udp src_port 46400 dst_port 34202 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11484 flower src_mac 02:82:eb:47:1e:cf dst_mac 02:d9:05:00:9c:aa src_ip 67.9.74.27 dst_ip 120.217.71.117 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11485 flower src_mac 02:78:d8:c3:31:5e dst_mac 02:20:4d:47:91:ad action trap && tc filter add dev swp33 ingress protocol ip pref 11486 flower src_mac 02:6b:0a:28:e4:b3 dst_mac 02:e2:69:61:b2:29 src_ip 12.91.104.91 dst_ip 99.171.118.134 ip_proto icmp code 231 type 17 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11487 flower src_mac 02:ed:59:aa:fa:d7 dst_mac 02:2c:8c:43:61:b6 vlan_id 553 vlan_ethtype 0x9100 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11488 flower src_mac 02:6b:b2:13:65:e5 dst_mac 02:82:85:a4:28:12 vlan_id 622 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11489 flower src_mac 02:87:44:07:56:b6 dst_mac 02:0d:8c:81:e0:fa vlan_id 2787 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 11490 flower src_mac 02:c8:41:dd:39:f1 dst_mac 02:99:1c:82:3d:6e action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11491 flower src_mac 02:0b:e5:af:f1:4e dst_mac 02:72:54:e1:f4:66 src_ip 84.3.126.249 dst_ip 25.249.229.16 ip_proto icmp code 238 type 11 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11492 flower src_mac 02:f5:3e:7b:5a:8a dst_mac 02:34:e6:35:7c:3a src_ip 50.156.109.240 dst_ip 71.247.53.187 ip_proto udp src_port 20208 dst_port 48589 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11493 flower src_mac 02:e8:b7:cf:b9:d4 dst_mac 02:d4:3a:c5:43:bd vlan_id 395 vlan_ethtype ipv4 src_ip 14.155.136.137 dst_ip 96.110.65.145 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11494 flower src_mac 02:f5:1d:87:01:6b dst_mac 02:af:12:61:db:a3 vlan_id 2454 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11495 flower src_mac 02:43:69:95:68:bc dst_mac 02:16:14:11:66:2e vlan_id 2555 vlan_ethtype 0x9100 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11496 flower src_mac 02:71:98:66:b9:30 dst_mac 02:55:0c:42:68:30 vlan_id 3749 vlan_ethtype 0x9300 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11497 flower src_mac 02:27:32:a2:d2:24 dst_mac 02:97:0c:d1:c1:0c vlan_id 2530 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11498 flower src_mac 02:e2:50:10:5f:80 dst_mac 02:de:00:bd:a9:3f vlan_id 2458 vlan_ethtype 0x0800 src_ip 125.32.87.52 dst_ip 48.215.152.51 ip_proto udp src_port 64115 dst_port 48233 action trap && tc filter add dev swp33 ingress protocol 0x9200 pref 11499 flower src_mac 02:34:66:a4:3d:4e dst_mac 02:83:d7:97:b9:0e action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11500 flower src_mac 02:b3:0c:37:e0:c8 dst_mac 02:99:9a:33:35:39 vlan_id 2125 vlan_ethtype 0x9300 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11501 flower src_mac 02:07:2b:d5:7e:46 dst_mac 02:ef:06:46:8e:cf vlan_id 3560 vlan_ethtype 0x0800 src_ip 101.249.130.215 dst_ip 48.158.192.92 ip_proto udp src_port 33456 dst_port 38314 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11502 flower src_mac 02:95:cd:03:b2:80 dst_mac 02:11:35:d7:4f:de vlan_id 3110 vlan_ethtype ip src_ip 50.202.78.140 dst_ip 121.6.107.136 ip_proto udp src_port 35388 dst_port 44289 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11503 flower src_mac 02:cb:10:15:33:8b dst_mac 02:fb:98:7a:16:3f action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11504 flower src_mac 02:4b:be:5c:ec:9f dst_mac 02:53:e3:3f:4d:53 src_ip 43.52.26.29 dst_ip 32.253.23.95 action trap && tc filter add dev swp33 ingress protocol 0x9300 pref 11505 flower src_mac 02:0a:d0:c4:4c:ce dst_mac 02:0e:8e:e8:4a:2c action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11506 flower src_mac 02:da:c6:c7:aa:06 dst_mac 02:4d:c0:02:5f:88 src_ip 88.192.184.120 dst_ip 109.50.114.51 action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11507 flower src_mac 02:b7:8e:d8:a1:7c dst_mac 02:72:ac:df:78:14 action trap && tc filter add dev swp33 ingress protocol ip pref 11508 flower src_mac 02:45:62:c3:d7:04 dst_mac 02:d3:0c:39:c3:21 src_ip 91.122.33.14 dst_ip 44.35.11.248 ip_proto icmp code 240 type 4 action trap && tc filter add dev swp33 ingress protocol ip pref 11509 flower src_mac 02:1c:20:e0:d3:73 dst_mac 02:7d:6e:6f:8c:db src_ip 115.26.49.137 dst_ip 121.112.159.141 ip_proto udp src_port 55528 dst_port 28930 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11510 flower src_mac 02:9f:24:36:c6:34 dst_mac 02:1c:7f:9f:75:25 vlan_id 1914 vlan_ethtype 0x0800 src_ip 46.253.168.216 dst_ip 84.36.10.235 ip_proto tcp src_port 9334 dst_port 15948 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11511 flower src_mac 02:4b:a1:14:c8:3b dst_mac 02:08:c3:f6:eb:1b action pass && tc filter add dev swp33 ingress protocol 0x0800 pref 11512 flower src_mac 02:f8:c4:28:ab:78 dst_mac 02:26:7d:f1:43:54 src_ip 125.30.242.2 dst_ip 28.160.167.111 ip_proto tcp src_port 36553 dst_port 41869 action pass && tc filter add dev swp33 ingress protocol 802.1q pref 11513 flower src_mac 02:9a:0d:38:42:29 dst_mac 02:4d:dd:fc:ff:6f vlan_id 648 vlan_ethtype ip src_ip 94.195.95.245 dst_ip 59.172.209.204 ip_proto udp src_port 34774 dst_port 947 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11514 flower src_mac 02:cc:05:5e:b7:f0 dst_mac 02:0e:37:8a:e2:77 vlan_id 2639 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11515 flower src_mac 02:62:24:1a:a3:1c dst_mac 02:e8:54:a6:30:6c action drop && tc filter add dev swp33 ingress protocol 0x9200 pref 11516 flower src_mac 02:8c:a8:45:6a:24 dst_mac 02:04:a1:c3:82:2e action pass && tc filter add dev swp33 ingress protocol ipv4 pref 11517 flower src_mac 02:2c:66:1a:43:53 dst_mac 02:07:18:5b:6a:27 src_ip 27.195.115.97 dst_ip 110.90.34.248 ip_proto tcp src_port 38470 dst_port 44120 action pass && tc filter add dev swp33 ingress protocol 0x9300 pref 11518 flower src_mac 02:f2:34:44:16:d0 dst_mac 02:47:cd:c1:9e:dc action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11519 flower src_mac 02:3c:e2:56:5a:ab dst_mac 02:86:da:07:06:92 vlan_id 3414 vlan_ethtype 0x0800 src_ip 118.7.35.51 dst_ip 65.22.185.23 action pass && tc filter add dev swp33 ingress protocol 0x8100 pref 11520 flower src_mac 02:bc:f5:a7:be:56 dst_mac 02:6e:c4:82:ac:4b vlan_id 1704 vlan_ethtype 0x9200 action pass && tc filter add dev swp33 ingress protocol 0x9100 pref 11521 flower src_mac 02:1e:14:12:14:17 dst_mac 02:97:6d:a4:78:32 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11522 flower src_mac 02:51:78:70:5f:a7 dst_mac 02:5d:76:33:6c:4c vlan_id 3729 vlan_ethtype 0x0800 src_ip 75.156.234.201 dst_ip 38.94.59.57 ip_proto udp src_port 48887 dst_port 9863 action trap && tc filter add dev swp33 ingress protocol 802.1q pref 11523 flower src_mac 02:b5:a5:c2:e3:88 dst_mac 02:39:0d:10:7a:d6 vlan_id 3134 vlan_ethtype 0x0800 src_ip 55.98.17.248 dst_ip 64.111.92.202 ip_proto udp src_port 783 dst_port 17116 action drop && tc filter add dev swp33 ingress protocol 0x9100 pref 11524 flower src_mac 02:84:43:fe:46:7b dst_mac 02:bc:45:0a:99:10 action drop && tc filter add dev swp33 ingress protocol 0x0800 pref 11525 flower src_mac 02:cb:5e:87:34:cc dst_mac 02:2b:d0:aa:57:71 src_ip 94.109.156.202 dst_ip 122.26.196.140 ip_proto udp src_port 46525 dst_port 18623 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11526 flower src_mac 02:6a:52:f6:4b:d4 dst_mac 02:27:41:79:1c:8d vlan_id 2225 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol 0x0800 pref 11527 flower src_mac 02:7d:c5:f1:19:4c dst_mac 02:21:d1:9e:bd:44 src_ip 14.84.35.171 dst_ip 26.16.64.5 ip_proto tcp src_port 21045 dst_port 52683 action trap && tc filter add dev swp33 ingress protocol 0x8100 pref 11528 flower src_mac 02:18:f2:24:f6:97 dst_mac 02:38:66:d1:e5:97 vlan_id 3793 vlan_ethtype 0x0800 src_ip 75.217.5.158 dst_ip 63.120.24.222 ip_proto tcp src_port 16003 dst_port 18153 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11529 flower src_mac 02:68:33:7b:53:44 dst_mac 02:11:95:bf:1b:e0 vlan_id 2879 vlan_ethtype 0x9300 action trap && tc filter add dev swp33 ingress protocol ipv4 pref 11530 flower src_mac 02:09:b0:b6:2e:ab dst_mac 02:95:31:c0:c8:11 src_ip 57.182.114.40 dst_ip 97.232.53.44 ip_proto udp src_port 24380 dst_port 27385 action pass && tc filter add dev swp33 ingress protocol ip pref 11531 flower src_mac 02:9c:55:1d:5c:18 dst_mac 02:be:30:25:b1:29 src_ip 121.75.47.152 dst_ip 12.12.249.59 ip_proto tcp src_port 35127 dst_port 4893 action trap && tc filter add dev swp33 ingress protocol 0x9100 pref 11532 flower src_mac 02:eb:45:78:2c:fc dst_mac 02:be:72:00:7e:84 action drop && tc filter add dev swp33 ingress protocol 802.1q pref 11533 flower src_mac 02:42:f7:45:8c:e3 dst_mac 02:4e:63:da:af:c0 vlan_id 2430 vlan_ethtype 0x0800 src_ip 27.110.234.94 dst_ip 52.96.100.126 action drop && tc filter add dev swp33 ingress protocol 0x8100 pref 11534 flower src_mac 02:09:85:35:b3:a4 dst_mac 02:a7:38:2a:5a:8a vlan_id 1387 vlan_ethtype 0x9100 action pass && tc filter add dev swp33 ingress protocol ip pref 11535 flower src_mac 02:b3:8b:bc:72:d0 dst_mac 02:11:a1:5a:d4:e3 src_ip 21.170.57.100 dst_ip 32.130.158.85 ip_proto icmp code 41 type 15 action pass INFO asyncssh:logging.py:92 [conn=24, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=24, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=11] Channel closed DEBUG infra2:Logger.py:156 tc filter show dev swp33 ingress | grep action | wc -l INFO asyncssh:logging.py:92 [conn=24, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=12] Command: tc filter show dev swp33 ingress | grep action | wc -l INFO asyncssh:logging.py:92 [conn=24, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=12] Channel closed DEBUG infra2:Logger.py:156 1536 INFO asyncssh:logging.py:92 [conn=24, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=13] Channel closed DEBUG infra2:Logger.py:156 tc filter show dev swp33 ingress | grep in_hw | wc -l INFO asyncssh:logging.py:92 [conn=24, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=14] Command: tc filter show dev swp33 ingress | grep in_hw | wc -l INFO asyncssh:logging.py:92 [conn=24, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=14] Channel closed DEBUG infra2:Logger.py:156 1536 INFO DENT:Logger.py:84 [DENT infrastructure 2] Total number of rules: 1536, offloaded: 1536 INFO asyncssh:logging.py:92 [conn=24, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=15] Channel closed DEBUG infra2:Logger.py:156 tc filter delete dev swp33 ingress pref 10000 && tc filter delete dev swp33 ingress pref 11535 INFO asyncssh:logging.py:92 [conn=24, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=16] Command: tc filter delete dev swp33 ingress pref 10000 && tc filter delete dev swp33 ingress pref 11535 INFO asyncssh:logging.py:92 [conn=24, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=24, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=17] Channel closed DEBUG infra2:Logger.py:156 tc filter show dev swp33 ingress pref 10000 && tc filter show dev swp33 ingress pref 11535 INFO asyncssh:logging.py:92 [conn=24, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=18] Command: tc filter show dev swp33 ingress pref 10000 && tc filter show dev swp33 ingress pref 11535 INFO asyncssh:logging.py:92 [conn=24, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=18] Channel closed DEBUG infra2:Logger.py:156 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_rule_deletion from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl.py INFO asyncssh:logging.py:92 [conn=24, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=19] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=24, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=20] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 18:01:09 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=24, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=24, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=22] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=24, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=22] Channel closed DEBUG infra2:Logger.py:156 [] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=24, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=23] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=24, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=24] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 18:01:09 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=24, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=25] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=24, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=26] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 18:01:09 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=24, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=27] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=24, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=28] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=24, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=28] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=24, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=29] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=24, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=30] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=24, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=24, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=30] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=24, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=31] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=24, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=32] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=24, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=24, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=32] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=24, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=33] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=24, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=24, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=24, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=34] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=24, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=35] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=24, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=24, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=24, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=36] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=24, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=37] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=24, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=24, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=24, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=38] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=24, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=24, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=24, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=24, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=40] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=24, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=24, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=24, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=24, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=42] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=24, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=24, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=24, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=24, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=24, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=24, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=24, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=24, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=46] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=24, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=24, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=24, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=24, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=48] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=24, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=24, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=50] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=24, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=24, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=50] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=24, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=24, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=52] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=24, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=52] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=24, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=24, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=54] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=24, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=24, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=54] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=24, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=55] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=24, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=56] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=24, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=24, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=56] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=24, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=24, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=24, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=57] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=24, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=24, chan=58] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=24, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=24, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=24, chan=58] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/acl/test_acl.py::test_acl_addition_deletion_under_traffic | 168.29 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_addition_deletion_under_traffic">Starting testcase:test_acl_addition_deletion_under_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-1408' coro=<test_acl_addition_deletion_under_traffic() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl.py:272> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=24, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=25] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=25] Local address: 172.17.0.3, port 52012 INFO asyncssh:logging.py:92 [conn=25] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=25] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=25] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=25, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 18:01:14 UTC 2023 INFO asyncssh:logging.py:92 [conn=25, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=25, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=2] Command: ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=25, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=25, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=25, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=4] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=25, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=25, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=5] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=25, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=6] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=25, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=25, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=7] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol ipv4 pref 49000 flower skip_sw src_ip 85.93.105.173 dst_ip 101.173.82.181 ip_proto udp src_port 19215 dst_port 33398 action pass && tc filter add dev swp33 ingress pref 49001 flower skip_sw action drop INFO asyncssh:logging.py:92 [conn=25, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=8] Command: tc filter add dev swp33 ingress protocol ipv4 pref 49000 flower skip_sw src_ip 85.93.105.173 dst_ip 101.173.82.181 ip_proto udp src_port 19215 dst_port 33398 action pass && tc filter add dev swp33 ingress pref 49001 flower skip_sw action drop INFO asyncssh:logging.py:92 [conn=25, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=25, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=9] Channel closed DEBUG infra2:Logger.py:156 tc -j filter show dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=25, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=10] Command: tc -j filter show dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=25, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=10] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"ip","kind":"flower","chain":0},{"protocol":"ip","kind":"flower","chain":0,"options":{"handle":1,"keys":{"eth_type":"ipv4","ip_proto":"udp","dst_ip":"101.173.82.181","src_ip":"85.93.105.173","dst_port":33398,"src_port":19215},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"pass"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_eth_type_ipv4_ip_proto_udp_dst_ip_101.173.82.181_src_ip_85.93.105.173_dst_port_33398_src_port_19215 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clearing Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clear Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_stats', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f76be260>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_eth_type_ipv4_ip_proto_udp_dst_ip_101.173.82.181_src_ip_85.93.105.173_dst_port_33398_src_port_19215 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 99874 Rx 99874 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_eth_type_ipv4_ip_proto_udp_dst_ip_101.173.82.181_src_ip_85.93.105.173_dst_port_33398_src_port_19215 Tx Frames: 99874, Rx Frames: 99874, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO asyncssh:logging.py:92 [conn=25, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=11] Channel closed DEBUG infra2:Logger.py:156 tc filter delete dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=25, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=12] Command: tc filter delete dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=25, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clearing Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clear Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_stats', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f7578a90>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_eth_type_ipv4_ip_proto_udp_dst_ip_101.173.82.181_src_ip_85.93.105.173_dst_port_33398_src_port_19215 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 89333 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_eth_type_ipv4_ip_proto_udp_dst_ip_101.173.82.181_src_ip_85.93.105.173_dst_port_33398_src_port_19215 Tx Frames: 89333, Rx Frames: 0, loss = 100.0, expected_loss = 100.000 (max tolerance = 0.05) INFO asyncssh:logging.py:92 [conn=25, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=13] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol ipv4 pref 49000 flower skip_sw src_ip 85.93.105.173 dst_ip 101.173.82.181 ip_proto udp src_port 19215 dst_port 33398 action pass INFO asyncssh:logging.py:92 [conn=25, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=14] Command: tc filter add dev swp33 ingress protocol ipv4 pref 49000 flower skip_sw src_ip 85.93.105.173 dst_ip 101.173.82.181 ip_proto udp src_port 19215 dst_port 33398 action pass INFO asyncssh:logging.py:92 [conn=25, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clearing Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clear Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_stats', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f7510fd0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_eth_type_ipv4_ip_proto_udp_dst_ip_101.173.82.181_src_ip_85.93.105.173_dst_port_33398_src_port_19215 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 84865 Rx 84865 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_eth_type_ipv4_ip_proto_udp_dst_ip_101.173.82.181_src_ip_85.93.105.173_dst_port_33398_src_port_19215 Tx Frames: 104865, Rx Frames: 104865, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_addition_deletion_under_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl.py INFO asyncssh:logging.py:92 [conn=25, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=15] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=25, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=16] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 18:04:01 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=25, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=25, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=25, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=18] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":79,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=25, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=25, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=20] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=25, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=25, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=21] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=25, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=22] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 18:04:01 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=25, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=23] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=25, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=24] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 18:04:02 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=25, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=25] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=25, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=26] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=25, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=26] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=25, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=27] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=25, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=28] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=25, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=25, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=28] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=25, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=29] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=25, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=30] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=25, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=25, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=30] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=25, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=31] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=25, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=25, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=25, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=32] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=25, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=33] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=25, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=25, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=25, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=34] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=25, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=35] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=25, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=25, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=25, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=36] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=25, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=37] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=25, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=25, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=25, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=38] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=25, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=25, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=25, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=25, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=40] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=25, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=25, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=25, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=25, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=42] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=25, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=25, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=25, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=25, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=25, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=25, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=25, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=25, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=46] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=25, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=25, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=48] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=25, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=25, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=48] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=25, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=25, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=50] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=25, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=50] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=25, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=25, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=52] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=25, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=25, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=52] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=25, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=25, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=54] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=25, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=25, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=54] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=25, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=25, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=25, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=55] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=25, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=25, chan=56] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=25, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=25, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=25, chan=56] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/acl/test_acl_all_selectors.py::test_acl_all_selectors[shared_block-tagged-pass] | 180.00 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_all_selectors[shared_block-tagged-pass]">Starting testcase:test_acl_all_selectors[shared_block-tagged-pass] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-1477' coro=<test_acl_all_selectors() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py:117> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=25, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=26] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=26] Local address: 172.17.0.3, port 58520 INFO asyncssh:logging.py:92 [conn=26] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=26] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=26] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=26, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 18:04:02 UTC 2023 INFO asyncssh:logging.py:92 [conn=26, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add name br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=26, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=2] Command: ip link add name br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=26, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=26, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=26, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=4] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=26, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=26, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=5] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp33 vid 476 && bridge vlan add dev swp34 vid 476 INFO asyncssh:logging.py:92 [conn=26, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=6] Command: bridge vlan add dev swp33 vid 476 && bridge vlan add dev swp34 vid 476 INFO asyncssh:logging.py:92 [conn=26, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=26, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=7] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp33 ingress_block 1 ingress INFO asyncssh:logging.py:92 [conn=26, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=8] Command: tc qdisc add dev swp33 ingress_block 1 ingress INFO asyncssh:logging.py:92 [conn=26, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=26, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=9] Channel closed DEBUG infra2:Logger.py:156 tc filter add block 1 ingress protocol 802.1q pref 49000 flower skip_sw src_mac 02:00:97:04:cb:a1 dst_mac 02:21:39:df:ad:4f vlan_id 476 vlan_ethtype ip src_ip 109.24.152.30 dst_ip 83.188.10.138 ip_proto udp src_port 55197 dst_port 46529 action pass INFO asyncssh:logging.py:92 [conn=26, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=10] Command: tc filter add block 1 ingress protocol 802.1q pref 49000 flower skip_sw src_mac 02:00:97:04:cb:a1 dst_mac 02:21:39:df:ad:4f vlan_id 476 vlan_ethtype ip src_ip 109.24.152.30 dst_ip 83.188.10.138 ip_proto udp src_port 55197 dst_port 46529 action pass INFO asyncssh:logging.py:92 [conn=26, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=26, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=11] Channel closed DEBUG infra2:Logger.py:156 tc -j filter show block 1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=26, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=12] Command: tc -j filter show block 1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=26, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=12] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"802.1Q","kind":"flower","chain":0},{"protocol":"802.1Q","kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":476,"vlan_ethtype":"ip","dst_mac":"02:21:39:df:ad:4f","src_mac":"02:00:97:04:cb:a1","eth_type":"ipv4","ip_proto":"udp","dst_ip":"83.188.10.138","src_ip":"109.24.152.30","dst_port":46529,"src_port":55197},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"pass"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': 476, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': 476, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_476_vlan_ethtype_ip_dst_mac_02:21:39:df:ad:4f_src_mac_02:00:97:04:cb:a1_eth_type_ipv4_ip_proto_udp_dst_ip_83.188.10.138_src_ip_109.24.152.30_dst_port_46529_src_port_55197 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_476_vlan_ethtype_ip_dst_mac_02:21:39:df:ad:4f_src_mac_02:00:97:04:cb:a1_eth_type_ipv4_ip_proto_udp_dst_ip_83.188.10.138_src_ip_109.24.152.30_dst_port_46529_src_port_55197_unmatch_srcMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_476_vlan_ethtype_ip_dst_mac_02:21:39:df:ad:4f_src_mac_02:00:97:04:cb:a1_eth_type_ipv4_ip_proto_udp_dst_ip_83.188.10.138_src_ip_109.24.152.30_dst_port_46529_src_port_55197_unmatch_dstMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_476_vlan_ethtype_ip_dst_mac_02:21:39:df:ad:4f_src_mac_02:00:97:04:cb:a1_eth_type_ipv4_ip_proto_udp_dst_ip_83.188.10.138_src_ip_109.24.152.30_dst_port_46529_src_port_55197_unmatch_vlanID INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_476_vlan_ethtype_ip_dst_mac_02:21:39:df:ad:4f_src_mac_02:00:97:04:cb:a1_eth_type_ipv4_ip_proto_udp_dst_ip_83.188.10.138_src_ip_109.24.152.30_dst_port_46529_src_port_55197_unmatch_srcIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_476_vlan_ethtype_ip_dst_mac_02:21:39:df:ad:4f_src_mac_02:00:97:04:cb:a1_eth_type_ipv4_ip_proto_udp_dst_ip_83.188.10.138_src_ip_109.24.152.30_dst_port_46529_src_port_55197_unmatch_dstIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_476_vlan_ethtype_ip_dst_mac_02:21:39:df:ad:4f_src_mac_02:00:97:04:cb:a1_eth_type_ipv4_ip_proto_udp_dst_ip_83.188.10.138_src_ip_109.24.152.30_dst_port_46529_src_port_55197_unmatch_srcPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_476_vlan_ethtype_ip_dst_mac_02:21:39:df:ad:4f_src_mac_02:00:97:04:cb:a1_eth_type_ipv4_ip_proto_udp_dst_ip_83.188.10.138_src_ip_109.24.152.30_dst_port_46529_src_port_55197_unmatch_dstPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f75789a0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_vlan_id_476_vlan_ethtype_ip_dst_mac_02:21:39:df:ad:4f_src_mac_02:00:97:04:cb:a1_eth_type_ipv4_ip_proto_udp_dst_ip_83.188.10.138_src_ip_109.24.152.30_dst_port_46529_src_port_55197 SIP-DIP N/A Tx 60464 Rx 60464 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_vlan_id_476_vlan_ethtype_ip_dst_mac_02:21:39:df:ad:4f_src_mac_02:00:97:04:cb:a1_eth_type_ipv4_ip_proto_udp_dst_ip_83.188.10.138_src_ip_109.24.152.30_dst_port_46529_src_port_55197_unmatch_srcMac SIP-DIP N/A Tx 60464 Rx 60464 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_vlan_id_476_vlan_ethtype_ip_dst_mac_02:21:39:df:ad:4f_src_mac_02:00:97:04:cb:a1_eth_type_ipv4_ip_proto_udp_dst_ip_83.188.10.138_src_ip_109.24.152.30_dst_port_46529_src_port_55197_unmatch_dstMac SIP-DIP N/A Tx 60464 Rx 60464 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_vlan_id_476_vlan_ethtype_ip_dst_mac_02:21:39:df:ad:4f_src_mac_02:00:97:04:cb:a1_eth_type_ipv4_ip_proto_udp_dst_ip_83.188.10.138_src_ip_109.24.152.30_dst_port_46529_src_port_55197_unmatch_vlanID SIP-DIP N/A Tx 60464 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_vlan_id_476_vlan_ethtype_ip_dst_mac_02:21:39:df:ad:4f_src_mac_02:00:97:04:cb:a1_eth_type_ipv4_ip_proto_udp_dst_ip_83.188.10.138_src_ip_109.24.152.30_dst_port_46529_src_port_55197_unmatch_srcIp SIP-DIP N/A Tx 60464 Rx 60464 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_vlan_id_476_vlan_ethtype_ip_dst_mac_02:21:39:df:ad:4f_src_mac_02:00:97:04:cb:a1_eth_type_ipv4_ip_proto_udp_dst_ip_83.188.10.138_src_ip_109.24.152.30_dst_port_46529_src_port_55197_unmatch_dstIp SIP-DIP N/A Tx 60464 Rx 60464 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_vlan_id_476_vlan_ethtype_ip_dst_mac_02:21:39:df:ad:4f_src_mac_02:00:97:04:cb:a1_eth_type_ipv4_ip_proto_udp_dst_ip_83.188.10.138_src_ip_109.24.152.30_dst_port_46529_src_port_55197_unmatch_srcPort SIP-DIP N/A Tx 60464 Rx 60464 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_vlan_id_476_vlan_ethtype_ip_dst_mac_02:21:39:df:ad:4f_src_mac_02:00:97:04:cb:a1_eth_type_ipv4_ip_proto_udp_dst_ip_83.188.10.138_src_ip_109.24.152.30_dst_port_46529_src_port_55197_unmatch_dstPort SIP-DIP N/A Tx 60464 Rx 60464 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_476_vlan_ethtype_ip_dst_mac_02:21:39:df:ad:4f_src_mac_02:00:97:04:cb:a1_eth_type_ipv4_ip_proto_udp_dst_ip_83.188.10.138_src_ip_109.24.152.30_dst_port_46529_src_port_55197 Tx Frames: 60464, Rx Frames: 60464, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_476_vlan_ethtype_ip_dst_mac_02:21:39:df:ad:4f_src_mac_02:00:97:04:cb:a1_eth_type_ipv4_ip_proto_udp_dst_ip_83.188.10.138_src_ip_109.24.152.30_dst_port_46529_src_port_55197_unmatch_srcMac Tx Frames: 60464, Rx Frames: 60464, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_476_vlan_ethtype_ip_dst_mac_02:21:39:df:ad:4f_src_mac_02:00:97:04:cb:a1_eth_type_ipv4_ip_proto_udp_dst_ip_83.188.10.138_src_ip_109.24.152.30_dst_port_46529_src_port_55197_unmatch_dstMac Tx Frames: 60464, Rx Frames: 60464, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_476_vlan_ethtype_ip_dst_mac_02:21:39:df:ad:4f_src_mac_02:00:97:04:cb:a1_eth_type_ipv4_ip_proto_udp_dst_ip_83.188.10.138_src_ip_109.24.152.30_dst_port_46529_src_port_55197_unmatch_vlanID Tx Frames: 60464, Rx Frames: 0, loss = 100.0, expected_loss = 100.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_476_vlan_ethtype_ip_dst_mac_02:21:39:df:ad:4f_src_mac_02:00:97:04:cb:a1_eth_type_ipv4_ip_proto_udp_dst_ip_83.188.10.138_src_ip_109.24.152.30_dst_port_46529_src_port_55197_unmatch_srcIp Tx Frames: 60464, Rx Frames: 60464, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_476_vlan_ethtype_ip_dst_mac_02:21:39:df:ad:4f_src_mac_02:00:97:04:cb:a1_eth_type_ipv4_ip_proto_udp_dst_ip_83.188.10.138_src_ip_109.24.152.30_dst_port_46529_src_port_55197_unmatch_dstIp Tx Frames: 60464, Rx Frames: 60464, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_476_vlan_ethtype_ip_dst_mac_02:21:39:df:ad:4f_src_mac_02:00:97:04:cb:a1_eth_type_ipv4_ip_proto_udp_dst_ip_83.188.10.138_src_ip_109.24.152.30_dst_port_46529_src_port_55197_unmatch_srcPort Tx Frames: 60464, Rx Frames: 60464, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_476_vlan_ethtype_ip_dst_mac_02:21:39:df:ad:4f_src_mac_02:00:97:04:cb:a1_eth_type_ipv4_ip_proto_udp_dst_ip_83.188.10.138_src_ip_109.24.152.30_dst_port_46529_src_port_55197_unmatch_dstPort Tx Frames: 60464, Rx Frames: 60464, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO asyncssh:logging.py:92 [conn=26, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=13] Channel closed DEBUG infra2:Logger.py:156 tc -j -s filter show block 1 ingress INFO asyncssh:logging.py:92 [conn=26, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=14] Command: tc -j -s filter show block 1 ingress INFO asyncssh:logging.py:92 [conn=26, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=14] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"802.1Q","pref":49000,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":476,"vlan_ethtype":"ip","dst_mac":"02:21:39:df:ad:4f","src_mac":"02:00:97:04:cb:a1","eth_type":"ipv4","ip_proto":"udp","dst_ip":"83.188.10.138","src_ip":"109.24.152.30","dst_port":46529,"src_port":55197},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"pass"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":178,"stats":{"bytes":15478784,"packets":60464,"drops":0,"overlimits":0,"requeues":0,"sw_bytes":0,"sw_packets":0,"hw_bytes":15478784,"hw_packets":60464,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [DENT infrastructure 2] Rule action = 'pass', Tx Frames = 60464, drops = 0, expected = 0, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 2] Rule action = 'pass', Tx Frames = 60464, packets = 60464, expected = 60464, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 2] Rule action = 'pass', Tx Frames = 60464, hw_packets = 60464, expected = 60464, max tolerance = 0.05 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_all_selectors[shared_block-tagged-pass] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py INFO asyncssh:logging.py:92 [conn=26, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=15] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=26, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=16] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 18:07:01 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=26, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=26, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=26, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=18] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":80,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=26, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=26, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=20] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=26, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=26, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=21] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=26, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=22] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 18:07:01 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=26, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=23] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=26, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=24] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 18:07:02 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=26, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=25] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=26, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=26] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=26, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=26] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","ingress_block":1,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=26, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=27] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=26, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=28] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=26, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=26, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=28] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=26, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=29] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=26, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=30] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=26, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=26, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=30] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=26, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=31] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=26, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=26, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=26, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=32] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=26, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=33] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=26, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=26, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=26, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=34] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=26, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=35] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=26, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=26, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=26, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=36] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=26, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=37] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=26, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=26, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=26, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=38] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=26, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=26, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=26, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=26, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=40] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=26, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=26, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=26, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=26, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=42] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=26, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=26, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=26, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=26, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=26, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=26, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=26, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=26, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=46] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=26, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=26, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=48] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=26, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=26, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=48] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=26, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=26, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=50] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=26, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=50] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=26, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=26, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=52] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=26, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=26, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=52] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=26, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=26, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=54] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=26, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=26, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=54] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=26, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=26, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=26, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=55] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=26, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=26, chan=56] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=26, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=26, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=26, chan=56] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/acl/test_acl_all_selectors.py::test_acl_all_selectors[shared_block-tagged-drop] | 180.35 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_all_selectors[shared_block-tagged-drop]">Starting testcase:test_acl_all_selectors[shared_block-tagged-drop] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-1546' coro=<test_acl_all_selectors() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py:117> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=26, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=27] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=27] Local address: 172.17.0.3, port 33620 INFO asyncssh:logging.py:92 [conn=27] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=27] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=27] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=27, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 18:07:02 UTC 2023 INFO asyncssh:logging.py:92 [conn=27, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add name br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=27, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=2] Command: ip link add name br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=27, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=27, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=27, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=4] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=27, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=27, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=5] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp33 vid 223 && bridge vlan add dev swp34 vid 223 INFO asyncssh:logging.py:92 [conn=27, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=6] Command: bridge vlan add dev swp33 vid 223 && bridge vlan add dev swp34 vid 223 INFO asyncssh:logging.py:92 [conn=27, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=27, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=7] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp33 ingress_block 1 ingress INFO asyncssh:logging.py:92 [conn=27, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=8] Command: tc qdisc add dev swp33 ingress_block 1 ingress INFO asyncssh:logging.py:92 [conn=27, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=27, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=9] Channel closed DEBUG infra2:Logger.py:156 tc filter add block 1 ingress protocol 802.1q pref 49000 flower skip_sw src_mac 02:9d:b0:bf:bd:23 dst_mac 02:ed:7f:1b:c9:92 vlan_id 223 vlan_ethtype ip src_ip 91.176.32.219 dst_ip 74.76.244.250 ip_proto udp src_port 7467 dst_port 19969 action drop INFO asyncssh:logging.py:92 [conn=27, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=10] Command: tc filter add block 1 ingress protocol 802.1q pref 49000 flower skip_sw src_mac 02:9d:b0:bf:bd:23 dst_mac 02:ed:7f:1b:c9:92 vlan_id 223 vlan_ethtype ip src_ip 91.176.32.219 dst_ip 74.76.244.250 ip_proto udp src_port 7467 dst_port 19969 action drop INFO asyncssh:logging.py:92 [conn=27, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=27, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=11] Channel closed DEBUG infra2:Logger.py:156 tc -j filter show block 1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=27, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=12] Command: tc -j filter show block 1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=27, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=12] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"802.1Q","kind":"flower","chain":0},{"protocol":"802.1Q","kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":223,"vlan_ethtype":"ip","dst_mac":"02:ed:7f:1b:c9:92","src_mac":"02:9d:b0:bf:bd:23","eth_type":"ipv4","ip_proto":"udp","dst_ip":"74.76.244.250","src_ip":"91.176.32.219","dst_port":19969,"src_port":7467},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"drop"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': 223, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': 223, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_223_vlan_ethtype_ip_dst_mac_02:ed:7f:1b:c9:92_src_mac_02:9d:b0:bf:bd:23_eth_type_ipv4_ip_proto_udp_dst_ip_74.76.244.250_src_ip_91.176.32.219_dst_port_19969_src_port_7467 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_223_vlan_ethtype_ip_dst_mac_02:ed:7f:1b:c9:92_src_mac_02:9d:b0:bf:bd:23_eth_type_ipv4_ip_proto_udp_dst_ip_74.76.244.250_src_ip_91.176.32.219_dst_port_19969_src_port_7467_unmatch_srcMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_223_vlan_ethtype_ip_dst_mac_02:ed:7f:1b:c9:92_src_mac_02:9d:b0:bf:bd:23_eth_type_ipv4_ip_proto_udp_dst_ip_74.76.244.250_src_ip_91.176.32.219_dst_port_19969_src_port_7467_unmatch_dstMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_223_vlan_ethtype_ip_dst_mac_02:ed:7f:1b:c9:92_src_mac_02:9d:b0:bf:bd:23_eth_type_ipv4_ip_proto_udp_dst_ip_74.76.244.250_src_ip_91.176.32.219_dst_port_19969_src_port_7467_unmatch_vlanID INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_223_vlan_ethtype_ip_dst_mac_02:ed:7f:1b:c9:92_src_mac_02:9d:b0:bf:bd:23_eth_type_ipv4_ip_proto_udp_dst_ip_74.76.244.250_src_ip_91.176.32.219_dst_port_19969_src_port_7467_unmatch_srcIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_223_vlan_ethtype_ip_dst_mac_02:ed:7f:1b:c9:92_src_mac_02:9d:b0:bf:bd:23_eth_type_ipv4_ip_proto_udp_dst_ip_74.76.244.250_src_ip_91.176.32.219_dst_port_19969_src_port_7467_unmatch_dstIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_223_vlan_ethtype_ip_dst_mac_02:ed:7f:1b:c9:92_src_mac_02:9d:b0:bf:bd:23_eth_type_ipv4_ip_proto_udp_dst_ip_74.76.244.250_src_ip_91.176.32.219_dst_port_19969_src_port_7467_unmatch_srcPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_223_vlan_ethtype_ip_dst_mac_02:ed:7f:1b:c9:92_src_mac_02:9d:b0:bf:bd:23_eth_type_ipv4_ip_proto_udp_dst_ip_74.76.244.250_src_ip_91.176.32.219_dst_port_19969_src_port_7467_unmatch_dstPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f7578130>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_vlan_id_223_vlan_ethtype_ip_dst_mac_02:ed:7f:1b:c9:92_src_mac_02:9d:b0:bf:bd:23_eth_type_ipv4_ip_proto_udp_dst_ip_74.76.244.250_src_ip_91.176.32.219_dst_port_19969_src_port_7467 SIP-DIP N/A Tx 60141 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_vlan_id_223_vlan_ethtype_ip_dst_mac_02:ed:7f:1b:c9:92_src_mac_02:9d:b0:bf:bd:23_eth_type_ipv4_ip_proto_udp_dst_ip_74.76.244.250_src_ip_91.176.32.219_dst_port_19969_src_port_7467_unmatch_srcMac SIP-DIP N/A Tx 60141 Rx 60141 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_vlan_id_223_vlan_ethtype_ip_dst_mac_02:ed:7f:1b:c9:92_src_mac_02:9d:b0:bf:bd:23_eth_type_ipv4_ip_proto_udp_dst_ip_74.76.244.250_src_ip_91.176.32.219_dst_port_19969_src_port_7467_unmatch_dstMac SIP-DIP N/A Tx 60141 Rx 60141 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_vlan_id_223_vlan_ethtype_ip_dst_mac_02:ed:7f:1b:c9:92_src_mac_02:9d:b0:bf:bd:23_eth_type_ipv4_ip_proto_udp_dst_ip_74.76.244.250_src_ip_91.176.32.219_dst_port_19969_src_port_7467_unmatch_vlanID SIP-DIP N/A Tx 60141 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_vlan_id_223_vlan_ethtype_ip_dst_mac_02:ed:7f:1b:c9:92_src_mac_02:9d:b0:bf:bd:23_eth_type_ipv4_ip_proto_udp_dst_ip_74.76.244.250_src_ip_91.176.32.219_dst_port_19969_src_port_7467_unmatch_srcIp SIP-DIP N/A Tx 60141 Rx 60141 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_vlan_id_223_vlan_ethtype_ip_dst_mac_02:ed:7f:1b:c9:92_src_mac_02:9d:b0:bf:bd:23_eth_type_ipv4_ip_proto_udp_dst_ip_74.76.244.250_src_ip_91.176.32.219_dst_port_19969_src_port_7467_unmatch_dstIp SIP-DIP N/A Tx 60141 Rx 60141 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_vlan_id_223_vlan_ethtype_ip_dst_mac_02:ed:7f:1b:c9:92_src_mac_02:9d:b0:bf:bd:23_eth_type_ipv4_ip_proto_udp_dst_ip_74.76.244.250_src_ip_91.176.32.219_dst_port_19969_src_port_7467_unmatch_srcPort SIP-DIP N/A Tx 60141 Rx 60141 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_vlan_id_223_vlan_ethtype_ip_dst_mac_02:ed:7f:1b:c9:92_src_mac_02:9d:b0:bf:bd:23_eth_type_ipv4_ip_proto_udp_dst_ip_74.76.244.250_src_ip_91.176.32.219_dst_port_19969_src_port_7467_unmatch_dstPort SIP-DIP N/A Tx 60141 Rx 60141 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_223_vlan_ethtype_ip_dst_mac_02:ed:7f:1b:c9:92_src_mac_02:9d:b0:bf:bd:23_eth_type_ipv4_ip_proto_udp_dst_ip_74.76.244.250_src_ip_91.176.32.219_dst_port_19969_src_port_7467 Tx Frames: 60141, Rx Frames: 0, loss = 100.0, expected_loss = 100.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_223_vlan_ethtype_ip_dst_mac_02:ed:7f:1b:c9:92_src_mac_02:9d:b0:bf:bd:23_eth_type_ipv4_ip_proto_udp_dst_ip_74.76.244.250_src_ip_91.176.32.219_dst_port_19969_src_port_7467_unmatch_srcMac Tx Frames: 60141, Rx Frames: 60141, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_223_vlan_ethtype_ip_dst_mac_02:ed:7f:1b:c9:92_src_mac_02:9d:b0:bf:bd:23_eth_type_ipv4_ip_proto_udp_dst_ip_74.76.244.250_src_ip_91.176.32.219_dst_port_19969_src_port_7467_unmatch_dstMac Tx Frames: 60141, Rx Frames: 60141, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_223_vlan_ethtype_ip_dst_mac_02:ed:7f:1b:c9:92_src_mac_02:9d:b0:bf:bd:23_eth_type_ipv4_ip_proto_udp_dst_ip_74.76.244.250_src_ip_91.176.32.219_dst_port_19969_src_port_7467_unmatch_vlanID Tx Frames: 60141, Rx Frames: 0, loss = 100.0, expected_loss = 100.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_223_vlan_ethtype_ip_dst_mac_02:ed:7f:1b:c9:92_src_mac_02:9d:b0:bf:bd:23_eth_type_ipv4_ip_proto_udp_dst_ip_74.76.244.250_src_ip_91.176.32.219_dst_port_19969_src_port_7467_unmatch_srcIp Tx Frames: 60141, Rx Frames: 60141, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_223_vlan_ethtype_ip_dst_mac_02:ed:7f:1b:c9:92_src_mac_02:9d:b0:bf:bd:23_eth_type_ipv4_ip_proto_udp_dst_ip_74.76.244.250_src_ip_91.176.32.219_dst_port_19969_src_port_7467_unmatch_dstIp Tx Frames: 60141, Rx Frames: 60141, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_223_vlan_ethtype_ip_dst_mac_02:ed:7f:1b:c9:92_src_mac_02:9d:b0:bf:bd:23_eth_type_ipv4_ip_proto_udp_dst_ip_74.76.244.250_src_ip_91.176.32.219_dst_port_19969_src_port_7467_unmatch_srcPort Tx Frames: 60141, Rx Frames: 60141, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_223_vlan_ethtype_ip_dst_mac_02:ed:7f:1b:c9:92_src_mac_02:9d:b0:bf:bd:23_eth_type_ipv4_ip_proto_udp_dst_ip_74.76.244.250_src_ip_91.176.32.219_dst_port_19969_src_port_7467_unmatch_dstPort Tx Frames: 60141, Rx Frames: 60141, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO asyncssh:logging.py:92 [conn=27, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=13] Channel closed DEBUG infra2:Logger.py:156 tc -j -s filter show block 1 ingress INFO asyncssh:logging.py:92 [conn=27, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=14] Command: tc -j -s filter show block 1 ingress INFO asyncssh:logging.py:92 [conn=27, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=14] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"802.1Q","pref":49000,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":223,"vlan_ethtype":"ip","dst_mac":"02:ed:7f:1b:c9:92","src_mac":"02:9d:b0:bf:bd:23","eth_type":"ipv4","ip_proto":"udp","dst_ip":"74.76.244.250","src_ip":"91.176.32.219","dst_port":19969,"src_port":7467},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"drop"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":178,"stats":{"bytes":15396096,"packets":60141,"drops":60141,"overlimits":0,"requeues":0,"sw_bytes":0,"sw_packets":0,"hw_bytes":15396096,"hw_packets":60141,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [DENT infrastructure 2] Rule action = 'drop', Tx Frames = 60141, drops = 60141, expected = 60141, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 2] Rule action = 'drop', Tx Frames = 60141, packets = 60141, expected = 60141, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 2] Rule action = 'drop', Tx Frames = 60141, hw_packets = 60141, expected = 60141, max tolerance = 0.05 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_all_selectors[shared_block-tagged-drop] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py INFO asyncssh:logging.py:92 [conn=27, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=15] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=27, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=16] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 18:10:01 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=27, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=27, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=27, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=18] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":81,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=27, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=27, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=20] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=27, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=27, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=21] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=27, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=22] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 18:10:02 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=27, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=23] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=27, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=24] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 18:10:02 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=27, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=25] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=27, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=26] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=27, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=26] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","ingress_block":1,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=27, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=27] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=27, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=28] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=27, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=27, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=28] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=27, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=29] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=27, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=30] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=27, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=27, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=30] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=27, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=31] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=27, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=27, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=27, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=32] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=27, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=33] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=27, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=27, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=27, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=34] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=27, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=35] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=27, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=27, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=27, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=36] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=27, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=37] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=27, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=27, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=27, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=38] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=27, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=27, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=27, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=27, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=40] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=27, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=27, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=27, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=27, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=42] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=27, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=27, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=27, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=27, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=27, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=27, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=27, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=27, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=46] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=27, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=27, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=48] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=27, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=27, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=48] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=27, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=27, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=50] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=27, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=50] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=27, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=27, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=52] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=27, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=27, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=52] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=27, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=27, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=54] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=27, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=27, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=54] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=27, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=27, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=27, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=55] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=27, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=27, chan=56] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=27, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=27, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=27, chan=56] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/acl/test_acl_all_selectors.py::test_acl_all_selectors[shared_block-tagged-trap] | 181.54 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_all_selectors[shared_block-tagged-trap]">Starting testcase:test_acl_all_selectors[shared_block-tagged-trap] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-1615' coro=<test_acl_all_selectors() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py:117> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=27, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=28] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=28] Local address: 172.17.0.3, port 59238 INFO asyncssh:logging.py:92 [conn=28] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=28] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=28] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=28, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 18:10:03 UTC 2023 INFO asyncssh:logging.py:92 [conn=28, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add name br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=28, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=2] Command: ip link add name br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=28, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=28, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=28, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=4] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=28, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=28, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=5] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp33 vid 2811 && bridge vlan add dev swp34 vid 2811 INFO asyncssh:logging.py:92 [conn=28, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=6] Command: bridge vlan add dev swp33 vid 2811 && bridge vlan add dev swp34 vid 2811 INFO asyncssh:logging.py:92 [conn=28, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=28, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=7] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp33 ingress_block 1 ingress INFO asyncssh:logging.py:92 [conn=28, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=8] Command: tc qdisc add dev swp33 ingress_block 1 ingress INFO asyncssh:logging.py:92 [conn=28, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=28, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=9] Channel closed DEBUG infra2:Logger.py:156 tc filter add block 1 ingress protocol 802.1q pref 49000 flower skip_sw src_mac 02:87:79:40:12:d7 dst_mac 02:bb:6f:a3:4a:fb vlan_id 2811 vlan_ethtype ip src_ip 35.179.108.100 dst_ip 24.255.52.109 ip_proto udp src_port 62175 dst_port 56395 action trap INFO asyncssh:logging.py:92 [conn=28, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=10] Command: tc filter add block 1 ingress protocol 802.1q pref 49000 flower skip_sw src_mac 02:87:79:40:12:d7 dst_mac 02:bb:6f:a3:4a:fb vlan_id 2811 vlan_ethtype ip src_ip 35.179.108.100 dst_ip 24.255.52.109 ip_proto udp src_port 62175 dst_port 56395 action trap INFO asyncssh:logging.py:92 [conn=28, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=28, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=11] Channel closed DEBUG infra2:Logger.py:156 tc -j filter show block 1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=28, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=12] Command: tc -j filter show block 1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=28, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=12] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"802.1Q","kind":"flower","chain":0},{"protocol":"802.1Q","kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":2811,"vlan_ethtype":"ip","dst_mac":"02:bb:6f:a3:4a:fb","src_mac":"02:87:79:40:12:d7","eth_type":"ipv4","ip_proto":"udp","dst_ip":"24.255.52.109","src_ip":"35.179.108.100","dst_port":56395,"src_port":62175},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': 2811, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': 2811, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_2811_vlan_ethtype_ip_dst_mac_02:bb:6f:a3:4a:fb_src_mac_02:87:79:40:12:d7_eth_type_ipv4_ip_proto_udp_dst_ip_24.255.52.109_src_ip_35.179.108.100_dst_port_56395_src_port_62175 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_2811_vlan_ethtype_ip_dst_mac_02:bb:6f:a3:4a:fb_src_mac_02:87:79:40:12:d7_eth_type_ipv4_ip_proto_udp_dst_ip_24.255.52.109_src_ip_35.179.108.100_dst_port_56395_src_port_62175_unmatch_srcMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_2811_vlan_ethtype_ip_dst_mac_02:bb:6f:a3:4a:fb_src_mac_02:87:79:40:12:d7_eth_type_ipv4_ip_proto_udp_dst_ip_24.255.52.109_src_ip_35.179.108.100_dst_port_56395_src_port_62175_unmatch_dstMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_2811_vlan_ethtype_ip_dst_mac_02:bb:6f:a3:4a:fb_src_mac_02:87:79:40:12:d7_eth_type_ipv4_ip_proto_udp_dst_ip_24.255.52.109_src_ip_35.179.108.100_dst_port_56395_src_port_62175_unmatch_vlanID INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_2811_vlan_ethtype_ip_dst_mac_02:bb:6f:a3:4a:fb_src_mac_02:87:79:40:12:d7_eth_type_ipv4_ip_proto_udp_dst_ip_24.255.52.109_src_ip_35.179.108.100_dst_port_56395_src_port_62175_unmatch_srcIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_2811_vlan_ethtype_ip_dst_mac_02:bb:6f:a3:4a:fb_src_mac_02:87:79:40:12:d7_eth_type_ipv4_ip_proto_udp_dst_ip_24.255.52.109_src_ip_35.179.108.100_dst_port_56395_src_port_62175_unmatch_dstIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_2811_vlan_ethtype_ip_dst_mac_02:bb:6f:a3:4a:fb_src_mac_02:87:79:40:12:d7_eth_type_ipv4_ip_proto_udp_dst_ip_24.255.52.109_src_ip_35.179.108.100_dst_port_56395_src_port_62175_unmatch_srcPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_2811_vlan_ethtype_ip_dst_mac_02:bb:6f:a3:4a:fb_src_mac_02:87:79:40:12:d7_eth_type_ipv4_ip_proto_udp_dst_ip_24.255.52.109_src_ip_35.179.108.100_dst_port_56395_src_port_62175_unmatch_dstPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f76ec970>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_vlan_id_2811_vlan_ethtype_ip_dst_mac_02:bb:6f:a3:4a:fb_src_mac_02:87:79:40:12:d7_eth_type_ipv4_ip_proto_udp_dst_ip_24.255.52.109_src_ip_35.179.108.100_dst_port_56395_src_port_62175 SIP-DIP N/A Tx 60244 Rx 24170 Loss 59.880 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_vlan_id_2811_vlan_ethtype_ip_dst_mac_02:bb:6f:a3:4a:fb_src_mac_02:87:79:40:12:d7_eth_type_ipv4_ip_proto_udp_dst_ip_24.255.52.109_src_ip_35.179.108.100_dst_port_56395_src_port_62175_unmatch_srcMac SIP-DIP N/A Tx 60244 Rx 60244 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_vlan_id_2811_vlan_ethtype_ip_dst_mac_02:bb:6f:a3:4a:fb_src_mac_02:87:79:40:12:d7_eth_type_ipv4_ip_proto_udp_dst_ip_24.255.52.109_src_ip_35.179.108.100_dst_port_56395_src_port_62175_unmatch_dstMac SIP-DIP N/A Tx 60244 Rx 60244 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_vlan_id_2811_vlan_ethtype_ip_dst_mac_02:bb:6f:a3:4a:fb_src_mac_02:87:79:40:12:d7_eth_type_ipv4_ip_proto_udp_dst_ip_24.255.52.109_src_ip_35.179.108.100_dst_port_56395_src_port_62175_unmatch_vlanID SIP-DIP N/A Tx 60244 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_vlan_id_2811_vlan_ethtype_ip_dst_mac_02:bb:6f:a3:4a:fb_src_mac_02:87:79:40:12:d7_eth_type_ipv4_ip_proto_udp_dst_ip_24.255.52.109_src_ip_35.179.108.100_dst_port_56395_src_port_62175_unmatch_srcIp SIP-DIP N/A Tx 60244 Rx 60244 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_vlan_id_2811_vlan_ethtype_ip_dst_mac_02:bb:6f:a3:4a:fb_src_mac_02:87:79:40:12:d7_eth_type_ipv4_ip_proto_udp_dst_ip_24.255.52.109_src_ip_35.179.108.100_dst_port_56395_src_port_62175_unmatch_dstIp SIP-DIP N/A Tx 60244 Rx 60244 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_vlan_id_2811_vlan_ethtype_ip_dst_mac_02:bb:6f:a3:4a:fb_src_mac_02:87:79:40:12:d7_eth_type_ipv4_ip_proto_udp_dst_ip_24.255.52.109_src_ip_35.179.108.100_dst_port_56395_src_port_62175_unmatch_srcPort SIP-DIP N/A Tx 60244 Rx 60244 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_vlan_id_2811_vlan_ethtype_ip_dst_mac_02:bb:6f:a3:4a:fb_src_mac_02:87:79:40:12:d7_eth_type_ipv4_ip_proto_udp_dst_ip_24.255.52.109_src_ip_35.179.108.100_dst_port_56395_src_port_62175_unmatch_dstPort SIP-DIP N/A Tx 60244 Rx 60244 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_2811_vlan_ethtype_ip_dst_mac_02:bb:6f:a3:4a:fb_src_mac_02:87:79:40:12:d7_eth_type_ipv4_ip_proto_udp_dst_ip_24.255.52.109_src_ip_35.179.108.100_dst_port_56395_src_port_62175 Tx Frames: 60244, Rx Frames: 24170, loss = 59.88, expected_loss = 60.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_2811_vlan_ethtype_ip_dst_mac_02:bb:6f:a3:4a:fb_src_mac_02:87:79:40:12:d7_eth_type_ipv4_ip_proto_udp_dst_ip_24.255.52.109_src_ip_35.179.108.100_dst_port_56395_src_port_62175_unmatch_srcMac Tx Frames: 60244, Rx Frames: 60244, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_2811_vlan_ethtype_ip_dst_mac_02:bb:6f:a3:4a:fb_src_mac_02:87:79:40:12:d7_eth_type_ipv4_ip_proto_udp_dst_ip_24.255.52.109_src_ip_35.179.108.100_dst_port_56395_src_port_62175_unmatch_dstMac Tx Frames: 60244, Rx Frames: 60244, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_2811_vlan_ethtype_ip_dst_mac_02:bb:6f:a3:4a:fb_src_mac_02:87:79:40:12:d7_eth_type_ipv4_ip_proto_udp_dst_ip_24.255.52.109_src_ip_35.179.108.100_dst_port_56395_src_port_62175_unmatch_vlanID Tx Frames: 60244, Rx Frames: 0, loss = 100.0, expected_loss = 100.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_2811_vlan_ethtype_ip_dst_mac_02:bb:6f:a3:4a:fb_src_mac_02:87:79:40:12:d7_eth_type_ipv4_ip_proto_udp_dst_ip_24.255.52.109_src_ip_35.179.108.100_dst_port_56395_src_port_62175_unmatch_srcIp Tx Frames: 60244, Rx Frames: 60244, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_2811_vlan_ethtype_ip_dst_mac_02:bb:6f:a3:4a:fb_src_mac_02:87:79:40:12:d7_eth_type_ipv4_ip_proto_udp_dst_ip_24.255.52.109_src_ip_35.179.108.100_dst_port_56395_src_port_62175_unmatch_dstIp Tx Frames: 60244, Rx Frames: 60244, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_2811_vlan_ethtype_ip_dst_mac_02:bb:6f:a3:4a:fb_src_mac_02:87:79:40:12:d7_eth_type_ipv4_ip_proto_udp_dst_ip_24.255.52.109_src_ip_35.179.108.100_dst_port_56395_src_port_62175_unmatch_srcPort Tx Frames: 60244, Rx Frames: 60244, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_2811_vlan_ethtype_ip_dst_mac_02:bb:6f:a3:4a:fb_src_mac_02:87:79:40:12:d7_eth_type_ipv4_ip_proto_udp_dst_ip_24.255.52.109_src_ip_35.179.108.100_dst_port_56395_src_port_62175_unmatch_dstPort Tx Frames: 60244, Rx Frames: 60244, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO asyncssh:logging.py:92 [conn=28, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=13] Channel closed DEBUG infra2:Logger.py:156 tc -j -s filter show block 1 ingress INFO asyncssh:logging.py:92 [conn=28, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=14] Command: tc -j -s filter show block 1 ingress INFO asyncssh:logging.py:92 [conn=28, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=14] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"802.1Q","pref":49000,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":2811,"vlan_ethtype":"ip","dst_mac":"02:bb:6f:a3:4a:fb","src_mac":"02:87:79:40:12:d7","eth_type":"ipv4","ip_proto":"udp","dst_ip":"24.255.52.109","src_ip":"35.179.108.100","dst_port":56395,"src_port":62175},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":179,"stats":{"bytes":15422464,"packets":60244,"drops":0,"overlimits":0,"requeues":0,"sw_bytes":0,"sw_packets":0,"hw_bytes":15422464,"hw_packets":60244,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [DENT infrastructure 2] Rule action = 'trap', Tx Frames = 60244, drops = 0, expected = 0, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 2] Rule action = 'trap', Tx Frames = 60244, packets = 60244, expected = 60244, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 2] Rule action = 'trap', Tx Frames = 60244, hw_packets = 60244, expected = 60244, max tolerance = 0.05 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_all_selectors[shared_block-tagged-trap] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py INFO asyncssh:logging.py:92 [conn=28, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=15] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=28, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=16] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 18:13:03 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=28, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=28, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=28, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=18] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":82,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=28, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=28, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=20] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=28, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=28, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=21] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=28, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=22] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 18:13:03 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=28, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=23] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=28, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=24] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 18:13:04 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=28, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=25] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=28, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=26] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=28, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=26] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","ingress_block":1,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=28, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=27] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=28, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=28] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=28, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=28, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=28] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=28, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=29] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=28, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=30] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=28, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=28, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=30] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=28, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=31] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=28, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=28, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=28, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=32] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=28, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=33] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=28, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=28, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=28, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=34] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=28, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=35] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=28, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=28, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=28, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=36] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=28, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=37] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=28, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=28, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=28, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=38] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=28, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=28, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=28, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=28, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=40] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=28, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=28, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=28, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=28, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=42] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=28, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=28, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=28, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=28, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=28, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=28, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=28, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=28, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=46] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=28, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=28, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=48] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=28, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=28, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=48] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=28, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=28, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=50] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=28, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=50] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=28, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=28, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=52] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=28, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=28, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=52] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=28, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=28, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=54] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=28, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=28, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=54] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=28, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=28, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=28, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=55] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=28, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=28, chan=56] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=28, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=28, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=28, chan=56] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/acl/test_acl_all_selectors.py::test_acl_all_selectors[shared_block-untagged-pass] | 170.59 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_all_selectors[shared_block-untagged-pass]">Starting testcase:test_acl_all_selectors[shared_block-untagged-pass] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-1684' coro=<test_acl_all_selectors() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py:117> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=28, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=29] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=29] Local address: 172.17.0.3, port 39800 INFO asyncssh:logging.py:92 [conn=29] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=29] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=29] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=29, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 18:13:04 UTC 2023 INFO asyncssh:logging.py:92 [conn=29, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=29, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=2] Command: ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=29, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=29, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=29, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=4] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=29, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=29, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=5] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp33 ingress_block 1 ingress INFO asyncssh:logging.py:92 [conn=29, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=6] Command: tc qdisc add dev swp33 ingress_block 1 ingress INFO asyncssh:logging.py:92 [conn=29, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=29, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=7] Channel closed DEBUG infra2:Logger.py:156 tc filter add block 1 ingress protocol ip pref 49000 flower skip_sw src_mac 02:17:0b:22:9e:1f dst_mac 02:57:30:19:78:2e src_ip 81.8.237.241 dst_ip 68.189.172.108 ip_proto udp src_port 62099 dst_port 59996 action pass INFO asyncssh:logging.py:92 [conn=29, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=8] Command: tc filter add block 1 ingress protocol ip pref 49000 flower skip_sw src_mac 02:17:0b:22:9e:1f dst_mac 02:57:30:19:78:2e src_ip 81.8.237.241 dst_ip 68.189.172.108 ip_proto udp src_port 62099 dst_port 59996 action pass INFO asyncssh:logging.py:92 [conn=29, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=29, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=9] Channel closed DEBUG infra2:Logger.py:156 tc -j filter show block 1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=29, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=10] Command: tc -j filter show block 1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=29, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=10] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"ip","kind":"flower","chain":0},{"protocol":"ip","kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:57:30:19:78:2e","src_mac":"02:17:0b:22:9e:1f","eth_type":"ipv4","ip_proto":"udp","dst_ip":"68.189.172.108","src_ip":"81.8.237.241","dst_port":59996,"src_port":62099},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"pass"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:57:30:19:78:2e_src_mac_02:17:0b:22:9e:1f_eth_type_ipv4_ip_proto_udp_dst_ip_68.189.172.108_src_ip_81.8.237.241_dst_port_59996_src_port_62099 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:57:30:19:78:2e_src_mac_02:17:0b:22:9e:1f_eth_type_ipv4_ip_proto_udp_dst_ip_68.189.172.108_src_ip_81.8.237.241_dst_port_59996_src_port_62099_unmatch_srcMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:57:30:19:78:2e_src_mac_02:17:0b:22:9e:1f_eth_type_ipv4_ip_proto_udp_dst_ip_68.189.172.108_src_ip_81.8.237.241_dst_port_59996_src_port_62099_unmatch_dstMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:57:30:19:78:2e_src_mac_02:17:0b:22:9e:1f_eth_type_ipv4_ip_proto_udp_dst_ip_68.189.172.108_src_ip_81.8.237.241_dst_port_59996_src_port_62099_unmatch_srcIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:57:30:19:78:2e_src_mac_02:17:0b:22:9e:1f_eth_type_ipv4_ip_proto_udp_dst_ip_68.189.172.108_src_ip_81.8.237.241_dst_port_59996_src_port_62099_unmatch_dstIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:57:30:19:78:2e_src_mac_02:17:0b:22:9e:1f_eth_type_ipv4_ip_proto_udp_dst_ip_68.189.172.108_src_ip_81.8.237.241_dst_port_59996_src_port_62099_unmatch_srcPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:57:30:19:78:2e_src_mac_02:17:0b:22:9e:1f_eth_type_ipv4_ip_proto_udp_dst_ip_68.189.172.108_src_ip_81.8.237.241_dst_port_59996_src_port_62099_unmatch_dstPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f76bed40>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_dst_mac_02:57:30:19:78:2e_src_mac_02:17:0b:22:9e:1f_eth_type_ipv4_ip_proto_udp_dst_ip_68.189.172.108_src_ip_81.8.237.241_dst_port_59996_src_port_62099 SIP-DIP N/A Tx 60321 Rx 60321 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_dst_mac_02:57:30:19:78:2e_src_mac_02:17:0b:22:9e:1f_eth_type_ipv4_ip_proto_udp_dst_ip_68.189.172.108_src_ip_81.8.237.241_dst_port_59996_src_port_62099_unmatch_srcMac SIP-DIP N/A Tx 60321 Rx 60321 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_dst_mac_02:57:30:19:78:2e_src_mac_02:17:0b:22:9e:1f_eth_type_ipv4_ip_proto_udp_dst_ip_68.189.172.108_src_ip_81.8.237.241_dst_port_59996_src_port_62099_unmatch_dstMac SIP-DIP N/A Tx 60321 Rx 60321 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_dst_mac_02:57:30:19:78:2e_src_mac_02:17:0b:22:9e:1f_eth_type_ipv4_ip_proto_udp_dst_ip_68.189.172.108_src_ip_81.8.237.241_dst_port_59996_src_port_62099_unmatch_srcIp SIP-DIP N/A Tx 60321 Rx 60321 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_dst_mac_02:57:30:19:78:2e_src_mac_02:17:0b:22:9e:1f_eth_type_ipv4_ip_proto_udp_dst_ip_68.189.172.108_src_ip_81.8.237.241_dst_port_59996_src_port_62099_unmatch_dstIp SIP-DIP N/A Tx 60321 Rx 60321 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_dst_mac_02:57:30:19:78:2e_src_mac_02:17:0b:22:9e:1f_eth_type_ipv4_ip_proto_udp_dst_ip_68.189.172.108_src_ip_81.8.237.241_dst_port_59996_src_port_62099_unmatch_srcPort SIP-DIP N/A Tx 60321 Rx 60321 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_dst_mac_02:57:30:19:78:2e_src_mac_02:17:0b:22:9e:1f_eth_type_ipv4_ip_proto_udp_dst_ip_68.189.172.108_src_ip_81.8.237.241_dst_port_59996_src_port_62099_unmatch_dstPort SIP-DIP N/A Tx 60321 Rx 60321 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:57:30:19:78:2e_src_mac_02:17:0b:22:9e:1f_eth_type_ipv4_ip_proto_udp_dst_ip_68.189.172.108_src_ip_81.8.237.241_dst_port_59996_src_port_62099 Tx Frames: 60321, Rx Frames: 60321, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:57:30:19:78:2e_src_mac_02:17:0b:22:9e:1f_eth_type_ipv4_ip_proto_udp_dst_ip_68.189.172.108_src_ip_81.8.237.241_dst_port_59996_src_port_62099_unmatch_srcMac Tx Frames: 60321, Rx Frames: 60321, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:57:30:19:78:2e_src_mac_02:17:0b:22:9e:1f_eth_type_ipv4_ip_proto_udp_dst_ip_68.189.172.108_src_ip_81.8.237.241_dst_port_59996_src_port_62099_unmatch_dstMac Tx Frames: 60321, Rx Frames: 60321, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:57:30:19:78:2e_src_mac_02:17:0b:22:9e:1f_eth_type_ipv4_ip_proto_udp_dst_ip_68.189.172.108_src_ip_81.8.237.241_dst_port_59996_src_port_62099_unmatch_srcIp Tx Frames: 60321, Rx Frames: 60321, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:57:30:19:78:2e_src_mac_02:17:0b:22:9e:1f_eth_type_ipv4_ip_proto_udp_dst_ip_68.189.172.108_src_ip_81.8.237.241_dst_port_59996_src_port_62099_unmatch_dstIp Tx Frames: 60321, Rx Frames: 60321, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:57:30:19:78:2e_src_mac_02:17:0b:22:9e:1f_eth_type_ipv4_ip_proto_udp_dst_ip_68.189.172.108_src_ip_81.8.237.241_dst_port_59996_src_port_62099_unmatch_srcPort Tx Frames: 60321, Rx Frames: 60321, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:57:30:19:78:2e_src_mac_02:17:0b:22:9e:1f_eth_type_ipv4_ip_proto_udp_dst_ip_68.189.172.108_src_ip_81.8.237.241_dst_port_59996_src_port_62099_unmatch_dstPort Tx Frames: 60321, Rx Frames: 60321, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO asyncssh:logging.py:92 [conn=29, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=11] Channel closed DEBUG infra2:Logger.py:156 tc -j -s filter show block 1 ingress INFO asyncssh:logging.py:92 [conn=29, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=12] Command: tc -j -s filter show block 1 ingress INFO asyncssh:logging.py:92 [conn=29, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=12] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"ip","pref":49000,"kind":"flower","chain":0},{"protocol":"ip","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:57:30:19:78:2e","src_mac":"02:17:0b:22:9e:1f","eth_type":"ipv4","ip_proto":"udp","dst_ip":"68.189.172.108","src_ip":"81.8.237.241","dst_port":59996,"src_port":62099},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"pass"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":169,"stats":{"bytes":15442176,"packets":60321,"drops":0,"overlimits":0,"requeues":0,"sw_bytes":0,"sw_packets":0,"hw_bytes":15442176,"hw_packets":60321,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [DENT infrastructure 2] Rule action = 'pass', Tx Frames = 60321, drops = 0, expected = 0, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 2] Rule action = 'pass', Tx Frames = 60321, packets = 60321, expected = 60321, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 2] Rule action = 'pass', Tx Frames = 60321, hw_packets = 60321, expected = 60321, max tolerance = 0.05 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_all_selectors[shared_block-untagged-pass] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py INFO asyncssh:logging.py:92 [conn=29, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=29, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=14] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 18:15:54 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=29, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=29, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=29, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":83,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=29, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=29, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=29, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=29, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=19] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=29, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=20] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 18:15:54 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=29, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=21] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=29, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=22] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 18:15:54 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=29, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=23] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=29, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=29, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=24] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","ingress_block":1,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=29, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=25] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=29, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=29, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=29, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=26] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=29, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=27] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=29, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=29, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=29, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=28] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=29, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=29] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=29, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=29, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=29, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=30] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=29, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=31] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=29, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=29, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=29, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=32] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=29, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=33] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=29, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=29, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=29, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=34] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=29, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=35] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=29, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=29, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=29, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=36] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=29, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=37] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=29, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=29, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=29, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=38] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=29, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=29, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=29, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=29, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=40] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=29, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=29, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=29, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=29, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=42] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=29, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=29, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=29, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=29, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=29, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=29, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=46] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=29, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=29, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=46] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=29, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=29, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=48] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=29, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=48] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=29, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=29, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=50] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=29, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=29, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=50] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=29, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=29, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=52] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=29, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=29, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=52] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=29, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=29, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=29, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=29, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=29, chan=54] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=29, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=29, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=29, chan=54] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/acl/test_acl_all_selectors.py::test_acl_all_selectors[shared_block-untagged-drop] | 172.93 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_all_selectors[shared_block-untagged-drop]">Starting testcase:test_acl_all_selectors[shared_block-untagged-drop] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-1751' coro=<test_acl_all_selectors() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py:117> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=29, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=30] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=30] Local address: 172.17.0.3, port 56594 INFO asyncssh:logging.py:92 [conn=30] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=30] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=30] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=30, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 18:15:55 UTC 2023 INFO asyncssh:logging.py:92 [conn=30, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=30, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=2] Command: ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=30, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=30, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=30, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=4] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=30, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=30, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=5] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp33 ingress_block 1 ingress INFO asyncssh:logging.py:92 [conn=30, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=6] Command: tc qdisc add dev swp33 ingress_block 1 ingress INFO asyncssh:logging.py:92 [conn=30, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=30, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=7] Channel closed DEBUG infra2:Logger.py:156 tc filter add block 1 ingress protocol ip pref 49000 flower skip_sw src_mac 02:dc:9c:55:0f:13 dst_mac 02:15:7b:ff:e4:76 src_ip 38.97.187.18 dst_ip 123.230.241.204 ip_proto udp src_port 12459 dst_port 39627 action drop INFO asyncssh:logging.py:92 [conn=30, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=8] Command: tc filter add block 1 ingress protocol ip pref 49000 flower skip_sw src_mac 02:dc:9c:55:0f:13 dst_mac 02:15:7b:ff:e4:76 src_ip 38.97.187.18 dst_ip 123.230.241.204 ip_proto udp src_port 12459 dst_port 39627 action drop INFO asyncssh:logging.py:92 [conn=30, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=30, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=9] Channel closed DEBUG infra2:Logger.py:156 tc -j filter show block 1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=30, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=10] Command: tc -j filter show block 1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=30, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=10] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"ip","kind":"flower","chain":0},{"protocol":"ip","kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:15:7b:ff:e4:76","src_mac":"02:dc:9c:55:0f:13","eth_type":"ipv4","ip_proto":"udp","dst_ip":"123.230.241.204","src_ip":"38.97.187.18","dst_port":39627,"src_port":12459},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"drop"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:15:7b:ff:e4:76_src_mac_02:dc:9c:55:0f:13_eth_type_ipv4_ip_proto_udp_dst_ip_123.230.241.204_src_ip_38.97.187.18_dst_port_39627_src_port_12459 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:15:7b:ff:e4:76_src_mac_02:dc:9c:55:0f:13_eth_type_ipv4_ip_proto_udp_dst_ip_123.230.241.204_src_ip_38.97.187.18_dst_port_39627_src_port_12459_unmatch_srcMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:15:7b:ff:e4:76_src_mac_02:dc:9c:55:0f:13_eth_type_ipv4_ip_proto_udp_dst_ip_123.230.241.204_src_ip_38.97.187.18_dst_port_39627_src_port_12459_unmatch_dstMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:15:7b:ff:e4:76_src_mac_02:dc:9c:55:0f:13_eth_type_ipv4_ip_proto_udp_dst_ip_123.230.241.204_src_ip_38.97.187.18_dst_port_39627_src_port_12459_unmatch_srcIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:15:7b:ff:e4:76_src_mac_02:dc:9c:55:0f:13_eth_type_ipv4_ip_proto_udp_dst_ip_123.230.241.204_src_ip_38.97.187.18_dst_port_39627_src_port_12459_unmatch_dstIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:15:7b:ff:e4:76_src_mac_02:dc:9c:55:0f:13_eth_type_ipv4_ip_proto_udp_dst_ip_123.230.241.204_src_ip_38.97.187.18_dst_port_39627_src_port_12459_unmatch_srcPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:15:7b:ff:e4:76_src_mac_02:dc:9c:55:0f:13_eth_type_ipv4_ip_proto_udp_dst_ip_123.230.241.204_src_ip_38.97.187.18_dst_port_39627_src_port_12459_unmatch_dstPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f7598910>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_dst_mac_02:15:7b:ff:e4:76_src_mac_02:dc:9c:55:0f:13_eth_type_ipv4_ip_proto_udp_dst_ip_123.230.241.204_src_ip_38.97.187.18_dst_port_39627_src_port_12459 SIP-DIP N/A Tx 60337 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_dst_mac_02:15:7b:ff:e4:76_src_mac_02:dc:9c:55:0f:13_eth_type_ipv4_ip_proto_udp_dst_ip_123.230.241.204_src_ip_38.97.187.18_dst_port_39627_src_port_12459_unmatch_srcMac SIP-DIP N/A Tx 60337 Rx 60337 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_dst_mac_02:15:7b:ff:e4:76_src_mac_02:dc:9c:55:0f:13_eth_type_ipv4_ip_proto_udp_dst_ip_123.230.241.204_src_ip_38.97.187.18_dst_port_39627_src_port_12459_unmatch_dstMac SIP-DIP N/A Tx 60337 Rx 60337 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_dst_mac_02:15:7b:ff:e4:76_src_mac_02:dc:9c:55:0f:13_eth_type_ipv4_ip_proto_udp_dst_ip_123.230.241.204_src_ip_38.97.187.18_dst_port_39627_src_port_12459_unmatch_srcIp SIP-DIP N/A Tx 60337 Rx 60337 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_dst_mac_02:15:7b:ff:e4:76_src_mac_02:dc:9c:55:0f:13_eth_type_ipv4_ip_proto_udp_dst_ip_123.230.241.204_src_ip_38.97.187.18_dst_port_39627_src_port_12459_unmatch_dstIp SIP-DIP N/A Tx 60337 Rx 60337 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_dst_mac_02:15:7b:ff:e4:76_src_mac_02:dc:9c:55:0f:13_eth_type_ipv4_ip_proto_udp_dst_ip_123.230.241.204_src_ip_38.97.187.18_dst_port_39627_src_port_12459_unmatch_srcPort SIP-DIP N/A Tx 60337 Rx 60337 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_dst_mac_02:15:7b:ff:e4:76_src_mac_02:dc:9c:55:0f:13_eth_type_ipv4_ip_proto_udp_dst_ip_123.230.241.204_src_ip_38.97.187.18_dst_port_39627_src_port_12459_unmatch_dstPort SIP-DIP N/A Tx 60337 Rx 60337 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:15:7b:ff:e4:76_src_mac_02:dc:9c:55:0f:13_eth_type_ipv4_ip_proto_udp_dst_ip_123.230.241.204_src_ip_38.97.187.18_dst_port_39627_src_port_12459 Tx Frames: 60337, Rx Frames: 0, loss = 100.0, expected_loss = 100.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:15:7b:ff:e4:76_src_mac_02:dc:9c:55:0f:13_eth_type_ipv4_ip_proto_udp_dst_ip_123.230.241.204_src_ip_38.97.187.18_dst_port_39627_src_port_12459_unmatch_srcMac Tx Frames: 60337, Rx Frames: 60337, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:15:7b:ff:e4:76_src_mac_02:dc:9c:55:0f:13_eth_type_ipv4_ip_proto_udp_dst_ip_123.230.241.204_src_ip_38.97.187.18_dst_port_39627_src_port_12459_unmatch_dstMac Tx Frames: 60337, Rx Frames: 60337, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:15:7b:ff:e4:76_src_mac_02:dc:9c:55:0f:13_eth_type_ipv4_ip_proto_udp_dst_ip_123.230.241.204_src_ip_38.97.187.18_dst_port_39627_src_port_12459_unmatch_srcIp Tx Frames: 60337, Rx Frames: 60337, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:15:7b:ff:e4:76_src_mac_02:dc:9c:55:0f:13_eth_type_ipv4_ip_proto_udp_dst_ip_123.230.241.204_src_ip_38.97.187.18_dst_port_39627_src_port_12459_unmatch_dstIp Tx Frames: 60337, Rx Frames: 60337, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:15:7b:ff:e4:76_src_mac_02:dc:9c:55:0f:13_eth_type_ipv4_ip_proto_udp_dst_ip_123.230.241.204_src_ip_38.97.187.18_dst_port_39627_src_port_12459_unmatch_srcPort Tx Frames: 60337, Rx Frames: 60337, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:15:7b:ff:e4:76_src_mac_02:dc:9c:55:0f:13_eth_type_ipv4_ip_proto_udp_dst_ip_123.230.241.204_src_ip_38.97.187.18_dst_port_39627_src_port_12459_unmatch_dstPort Tx Frames: 60337, Rx Frames: 60337, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO asyncssh:logging.py:92 [conn=30, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=11] Channel closed DEBUG infra2:Logger.py:156 tc -j -s filter show block 1 ingress INFO asyncssh:logging.py:92 [conn=30, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=12] Command: tc -j -s filter show block 1 ingress INFO asyncssh:logging.py:92 [conn=30, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=12] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"ip","pref":49000,"kind":"flower","chain":0},{"protocol":"ip","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:15:7b:ff:e4:76","src_mac":"02:dc:9c:55:0f:13","eth_type":"ipv4","ip_proto":"udp","dst_ip":"123.230.241.204","src_ip":"38.97.187.18","dst_port":39627,"src_port":12459},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"drop"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":171,"stats":{"bytes":15446272,"packets":60337,"drops":60337,"overlimits":0,"requeues":0,"sw_bytes":0,"sw_packets":0,"hw_bytes":15446272,"hw_packets":60337,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [DENT infrastructure 2] Rule action = 'drop', Tx Frames = 60337, drops = 60337, expected = 60337, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 2] Rule action = 'drop', Tx Frames = 60337, packets = 60337, expected = 60337, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 2] Rule action = 'drop', Tx Frames = 60337, hw_packets = 60337, expected = 60337, max tolerance = 0.05 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_all_selectors[shared_block-untagged-drop] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py INFO asyncssh:logging.py:92 [conn=30, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=30, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=14] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 18:18:47 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=30, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=30, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=30, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":84,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=30, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=30, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=30, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=30, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=19] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=30, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=20] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 18:18:47 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=30, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=21] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=30, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=22] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 18:18:47 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=30, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=23] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=30, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=30, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=24] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","ingress_block":1,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=30, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=25] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=30, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=30, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=30, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=26] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=30, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=27] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=30, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=30, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=30, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=28] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=30, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=29] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=30, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=30, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=30, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=30] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=30, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=31] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=30, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=30, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=30, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=32] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=30, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=33] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=30, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=30, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=30, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=34] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=30, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=35] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=30, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=30, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=30, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=36] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=30, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=37] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=30, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=30, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=30, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=38] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=30, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=30, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=30, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=30, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=40] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=30, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=30, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=30, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=30, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=42] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=30, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=30, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=30, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=30, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=30, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=30, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=46] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=30, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=30, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=46] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=30, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=30, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=48] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=30, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=48] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=30, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=30, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=50] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=30, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=30, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=50] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=30, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=30, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=52] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=30, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=30, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=52] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=30, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=30, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=30, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=30, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=30, chan=54] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=30, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=30, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=30, chan=54] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/acl/test_acl_all_selectors.py::test_acl_all_selectors[shared_block-untagged-trap] | 168.35 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_all_selectors[shared_block-untagged-trap]">Starting testcase:test_acl_all_selectors[shared_block-untagged-trap] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-1818' coro=<test_acl_all_selectors() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py:117> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=30, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=31] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=31] Local address: 172.17.0.3, port 34834 INFO asyncssh:logging.py:92 [conn=31] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=31] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=31] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=31, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 18:18:48 UTC 2023 INFO asyncssh:logging.py:92 [conn=31, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=31, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=2] Command: ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=31, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=31, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=31, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=4] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=31, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=31, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=5] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp33 ingress_block 1 ingress INFO asyncssh:logging.py:92 [conn=31, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=6] Command: tc qdisc add dev swp33 ingress_block 1 ingress INFO asyncssh:logging.py:92 [conn=31, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=31, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=7] Channel closed DEBUG infra2:Logger.py:156 tc filter add block 1 ingress protocol ip pref 49000 flower skip_sw src_mac 02:7b:87:b9:53:d2 dst_mac 02:c4:2d:7c:a8:bd src_ip 71.152.116.96 dst_ip 55.107.255.23 ip_proto udp src_port 42212 dst_port 9877 action trap INFO asyncssh:logging.py:92 [conn=31, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=8] Command: tc filter add block 1 ingress protocol ip pref 49000 flower skip_sw src_mac 02:7b:87:b9:53:d2 dst_mac 02:c4:2d:7c:a8:bd src_ip 71.152.116.96 dst_ip 55.107.255.23 ip_proto udp src_port 42212 dst_port 9877 action trap INFO asyncssh:logging.py:92 [conn=31, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=31, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=9] Channel closed DEBUG infra2:Logger.py:156 tc -j filter show block 1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=31, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=10] Command: tc -j filter show block 1 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=31, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=10] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"ip","kind":"flower","chain":0},{"protocol":"ip","kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:c4:2d:7c:a8:bd","src_mac":"02:7b:87:b9:53:d2","eth_type":"ipv4","ip_proto":"udp","dst_ip":"55.107.255.23","src_ip":"71.152.116.96","dst_port":9877,"src_port":42212},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:c4:2d:7c:a8:bd_src_mac_02:7b:87:b9:53:d2_eth_type_ipv4_ip_proto_udp_dst_ip_55.107.255.23_src_ip_71.152.116.96_dst_port_9877_src_port_42212 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:c4:2d:7c:a8:bd_src_mac_02:7b:87:b9:53:d2_eth_type_ipv4_ip_proto_udp_dst_ip_55.107.255.23_src_ip_71.152.116.96_dst_port_9877_src_port_42212_unmatch_srcMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:c4:2d:7c:a8:bd_src_mac_02:7b:87:b9:53:d2_eth_type_ipv4_ip_proto_udp_dst_ip_55.107.255.23_src_ip_71.152.116.96_dst_port_9877_src_port_42212_unmatch_dstMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:c4:2d:7c:a8:bd_src_mac_02:7b:87:b9:53:d2_eth_type_ipv4_ip_proto_udp_dst_ip_55.107.255.23_src_ip_71.152.116.96_dst_port_9877_src_port_42212_unmatch_srcIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:c4:2d:7c:a8:bd_src_mac_02:7b:87:b9:53:d2_eth_type_ipv4_ip_proto_udp_dst_ip_55.107.255.23_src_ip_71.152.116.96_dst_port_9877_src_port_42212_unmatch_dstIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:c4:2d:7c:a8:bd_src_mac_02:7b:87:b9:53:d2_eth_type_ipv4_ip_proto_udp_dst_ip_55.107.255.23_src_ip_71.152.116.96_dst_port_9877_src_port_42212_unmatch_srcPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:c4:2d:7c:a8:bd_src_mac_02:7b:87:b9:53:d2_eth_type_ipv4_ip_proto_udp_dst_ip_55.107.255.23_src_ip_71.152.116.96_dst_port_9877_src_port_42212_unmatch_dstPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f759b610>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_dst_mac_02:c4:2d:7c:a8:bd_src_mac_02:7b:87:b9:53:d2_eth_type_ipv4_ip_proto_udp_dst_ip_55.107.255.23_src_ip_71.152.116.96_dst_port_9877_src_port_42212 SIP-DIP N/A Tx 60327 Rx 24219 Loss 59.854 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_dst_mac_02:c4:2d:7c:a8:bd_src_mac_02:7b:87:b9:53:d2_eth_type_ipv4_ip_proto_udp_dst_ip_55.107.255.23_src_ip_71.152.116.96_dst_port_9877_src_port_42212_unmatch_srcMac SIP-DIP N/A Tx 60327 Rx 60327 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_dst_mac_02:c4:2d:7c:a8:bd_src_mac_02:7b:87:b9:53:d2_eth_type_ipv4_ip_proto_udp_dst_ip_55.107.255.23_src_ip_71.152.116.96_dst_port_9877_src_port_42212_unmatch_dstMac SIP-DIP N/A Tx 60327 Rx 60327 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_dst_mac_02:c4:2d:7c:a8:bd_src_mac_02:7b:87:b9:53:d2_eth_type_ipv4_ip_proto_udp_dst_ip_55.107.255.23_src_ip_71.152.116.96_dst_port_9877_src_port_42212_unmatch_srcIp SIP-DIP N/A Tx 60327 Rx 60327 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_dst_mac_02:c4:2d:7c:a8:bd_src_mac_02:7b:87:b9:53:d2_eth_type_ipv4_ip_proto_udp_dst_ip_55.107.255.23_src_ip_71.152.116.96_dst_port_9877_src_port_42212_unmatch_dstIp SIP-DIP N/A Tx 60327 Rx 60327 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_dst_mac_02:c4:2d:7c:a8:bd_src_mac_02:7b:87:b9:53:d2_eth_type_ipv4_ip_proto_udp_dst_ip_55.107.255.23_src_ip_71.152.116.96_dst_port_9877_src_port_42212_unmatch_srcPort SIP-DIP N/A Tx 60327 Rx 60327 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_dst_mac_02:c4:2d:7c:a8:bd_src_mac_02:7b:87:b9:53:d2_eth_type_ipv4_ip_proto_udp_dst_ip_55.107.255.23_src_ip_71.152.116.96_dst_port_9877_src_port_42212_unmatch_dstPort SIP-DIP N/A Tx 60327 Rx 60327 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:c4:2d:7c:a8:bd_src_mac_02:7b:87:b9:53:d2_eth_type_ipv4_ip_proto_udp_dst_ip_55.107.255.23_src_ip_71.152.116.96_dst_port_9877_src_port_42212 Tx Frames: 60327, Rx Frames: 24219, loss = 59.854, expected_loss = 60.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:c4:2d:7c:a8:bd_src_mac_02:7b:87:b9:53:d2_eth_type_ipv4_ip_proto_udp_dst_ip_55.107.255.23_src_ip_71.152.116.96_dst_port_9877_src_port_42212_unmatch_srcMac Tx Frames: 60327, Rx Frames: 60327, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:c4:2d:7c:a8:bd_src_mac_02:7b:87:b9:53:d2_eth_type_ipv4_ip_proto_udp_dst_ip_55.107.255.23_src_ip_71.152.116.96_dst_port_9877_src_port_42212_unmatch_dstMac Tx Frames: 60327, Rx Frames: 60327, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:c4:2d:7c:a8:bd_src_mac_02:7b:87:b9:53:d2_eth_type_ipv4_ip_proto_udp_dst_ip_55.107.255.23_src_ip_71.152.116.96_dst_port_9877_src_port_42212_unmatch_srcIp Tx Frames: 60327, Rx Frames: 60327, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:c4:2d:7c:a8:bd_src_mac_02:7b:87:b9:53:d2_eth_type_ipv4_ip_proto_udp_dst_ip_55.107.255.23_src_ip_71.152.116.96_dst_port_9877_src_port_42212_unmatch_dstIp Tx Frames: 60327, Rx Frames: 60327, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:c4:2d:7c:a8:bd_src_mac_02:7b:87:b9:53:d2_eth_type_ipv4_ip_proto_udp_dst_ip_55.107.255.23_src_ip_71.152.116.96_dst_port_9877_src_port_42212_unmatch_srcPort Tx Frames: 60327, Rx Frames: 60327, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:c4:2d:7c:a8:bd_src_mac_02:7b:87:b9:53:d2_eth_type_ipv4_ip_proto_udp_dst_ip_55.107.255.23_src_ip_71.152.116.96_dst_port_9877_src_port_42212_unmatch_dstPort Tx Frames: 60327, Rx Frames: 60327, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO asyncssh:logging.py:92 [conn=31, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=11] Channel closed DEBUG infra2:Logger.py:156 tc -j -s filter show block 1 ingress INFO asyncssh:logging.py:92 [conn=31, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=12] Command: tc -j -s filter show block 1 ingress INFO asyncssh:logging.py:92 [conn=31, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=12] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"ip","pref":49000,"kind":"flower","chain":0},{"protocol":"ip","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:c4:2d:7c:a8:bd","src_mac":"02:7b:87:b9:53:d2","eth_type":"ipv4","ip_proto":"udp","dst_ip":"55.107.255.23","src_ip":"71.152.116.96","dst_port":9877,"src_port":42212},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":166,"stats":{"bytes":15443712,"packets":60327,"drops":0,"overlimits":0,"requeues":0,"sw_bytes":0,"sw_packets":0,"hw_bytes":15443712,"hw_packets":60327,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [DENT infrastructure 2] Rule action = 'trap', Tx Frames = 60327, drops = 0, expected = 0, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 2] Rule action = 'trap', Tx Frames = 60327, packets = 60327, expected = 60327, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 2] Rule action = 'trap', Tx Frames = 60327, hw_packets = 60327, expected = 60327, max tolerance = 0.05 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_all_selectors[shared_block-untagged-trap] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py INFO asyncssh:logging.py:92 [conn=31, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=31, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=14] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 18:21:35 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=31, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=31, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=31, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":85,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=31, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=31, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=31, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=31, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=19] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=31, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=20] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 18:21:35 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=31, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=21] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=31, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=22] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 18:21:35 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=31, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=23] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=31, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=31, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=24] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","ingress_block":1,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=31, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=25] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=31, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=31, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=31, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=26] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=31, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=27] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=31, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=31, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=31, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=28] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=31, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=29] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=31, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=31, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=31, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=30] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=31, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=31] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=31, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=31, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=31, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=32] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=31, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=33] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=31, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=31, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=31, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=34] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=31, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=35] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=31, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=31, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=31, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=36] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=31, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=37] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=31, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=31, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=31, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=38] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=31, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=31, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=31, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=31, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=40] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=31, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=31, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=31, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=31, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=42] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=31, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=31, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=31, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=31, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=31, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=31, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=46] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=31, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=31, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=46] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=31, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=31, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=48] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=31, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=48] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=31, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=31, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=50] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=31, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=31, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=50] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=31, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=31, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=52] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=31, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=31, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=52] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=31, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=31, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=31, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=31, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=31, chan=54] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=31, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=31, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=31, chan=54] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/acl/test_acl_all_selectors.py::test_acl_all_selectors[port-tagged-pass] | 184.77 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_all_selectors[port-tagged-pass]">Starting testcase:test_acl_all_selectors[port-tagged-pass] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-1885' coro=<test_acl_all_selectors() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py:117> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=31, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=32] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=32] Local address: 172.17.0.3, port 36052 INFO asyncssh:logging.py:92 [conn=32] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=32] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=32] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=32, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 18:21:36 UTC 2023 INFO asyncssh:logging.py:92 [conn=32, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add name br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=32, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=2] Command: ip link add name br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=32, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=32, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=32, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=4] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=32, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=32, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=5] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp33 vid 3863 && bridge vlan add dev swp34 vid 3863 INFO asyncssh:logging.py:92 [conn=32, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=6] Command: bridge vlan add dev swp33 vid 3863 && bridge vlan add dev swp34 vid 3863 INFO asyncssh:logging.py:92 [conn=32, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=32, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=7] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=32, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=8] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=32, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=32, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=9] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol 802.1q pref 49000 flower skip_sw src_mac 02:f1:a3:63:62:87 dst_mac 02:0c:67:f4:8d:42 vlan_id 3863 vlan_ethtype ip src_ip 13.129.95.50 dst_ip 54.59.220.244 ip_proto udp src_port 7582 dst_port 5454 action pass INFO asyncssh:logging.py:92 [conn=32, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=10] Command: tc filter add dev swp33 ingress protocol 802.1q pref 49000 flower skip_sw src_mac 02:f1:a3:63:62:87 dst_mac 02:0c:67:f4:8d:42 vlan_id 3863 vlan_ethtype ip src_ip 13.129.95.50 dst_ip 54.59.220.244 ip_proto udp src_port 7582 dst_port 5454 action pass INFO asyncssh:logging.py:92 [conn=32, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=32, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=11] Channel closed DEBUG infra2:Logger.py:156 tc -j filter show dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=32, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=12] Command: tc -j filter show dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=32, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=12] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"802.1Q","kind":"flower","chain":0},{"protocol":"802.1Q","kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":3863,"vlan_ethtype":"ip","dst_mac":"02:0c:67:f4:8d:42","src_mac":"02:f1:a3:63:62:87","eth_type":"ipv4","ip_proto":"udp","dst_ip":"54.59.220.244","src_ip":"13.129.95.50","dst_port":5454,"src_port":7582},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"pass"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': 3863, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': 3863, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_3863_vlan_ethtype_ip_dst_mac_02:0c:67:f4:8d:42_src_mac_02:f1:a3:63:62:87_eth_type_ipv4_ip_proto_udp_dst_ip_54.59.220.244_src_ip_13.129.95.50_dst_port_5454_src_port_7582 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_3863_vlan_ethtype_ip_dst_mac_02:0c:67:f4:8d:42_src_mac_02:f1:a3:63:62:87_eth_type_ipv4_ip_proto_udp_dst_ip_54.59.220.244_src_ip_13.129.95.50_dst_port_5454_src_port_7582_unmatch_srcMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_3863_vlan_ethtype_ip_dst_mac_02:0c:67:f4:8d:42_src_mac_02:f1:a3:63:62:87_eth_type_ipv4_ip_proto_udp_dst_ip_54.59.220.244_src_ip_13.129.95.50_dst_port_5454_src_port_7582_unmatch_dstMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_3863_vlan_ethtype_ip_dst_mac_02:0c:67:f4:8d:42_src_mac_02:f1:a3:63:62:87_eth_type_ipv4_ip_proto_udp_dst_ip_54.59.220.244_src_ip_13.129.95.50_dst_port_5454_src_port_7582_unmatch_vlanID INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_3863_vlan_ethtype_ip_dst_mac_02:0c:67:f4:8d:42_src_mac_02:f1:a3:63:62:87_eth_type_ipv4_ip_proto_udp_dst_ip_54.59.220.244_src_ip_13.129.95.50_dst_port_5454_src_port_7582_unmatch_srcIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_3863_vlan_ethtype_ip_dst_mac_02:0c:67:f4:8d:42_src_mac_02:f1:a3:63:62:87_eth_type_ipv4_ip_proto_udp_dst_ip_54.59.220.244_src_ip_13.129.95.50_dst_port_5454_src_port_7582_unmatch_dstIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_3863_vlan_ethtype_ip_dst_mac_02:0c:67:f4:8d:42_src_mac_02:f1:a3:63:62:87_eth_type_ipv4_ip_proto_udp_dst_ip_54.59.220.244_src_ip_13.129.95.50_dst_port_5454_src_port_7582_unmatch_srcPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_3863_vlan_ethtype_ip_dst_mac_02:0c:67:f4:8d:42_src_mac_02:f1:a3:63:62:87_eth_type_ipv4_ip_proto_udp_dst_ip_54.59.220.244_src_ip_13.129.95.50_dst_port_5454_src_port_7582_unmatch_dstPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f7513b80>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_vlan_id_3863_vlan_ethtype_ip_dst_mac_02:0c:67:f4:8d:42_src_mac_02:f1:a3:63:62:87_eth_type_ipv4_ip_proto_udp_dst_ip_54.59.220.244_src_ip_13.129.95.50_dst_port_5454_src_port_7582 SIP-DIP N/A Tx 60005 Rx 60005 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_vlan_id_3863_vlan_ethtype_ip_dst_mac_02:0c:67:f4:8d:42_src_mac_02:f1:a3:63:62:87_eth_type_ipv4_ip_proto_udp_dst_ip_54.59.220.244_src_ip_13.129.95.50_dst_port_5454_src_port_7582_unmatch_srcMac SIP-DIP N/A Tx 60005 Rx 60005 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_vlan_id_3863_vlan_ethtype_ip_dst_mac_02:0c:67:f4:8d:42_src_mac_02:f1:a3:63:62:87_eth_type_ipv4_ip_proto_udp_dst_ip_54.59.220.244_src_ip_13.129.95.50_dst_port_5454_src_port_7582_unmatch_dstMac SIP-DIP N/A Tx 60005 Rx 60005 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_vlan_id_3863_vlan_ethtype_ip_dst_mac_02:0c:67:f4:8d:42_src_mac_02:f1:a3:63:62:87_eth_type_ipv4_ip_proto_udp_dst_ip_54.59.220.244_src_ip_13.129.95.50_dst_port_5454_src_port_7582_unmatch_vlanID SIP-DIP N/A Tx 60005 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_vlan_id_3863_vlan_ethtype_ip_dst_mac_02:0c:67:f4:8d:42_src_mac_02:f1:a3:63:62:87_eth_type_ipv4_ip_proto_udp_dst_ip_54.59.220.244_src_ip_13.129.95.50_dst_port_5454_src_port_7582_unmatch_srcIp SIP-DIP N/A Tx 60005 Rx 60005 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_vlan_id_3863_vlan_ethtype_ip_dst_mac_02:0c:67:f4:8d:42_src_mac_02:f1:a3:63:62:87_eth_type_ipv4_ip_proto_udp_dst_ip_54.59.220.244_src_ip_13.129.95.50_dst_port_5454_src_port_7582_unmatch_dstIp SIP-DIP N/A Tx 60005 Rx 60005 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_vlan_id_3863_vlan_ethtype_ip_dst_mac_02:0c:67:f4:8d:42_src_mac_02:f1:a3:63:62:87_eth_type_ipv4_ip_proto_udp_dst_ip_54.59.220.244_src_ip_13.129.95.50_dst_port_5454_src_port_7582_unmatch_srcPort SIP-DIP N/A Tx 60005 Rx 60005 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_vlan_id_3863_vlan_ethtype_ip_dst_mac_02:0c:67:f4:8d:42_src_mac_02:f1:a3:63:62:87_eth_type_ipv4_ip_proto_udp_dst_ip_54.59.220.244_src_ip_13.129.95.50_dst_port_5454_src_port_7582_unmatch_dstPort SIP-DIP N/A Tx 60005 Rx 60005 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_3863_vlan_ethtype_ip_dst_mac_02:0c:67:f4:8d:42_src_mac_02:f1:a3:63:62:87_eth_type_ipv4_ip_proto_udp_dst_ip_54.59.220.244_src_ip_13.129.95.50_dst_port_5454_src_port_7582 Tx Frames: 60005, Rx Frames: 60005, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_3863_vlan_ethtype_ip_dst_mac_02:0c:67:f4:8d:42_src_mac_02:f1:a3:63:62:87_eth_type_ipv4_ip_proto_udp_dst_ip_54.59.220.244_src_ip_13.129.95.50_dst_port_5454_src_port_7582_unmatch_srcMac Tx Frames: 60005, Rx Frames: 60005, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_3863_vlan_ethtype_ip_dst_mac_02:0c:67:f4:8d:42_src_mac_02:f1:a3:63:62:87_eth_type_ipv4_ip_proto_udp_dst_ip_54.59.220.244_src_ip_13.129.95.50_dst_port_5454_src_port_7582_unmatch_dstMac Tx Frames: 60005, Rx Frames: 60005, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_3863_vlan_ethtype_ip_dst_mac_02:0c:67:f4:8d:42_src_mac_02:f1:a3:63:62:87_eth_type_ipv4_ip_proto_udp_dst_ip_54.59.220.244_src_ip_13.129.95.50_dst_port_5454_src_port_7582_unmatch_vlanID Tx Frames: 60005, Rx Frames: 0, loss = 100.0, expected_loss = 100.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_3863_vlan_ethtype_ip_dst_mac_02:0c:67:f4:8d:42_src_mac_02:f1:a3:63:62:87_eth_type_ipv4_ip_proto_udp_dst_ip_54.59.220.244_src_ip_13.129.95.50_dst_port_5454_src_port_7582_unmatch_srcIp Tx Frames: 60005, Rx Frames: 60005, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_3863_vlan_ethtype_ip_dst_mac_02:0c:67:f4:8d:42_src_mac_02:f1:a3:63:62:87_eth_type_ipv4_ip_proto_udp_dst_ip_54.59.220.244_src_ip_13.129.95.50_dst_port_5454_src_port_7582_unmatch_dstIp Tx Frames: 60005, Rx Frames: 60005, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_3863_vlan_ethtype_ip_dst_mac_02:0c:67:f4:8d:42_src_mac_02:f1:a3:63:62:87_eth_type_ipv4_ip_proto_udp_dst_ip_54.59.220.244_src_ip_13.129.95.50_dst_port_5454_src_port_7582_unmatch_srcPort Tx Frames: 60005, Rx Frames: 60005, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_3863_vlan_ethtype_ip_dst_mac_02:0c:67:f4:8d:42_src_mac_02:f1:a3:63:62:87_eth_type_ipv4_ip_proto_udp_dst_ip_54.59.220.244_src_ip_13.129.95.50_dst_port_5454_src_port_7582_unmatch_dstPort Tx Frames: 60005, Rx Frames: 60005, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO asyncssh:logging.py:92 [conn=32, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=13] Channel closed DEBUG infra2:Logger.py:156 tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=32, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=14] Command: tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=32, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=14] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"802.1Q","pref":49000,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":3863,"vlan_ethtype":"ip","dst_mac":"02:0c:67:f4:8d:42","src_mac":"02:f1:a3:63:62:87","eth_type":"ipv4","ip_proto":"udp","dst_ip":"54.59.220.244","src_ip":"13.129.95.50","dst_port":5454,"src_port":7582},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"pass"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":182,"stats":{"bytes":15361280,"packets":60005,"drops":0,"overlimits":0,"requeues":0,"sw_bytes":0,"sw_packets":0,"hw_bytes":15361280,"hw_packets":60005,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [DENT infrastructure 2] Rule action = 'pass', Tx Frames = 60005, drops = 0, expected = 0, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 2] Rule action = 'pass', Tx Frames = 60005, packets = 60005, expected = 60005, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 2] Rule action = 'pass', Tx Frames = 60005, hw_packets = 60005, expected = 60005, max tolerance = 0.05 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_all_selectors[port-tagged-pass] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py INFO asyncssh:logging.py:92 [conn=32, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=15] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=32, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=16] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 18:24:40 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=32, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=32, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=32, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=18] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":86,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=32, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=32, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=20] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=32, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=32, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=21] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=32, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=22] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 18:24:40 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=32, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=23] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=32, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=24] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 18:24:40 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=32, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=25] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=32, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=26] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=32, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=26] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=32, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=27] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=32, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=28] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=32, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=32, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=28] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=32, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=29] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=32, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=30] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=32, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=32, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=30] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=32, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=31] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=32, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=32, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=32, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=32] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=32, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=33] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=32, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=32, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=32, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=34] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=32, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=35] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=32, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=32, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=32, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=36] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=32, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=37] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=32, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=32, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=32, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=38] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=32, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=32, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=32, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=32, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=40] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=32, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=32, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=32, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=32, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=42] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=32, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=32, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=32, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=32, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=32, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=32, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=32, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=32, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=46] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=32, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=32, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=48] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=32, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=32, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=48] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=32, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=32, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=50] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=32, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=50] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=32, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=32, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=52] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=32, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=32, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=52] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=32, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=32, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=54] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=32, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=32, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=54] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=32, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=32, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=32, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=55] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=32, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=32, chan=56] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=32, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=32, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=32, chan=56] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/acl/test_acl_all_selectors.py::test_acl_all_selectors[port-tagged-drop] | 185.03 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_all_selectors[port-tagged-drop]">Starting testcase:test_acl_all_selectors[port-tagged-drop] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-1954' coro=<test_acl_all_selectors() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py:117> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=32, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=33] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=33] Local address: 172.17.0.3, port 60356 INFO asyncssh:logging.py:92 [conn=33] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=33] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=33] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=33, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 18:24:41 UTC 2023 INFO asyncssh:logging.py:92 [conn=33, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add name br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=33, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=2] Command: ip link add name br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=33, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=33, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=33, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=4] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=33, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=33, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=5] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp33 vid 1404 && bridge vlan add dev swp34 vid 1404 INFO asyncssh:logging.py:92 [conn=33, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=6] Command: bridge vlan add dev swp33 vid 1404 && bridge vlan add dev swp34 vid 1404 INFO asyncssh:logging.py:92 [conn=33, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=33, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=7] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=33, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=8] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=33, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=33, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=9] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol 802.1q pref 49000 flower skip_sw src_mac 02:a1:a9:e0:02:0b dst_mac 02:c4:5d:86:15:88 vlan_id 1404 vlan_ethtype ip src_ip 42.157.215.182 dst_ip 69.224.7.198 ip_proto udp src_port 47301 dst_port 5452 action drop INFO asyncssh:logging.py:92 [conn=33, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=10] Command: tc filter add dev swp33 ingress protocol 802.1q pref 49000 flower skip_sw src_mac 02:a1:a9:e0:02:0b dst_mac 02:c4:5d:86:15:88 vlan_id 1404 vlan_ethtype ip src_ip 42.157.215.182 dst_ip 69.224.7.198 ip_proto udp src_port 47301 dst_port 5452 action drop INFO asyncssh:logging.py:92 [conn=33, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=33, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=11] Channel closed DEBUG infra2:Logger.py:156 tc -j filter show dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=33, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=12] Command: tc -j filter show dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=33, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=12] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"802.1Q","kind":"flower","chain":0},{"protocol":"802.1Q","kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1404,"vlan_ethtype":"ip","dst_mac":"02:c4:5d:86:15:88","src_mac":"02:a1:a9:e0:02:0b","eth_type":"ipv4","ip_proto":"udp","dst_ip":"69.224.7.198","src_ip":"42.157.215.182","dst_port":5452,"src_port":47301},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"drop"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': 1404, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': 1404, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_1404_vlan_ethtype_ip_dst_mac_02:c4:5d:86:15:88_src_mac_02:a1:a9:e0:02:0b_eth_type_ipv4_ip_proto_udp_dst_ip_69.224.7.198_src_ip_42.157.215.182_dst_port_5452_src_port_47301 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_1404_vlan_ethtype_ip_dst_mac_02:c4:5d:86:15:88_src_mac_02:a1:a9:e0:02:0b_eth_type_ipv4_ip_proto_udp_dst_ip_69.224.7.198_src_ip_42.157.215.182_dst_port_5452_src_port_47301_unmatch_srcMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_1404_vlan_ethtype_ip_dst_mac_02:c4:5d:86:15:88_src_mac_02:a1:a9:e0:02:0b_eth_type_ipv4_ip_proto_udp_dst_ip_69.224.7.198_src_ip_42.157.215.182_dst_port_5452_src_port_47301_unmatch_dstMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_1404_vlan_ethtype_ip_dst_mac_02:c4:5d:86:15:88_src_mac_02:a1:a9:e0:02:0b_eth_type_ipv4_ip_proto_udp_dst_ip_69.224.7.198_src_ip_42.157.215.182_dst_port_5452_src_port_47301_unmatch_vlanID INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_1404_vlan_ethtype_ip_dst_mac_02:c4:5d:86:15:88_src_mac_02:a1:a9:e0:02:0b_eth_type_ipv4_ip_proto_udp_dst_ip_69.224.7.198_src_ip_42.157.215.182_dst_port_5452_src_port_47301_unmatch_srcIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_1404_vlan_ethtype_ip_dst_mac_02:c4:5d:86:15:88_src_mac_02:a1:a9:e0:02:0b_eth_type_ipv4_ip_proto_udp_dst_ip_69.224.7.198_src_ip_42.157.215.182_dst_port_5452_src_port_47301_unmatch_dstIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_1404_vlan_ethtype_ip_dst_mac_02:c4:5d:86:15:88_src_mac_02:a1:a9:e0:02:0b_eth_type_ipv4_ip_proto_udp_dst_ip_69.224.7.198_src_ip_42.157.215.182_dst_port_5452_src_port_47301_unmatch_srcPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_1404_vlan_ethtype_ip_dst_mac_02:c4:5d:86:15:88_src_mac_02:a1:a9:e0:02:0b_eth_type_ipv4_ip_proto_udp_dst_ip_69.224.7.198_src_ip_42.157.215.182_dst_port_5452_src_port_47301_unmatch_dstPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f76ef580>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_vlan_id_1404_vlan_ethtype_ip_dst_mac_02:c4:5d:86:15:88_src_mac_02:a1:a9:e0:02:0b_eth_type_ipv4_ip_proto_udp_dst_ip_69.224.7.198_src_ip_42.157.215.182_dst_port_5452_src_port_47301 SIP-DIP N/A Tx 59968 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_vlan_id_1404_vlan_ethtype_ip_dst_mac_02:c4:5d:86:15:88_src_mac_02:a1:a9:e0:02:0b_eth_type_ipv4_ip_proto_udp_dst_ip_69.224.7.198_src_ip_42.157.215.182_dst_port_5452_src_port_47301_unmatch_srcMac SIP-DIP N/A Tx 59968 Rx 59968 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_vlan_id_1404_vlan_ethtype_ip_dst_mac_02:c4:5d:86:15:88_src_mac_02:a1:a9:e0:02:0b_eth_type_ipv4_ip_proto_udp_dst_ip_69.224.7.198_src_ip_42.157.215.182_dst_port_5452_src_port_47301_unmatch_dstMac SIP-DIP N/A Tx 59968 Rx 59968 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_vlan_id_1404_vlan_ethtype_ip_dst_mac_02:c4:5d:86:15:88_src_mac_02:a1:a9:e0:02:0b_eth_type_ipv4_ip_proto_udp_dst_ip_69.224.7.198_src_ip_42.157.215.182_dst_port_5452_src_port_47301_unmatch_vlanID SIP-DIP N/A Tx 59968 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_vlan_id_1404_vlan_ethtype_ip_dst_mac_02:c4:5d:86:15:88_src_mac_02:a1:a9:e0:02:0b_eth_type_ipv4_ip_proto_udp_dst_ip_69.224.7.198_src_ip_42.157.215.182_dst_port_5452_src_port_47301_unmatch_srcIp SIP-DIP N/A Tx 59968 Rx 59968 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_vlan_id_1404_vlan_ethtype_ip_dst_mac_02:c4:5d:86:15:88_src_mac_02:a1:a9:e0:02:0b_eth_type_ipv4_ip_proto_udp_dst_ip_69.224.7.198_src_ip_42.157.215.182_dst_port_5452_src_port_47301_unmatch_dstIp SIP-DIP N/A Tx 59968 Rx 59968 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_vlan_id_1404_vlan_ethtype_ip_dst_mac_02:c4:5d:86:15:88_src_mac_02:a1:a9:e0:02:0b_eth_type_ipv4_ip_proto_udp_dst_ip_69.224.7.198_src_ip_42.157.215.182_dst_port_5452_src_port_47301_unmatch_srcPort SIP-DIP N/A Tx 59968 Rx 59968 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_vlan_id_1404_vlan_ethtype_ip_dst_mac_02:c4:5d:86:15:88_src_mac_02:a1:a9:e0:02:0b_eth_type_ipv4_ip_proto_udp_dst_ip_69.224.7.198_src_ip_42.157.215.182_dst_port_5452_src_port_47301_unmatch_dstPort SIP-DIP N/A Tx 59968 Rx 59968 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_1404_vlan_ethtype_ip_dst_mac_02:c4:5d:86:15:88_src_mac_02:a1:a9:e0:02:0b_eth_type_ipv4_ip_proto_udp_dst_ip_69.224.7.198_src_ip_42.157.215.182_dst_port_5452_src_port_47301 Tx Frames: 59968, Rx Frames: 0, loss = 100.0, expected_loss = 100.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_1404_vlan_ethtype_ip_dst_mac_02:c4:5d:86:15:88_src_mac_02:a1:a9:e0:02:0b_eth_type_ipv4_ip_proto_udp_dst_ip_69.224.7.198_src_ip_42.157.215.182_dst_port_5452_src_port_47301_unmatch_srcMac Tx Frames: 59968, Rx Frames: 59968, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_1404_vlan_ethtype_ip_dst_mac_02:c4:5d:86:15:88_src_mac_02:a1:a9:e0:02:0b_eth_type_ipv4_ip_proto_udp_dst_ip_69.224.7.198_src_ip_42.157.215.182_dst_port_5452_src_port_47301_unmatch_dstMac Tx Frames: 59968, Rx Frames: 59968, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_1404_vlan_ethtype_ip_dst_mac_02:c4:5d:86:15:88_src_mac_02:a1:a9:e0:02:0b_eth_type_ipv4_ip_proto_udp_dst_ip_69.224.7.198_src_ip_42.157.215.182_dst_port_5452_src_port_47301_unmatch_vlanID Tx Frames: 59968, Rx Frames: 0, loss = 100.0, expected_loss = 100.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_1404_vlan_ethtype_ip_dst_mac_02:c4:5d:86:15:88_src_mac_02:a1:a9:e0:02:0b_eth_type_ipv4_ip_proto_udp_dst_ip_69.224.7.198_src_ip_42.157.215.182_dst_port_5452_src_port_47301_unmatch_srcIp Tx Frames: 59968, Rx Frames: 59968, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_1404_vlan_ethtype_ip_dst_mac_02:c4:5d:86:15:88_src_mac_02:a1:a9:e0:02:0b_eth_type_ipv4_ip_proto_udp_dst_ip_69.224.7.198_src_ip_42.157.215.182_dst_port_5452_src_port_47301_unmatch_dstIp Tx Frames: 59968, Rx Frames: 59968, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_1404_vlan_ethtype_ip_dst_mac_02:c4:5d:86:15:88_src_mac_02:a1:a9:e0:02:0b_eth_type_ipv4_ip_proto_udp_dst_ip_69.224.7.198_src_ip_42.157.215.182_dst_port_5452_src_port_47301_unmatch_srcPort Tx Frames: 59968, Rx Frames: 59968, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_1404_vlan_ethtype_ip_dst_mac_02:c4:5d:86:15:88_src_mac_02:a1:a9:e0:02:0b_eth_type_ipv4_ip_proto_udp_dst_ip_69.224.7.198_src_ip_42.157.215.182_dst_port_5452_src_port_47301_unmatch_dstPort Tx Frames: 59968, Rx Frames: 59968, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO asyncssh:logging.py:92 [conn=33, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=13] Channel closed DEBUG infra2:Logger.py:156 tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=33, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=14] Command: tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=33, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=14] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"802.1Q","pref":49000,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1404,"vlan_ethtype":"ip","dst_mac":"02:c4:5d:86:15:88","src_mac":"02:a1:a9:e0:02:0b","eth_type":"ipv4","ip_proto":"udp","dst_ip":"69.224.7.198","src_ip":"42.157.215.182","dst_port":5452,"src_port":47301},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"drop"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":183,"stats":{"bytes":15351808,"packets":59968,"drops":59968,"overlimits":0,"requeues":0,"sw_bytes":0,"sw_packets":0,"hw_bytes":15351808,"hw_packets":59968,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [DENT infrastructure 2] Rule action = 'drop', Tx Frames = 59968, drops = 59968, expected = 59968, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 2] Rule action = 'drop', Tx Frames = 59968, packets = 59968, expected = 59968, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 2] Rule action = 'drop', Tx Frames = 59968, hw_packets = 59968, expected = 59968, max tolerance = 0.05 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_all_selectors[port-tagged-drop] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py INFO asyncssh:logging.py:92 [conn=33, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=15] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=33, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=16] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 18:27:45 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=33, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=33, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=33, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=18] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":87,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=33, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=33, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=20] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=33, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=33, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=21] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=33, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=22] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 18:27:45 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=33, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=23] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=33, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=24] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 18:27:45 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=33, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=25] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=33, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=26] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=33, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=26] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=33, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=27] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=33, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=28] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=33, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=33, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=28] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=33, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=29] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=33, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=30] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=33, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=33, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=30] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=33, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=31] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=33, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=33, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=33, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=32] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=33, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=33] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=33, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=33, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=33, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=34] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=33, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=35] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=33, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=33, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=33, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=36] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=33, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=37] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=33, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=33, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=33, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=38] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=33, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=33, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=33, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=33, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=40] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=33, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=33, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=33, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=33, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=42] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=33, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=33, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=33, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=33, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=33, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=33, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=33, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=33, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=46] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=33, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=33, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=48] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=33, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=33, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=48] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=33, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=33, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=50] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=33, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=50] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=33, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=33, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=52] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=33, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=33, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=52] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=33, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=33, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=54] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=33, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=33, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=54] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=33, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=33, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=33, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=55] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=33, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=33, chan=56] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=33, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=33, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=33, chan=56] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/acl/test_acl_all_selectors.py::test_acl_all_selectors[port-tagged-trap] | 183.19 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_all_selectors[port-tagged-trap]">Starting testcase:test_acl_all_selectors[port-tagged-trap] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-2023' coro=<test_acl_all_selectors() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py:117> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=33, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=34] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=34] Local address: 172.17.0.3, port 36006 INFO asyncssh:logging.py:92 [conn=34] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=34] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=34] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=34, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 18:27:46 UTC 2023 INFO asyncssh:logging.py:92 [conn=34, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add name br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=34, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=2] Command: ip link add name br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=34, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=34, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=34, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=4] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=34, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=34, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=5] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp33 vid 4009 && bridge vlan add dev swp34 vid 4009 INFO asyncssh:logging.py:92 [conn=34, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=6] Command: bridge vlan add dev swp33 vid 4009 && bridge vlan add dev swp34 vid 4009 INFO asyncssh:logging.py:92 [conn=34, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=34, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=7] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=34, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=8] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=34, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=34, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=9] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol 802.1q pref 49000 flower skip_sw src_mac 02:b8:b3:86:d8:0f dst_mac 02:c9:3f:6b:2d:b8 vlan_id 4009 vlan_ethtype ip src_ip 22.228.149.250 dst_ip 46.79.119.160 ip_proto udp src_port 35687 dst_port 32231 action trap INFO asyncssh:logging.py:92 [conn=34, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=10] Command: tc filter add dev swp33 ingress protocol 802.1q pref 49000 flower skip_sw src_mac 02:b8:b3:86:d8:0f dst_mac 02:c9:3f:6b:2d:b8 vlan_id 4009 vlan_ethtype ip src_ip 22.228.149.250 dst_ip 46.79.119.160 ip_proto udp src_port 35687 dst_port 32231 action trap INFO asyncssh:logging.py:92 [conn=34, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=34, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=11] Channel closed DEBUG infra2:Logger.py:156 tc -j filter show dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=34, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=12] Command: tc -j filter show dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=34, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=12] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"802.1Q","kind":"flower","chain":0},{"protocol":"802.1Q","kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":4009,"vlan_ethtype":"ip","dst_mac":"02:c9:3f:6b:2d:b8","src_mac":"02:b8:b3:86:d8:0f","eth_type":"ipv4","ip_proto":"udp","dst_ip":"46.79.119.160","src_ip":"22.228.149.250","dst_port":32231,"src_port":35687},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': 4009, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': 4009, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_4009_vlan_ethtype_ip_dst_mac_02:c9:3f:6b:2d:b8_src_mac_02:b8:b3:86:d8:0f_eth_type_ipv4_ip_proto_udp_dst_ip_46.79.119.160_src_ip_22.228.149.250_dst_port_32231_src_port_35687 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_4009_vlan_ethtype_ip_dst_mac_02:c9:3f:6b:2d:b8_src_mac_02:b8:b3:86:d8:0f_eth_type_ipv4_ip_proto_udp_dst_ip_46.79.119.160_src_ip_22.228.149.250_dst_port_32231_src_port_35687_unmatch_srcMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_4009_vlan_ethtype_ip_dst_mac_02:c9:3f:6b:2d:b8_src_mac_02:b8:b3:86:d8:0f_eth_type_ipv4_ip_proto_udp_dst_ip_46.79.119.160_src_ip_22.228.149.250_dst_port_32231_src_port_35687_unmatch_dstMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_4009_vlan_ethtype_ip_dst_mac_02:c9:3f:6b:2d:b8_src_mac_02:b8:b3:86:d8:0f_eth_type_ipv4_ip_proto_udp_dst_ip_46.79.119.160_src_ip_22.228.149.250_dst_port_32231_src_port_35687_unmatch_vlanID INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_4009_vlan_ethtype_ip_dst_mac_02:c9:3f:6b:2d:b8_src_mac_02:b8:b3:86:d8:0f_eth_type_ipv4_ip_proto_udp_dst_ip_46.79.119.160_src_ip_22.228.149.250_dst_port_32231_src_port_35687_unmatch_srcIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_4009_vlan_ethtype_ip_dst_mac_02:c9:3f:6b:2d:b8_src_mac_02:b8:b3:86:d8:0f_eth_type_ipv4_ip_proto_udp_dst_ip_46.79.119.160_src_ip_22.228.149.250_dst_port_32231_src_port_35687_unmatch_dstIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_4009_vlan_ethtype_ip_dst_mac_02:c9:3f:6b:2d:b8_src_mac_02:b8:b3:86:d8:0f_eth_type_ipv4_ip_proto_udp_dst_ip_46.79.119.160_src_ip_22.228.149.250_dst_port_32231_src_port_35687_unmatch_srcPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_4009_vlan_ethtype_ip_dst_mac_02:c9:3f:6b:2d:b8_src_mac_02:b8:b3:86:d8:0f_eth_type_ipv4_ip_proto_udp_dst_ip_46.79.119.160_src_ip_22.228.149.250_dst_port_32231_src_port_35687_unmatch_dstPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f7511450>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_vlan_id_4009_vlan_ethtype_ip_dst_mac_02:c9:3f:6b:2d:b8_src_mac_02:b8:b3:86:d8:0f_eth_type_ipv4_ip_proto_udp_dst_ip_46.79.119.160_src_ip_22.228.149.250_dst_port_32231_src_port_35687 SIP-DIP N/A Tx 59687 Rx 23960 Loss 59.857 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_vlan_id_4009_vlan_ethtype_ip_dst_mac_02:c9:3f:6b:2d:b8_src_mac_02:b8:b3:86:d8:0f_eth_type_ipv4_ip_proto_udp_dst_ip_46.79.119.160_src_ip_22.228.149.250_dst_port_32231_src_port_35687_unmatch_srcMac SIP-DIP N/A Tx 59687 Rx 59687 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_vlan_id_4009_vlan_ethtype_ip_dst_mac_02:c9:3f:6b:2d:b8_src_mac_02:b8:b3:86:d8:0f_eth_type_ipv4_ip_proto_udp_dst_ip_46.79.119.160_src_ip_22.228.149.250_dst_port_32231_src_port_35687_unmatch_dstMac SIP-DIP N/A Tx 59687 Rx 59687 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_vlan_id_4009_vlan_ethtype_ip_dst_mac_02:c9:3f:6b:2d:b8_src_mac_02:b8:b3:86:d8:0f_eth_type_ipv4_ip_proto_udp_dst_ip_46.79.119.160_src_ip_22.228.149.250_dst_port_32231_src_port_35687_unmatch_vlanID SIP-DIP N/A Tx 59687 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_vlan_id_4009_vlan_ethtype_ip_dst_mac_02:c9:3f:6b:2d:b8_src_mac_02:b8:b3:86:d8:0f_eth_type_ipv4_ip_proto_udp_dst_ip_46.79.119.160_src_ip_22.228.149.250_dst_port_32231_src_port_35687_unmatch_srcIp SIP-DIP N/A Tx 59687 Rx 59687 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_vlan_id_4009_vlan_ethtype_ip_dst_mac_02:c9:3f:6b:2d:b8_src_mac_02:b8:b3:86:d8:0f_eth_type_ipv4_ip_proto_udp_dst_ip_46.79.119.160_src_ip_22.228.149.250_dst_port_32231_src_port_35687_unmatch_dstIp SIP-DIP N/A Tx 59687 Rx 59687 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_vlan_id_4009_vlan_ethtype_ip_dst_mac_02:c9:3f:6b:2d:b8_src_mac_02:b8:b3:86:d8:0f_eth_type_ipv4_ip_proto_udp_dst_ip_46.79.119.160_src_ip_22.228.149.250_dst_port_32231_src_port_35687_unmatch_srcPort SIP-DIP N/A Tx 59687 Rx 59687 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_vlan_id_4009_vlan_ethtype_ip_dst_mac_02:c9:3f:6b:2d:b8_src_mac_02:b8:b3:86:d8:0f_eth_type_ipv4_ip_proto_udp_dst_ip_46.79.119.160_src_ip_22.228.149.250_dst_port_32231_src_port_35687_unmatch_dstPort SIP-DIP N/A Tx 59687 Rx 59687 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_4009_vlan_ethtype_ip_dst_mac_02:c9:3f:6b:2d:b8_src_mac_02:b8:b3:86:d8:0f_eth_type_ipv4_ip_proto_udp_dst_ip_46.79.119.160_src_ip_22.228.149.250_dst_port_32231_src_port_35687 Tx Frames: 59687, Rx Frames: 23960, loss = 59.857, expected_loss = 60.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_4009_vlan_ethtype_ip_dst_mac_02:c9:3f:6b:2d:b8_src_mac_02:b8:b3:86:d8:0f_eth_type_ipv4_ip_proto_udp_dst_ip_46.79.119.160_src_ip_22.228.149.250_dst_port_32231_src_port_35687_unmatch_srcMac Tx Frames: 59687, Rx Frames: 59687, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_4009_vlan_ethtype_ip_dst_mac_02:c9:3f:6b:2d:b8_src_mac_02:b8:b3:86:d8:0f_eth_type_ipv4_ip_proto_udp_dst_ip_46.79.119.160_src_ip_22.228.149.250_dst_port_32231_src_port_35687_unmatch_dstMac Tx Frames: 59687, Rx Frames: 59687, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_4009_vlan_ethtype_ip_dst_mac_02:c9:3f:6b:2d:b8_src_mac_02:b8:b3:86:d8:0f_eth_type_ipv4_ip_proto_udp_dst_ip_46.79.119.160_src_ip_22.228.149.250_dst_port_32231_src_port_35687_unmatch_vlanID Tx Frames: 59687, Rx Frames: 0, loss = 100.0, expected_loss = 100.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_4009_vlan_ethtype_ip_dst_mac_02:c9:3f:6b:2d:b8_src_mac_02:b8:b3:86:d8:0f_eth_type_ipv4_ip_proto_udp_dst_ip_46.79.119.160_src_ip_22.228.149.250_dst_port_32231_src_port_35687_unmatch_srcIp Tx Frames: 59687, Rx Frames: 59687, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_4009_vlan_ethtype_ip_dst_mac_02:c9:3f:6b:2d:b8_src_mac_02:b8:b3:86:d8:0f_eth_type_ipv4_ip_proto_udp_dst_ip_46.79.119.160_src_ip_22.228.149.250_dst_port_32231_src_port_35687_unmatch_dstIp Tx Frames: 59687, Rx Frames: 59687, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_4009_vlan_ethtype_ip_dst_mac_02:c9:3f:6b:2d:b8_src_mac_02:b8:b3:86:d8:0f_eth_type_ipv4_ip_proto_udp_dst_ip_46.79.119.160_src_ip_22.228.149.250_dst_port_32231_src_port_35687_unmatch_srcPort Tx Frames: 59687, Rx Frames: 59687, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_vlan_id_4009_vlan_ethtype_ip_dst_mac_02:c9:3f:6b:2d:b8_src_mac_02:b8:b3:86:d8:0f_eth_type_ipv4_ip_proto_udp_dst_ip_46.79.119.160_src_ip_22.228.149.250_dst_port_32231_src_port_35687_unmatch_dstPort Tx Frames: 59687, Rx Frames: 59687, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO asyncssh:logging.py:92 [conn=34, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=13] Channel closed DEBUG infra2:Logger.py:156 tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=34, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=14] Command: tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=34, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=14] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"802.1Q","pref":49000,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":4009,"vlan_ethtype":"ip","dst_mac":"02:c9:3f:6b:2d:b8","src_mac":"02:b8:b3:86:d8:0f","eth_type":"ipv4","ip_proto":"udp","dst_ip":"46.79.119.160","src_ip":"22.228.149.250","dst_port":32231,"src_port":35687},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":181,"stats":{"bytes":15279872,"packets":59687,"drops":0,"overlimits":0,"requeues":0,"sw_bytes":0,"sw_packets":0,"hw_bytes":15279872,"hw_packets":59687,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [DENT infrastructure 2] Rule action = 'trap', Tx Frames = 59687, drops = 0, expected = 0, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 2] Rule action = 'trap', Tx Frames = 59687, packets = 59687, expected = 59687, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 2] Rule action = 'trap', Tx Frames = 59687, hw_packets = 59687, expected = 59687, max tolerance = 0.05 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_all_selectors[port-tagged-trap] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py INFO asyncssh:logging.py:92 [conn=34, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=15] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=34, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=16] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 18:30:48 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=34, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=34, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=34, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=18] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":88,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=34, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=34, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=20] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=34, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=34, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=21] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=34, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=22] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 18:30:48 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=34, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=23] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=34, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=24] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 18:30:48 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=34, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=25] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=34, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=26] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=34, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=26] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=34, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=27] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=34, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=28] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=34, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=34, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=28] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=34, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=29] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=34, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=30] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=34, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=34, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=30] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=34, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=31] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=34, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=34, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=34, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=32] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=34, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=33] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=34, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=34, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=34, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=34] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=34, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=35] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=34, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=34, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=34, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=36] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=34, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=37] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=34, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=34, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=34, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=38] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=34, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=34, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=34, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=34, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=40] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=34, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=34, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=34, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=34, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=42] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=34, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=34, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=34, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=34, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=34, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=34, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=34, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=34, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=46] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=34, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=34, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=48] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=34, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=34, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=48] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=34, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=34, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=50] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=34, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=50] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=34, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=34, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=52] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=34, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=34, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=52] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=34, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=34, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=54] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=34, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=34, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=54] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=34, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=34, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=34, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=55] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=34, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=34, chan=56] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=34, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=34, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=34, chan=56] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/acl/test_acl_all_selectors.py::test_acl_all_selectors[port-untagged-pass] | 171.55 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_all_selectors[port-untagged-pass]">Starting testcase:test_acl_all_selectors[port-untagged-pass] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-2092' coro=<test_acl_all_selectors() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py:117> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=34, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=35] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=35] Local address: 172.17.0.3, port 44300 INFO asyncssh:logging.py:92 [conn=35] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=35] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=35] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=35, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 18:30:49 UTC 2023 INFO asyncssh:logging.py:92 [conn=35, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=35, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=2] Command: ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=35, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=35, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=35, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=4] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=35, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=35, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=5] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=35, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=6] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=35, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=35, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=7] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol ip pref 49000 flower skip_sw src_mac 02:f5:42:4b:60:10 dst_mac 02:4f:c9:12:63:4e src_ip 103.3.121.34 dst_ip 110.212.209.90 ip_proto udp src_port 34593 dst_port 24133 action pass INFO asyncssh:logging.py:92 [conn=35, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=8] Command: tc filter add dev swp33 ingress protocol ip pref 49000 flower skip_sw src_mac 02:f5:42:4b:60:10 dst_mac 02:4f:c9:12:63:4e src_ip 103.3.121.34 dst_ip 110.212.209.90 ip_proto udp src_port 34593 dst_port 24133 action pass INFO asyncssh:logging.py:92 [conn=35, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=35, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=9] Channel closed DEBUG infra2:Logger.py:156 tc -j filter show dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=35, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=10] Command: tc -j filter show dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=35, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=10] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"ip","kind":"flower","chain":0},{"protocol":"ip","kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:4f:c9:12:63:4e","src_mac":"02:f5:42:4b:60:10","eth_type":"ipv4","ip_proto":"udp","dst_ip":"110.212.209.90","src_ip":"103.3.121.34","dst_port":24133,"src_port":34593},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"pass"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:4f:c9:12:63:4e_src_mac_02:f5:42:4b:60:10_eth_type_ipv4_ip_proto_udp_dst_ip_110.212.209.90_src_ip_103.3.121.34_dst_port_24133_src_port_34593 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:4f:c9:12:63:4e_src_mac_02:f5:42:4b:60:10_eth_type_ipv4_ip_proto_udp_dst_ip_110.212.209.90_src_ip_103.3.121.34_dst_port_24133_src_port_34593_unmatch_srcMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:4f:c9:12:63:4e_src_mac_02:f5:42:4b:60:10_eth_type_ipv4_ip_proto_udp_dst_ip_110.212.209.90_src_ip_103.3.121.34_dst_port_24133_src_port_34593_unmatch_dstMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:4f:c9:12:63:4e_src_mac_02:f5:42:4b:60:10_eth_type_ipv4_ip_proto_udp_dst_ip_110.212.209.90_src_ip_103.3.121.34_dst_port_24133_src_port_34593_unmatch_srcIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:4f:c9:12:63:4e_src_mac_02:f5:42:4b:60:10_eth_type_ipv4_ip_proto_udp_dst_ip_110.212.209.90_src_ip_103.3.121.34_dst_port_24133_src_port_34593_unmatch_dstIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:4f:c9:12:63:4e_src_mac_02:f5:42:4b:60:10_eth_type_ipv4_ip_proto_udp_dst_ip_110.212.209.90_src_ip_103.3.121.34_dst_port_24133_src_port_34593_unmatch_srcPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:4f:c9:12:63:4e_src_mac_02:f5:42:4b:60:10_eth_type_ipv4_ip_proto_udp_dst_ip_110.212.209.90_src_ip_103.3.121.34_dst_port_24133_src_port_34593_unmatch_dstPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f759a1d0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_dst_mac_02:4f:c9:12:63:4e_src_mac_02:f5:42:4b:60:10_eth_type_ipv4_ip_proto_udp_dst_ip_110.212.209.90_src_ip_103.3.121.34_dst_port_24133_src_port_34593 SIP-DIP N/A Tx 59511 Rx 59511 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_dst_mac_02:4f:c9:12:63:4e_src_mac_02:f5:42:4b:60:10_eth_type_ipv4_ip_proto_udp_dst_ip_110.212.209.90_src_ip_103.3.121.34_dst_port_24133_src_port_34593_unmatch_srcMac SIP-DIP N/A Tx 59511 Rx 59511 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_dst_mac_02:4f:c9:12:63:4e_src_mac_02:f5:42:4b:60:10_eth_type_ipv4_ip_proto_udp_dst_ip_110.212.209.90_src_ip_103.3.121.34_dst_port_24133_src_port_34593_unmatch_dstMac SIP-DIP N/A Tx 59511 Rx 59511 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_dst_mac_02:4f:c9:12:63:4e_src_mac_02:f5:42:4b:60:10_eth_type_ipv4_ip_proto_udp_dst_ip_110.212.209.90_src_ip_103.3.121.34_dst_port_24133_src_port_34593_unmatch_srcIp SIP-DIP N/A Tx 59511 Rx 59511 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_dst_mac_02:4f:c9:12:63:4e_src_mac_02:f5:42:4b:60:10_eth_type_ipv4_ip_proto_udp_dst_ip_110.212.209.90_src_ip_103.3.121.34_dst_port_24133_src_port_34593_unmatch_dstIp SIP-DIP N/A Tx 59511 Rx 59511 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_dst_mac_02:4f:c9:12:63:4e_src_mac_02:f5:42:4b:60:10_eth_type_ipv4_ip_proto_udp_dst_ip_110.212.209.90_src_ip_103.3.121.34_dst_port_24133_src_port_34593_unmatch_srcPort SIP-DIP N/A Tx 59511 Rx 59511 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_dst_mac_02:4f:c9:12:63:4e_src_mac_02:f5:42:4b:60:10_eth_type_ipv4_ip_proto_udp_dst_ip_110.212.209.90_src_ip_103.3.121.34_dst_port_24133_src_port_34593_unmatch_dstPort SIP-DIP N/A Tx 59511 Rx 59511 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:4f:c9:12:63:4e_src_mac_02:f5:42:4b:60:10_eth_type_ipv4_ip_proto_udp_dst_ip_110.212.209.90_src_ip_103.3.121.34_dst_port_24133_src_port_34593 Tx Frames: 59511, Rx Frames: 59511, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:4f:c9:12:63:4e_src_mac_02:f5:42:4b:60:10_eth_type_ipv4_ip_proto_udp_dst_ip_110.212.209.90_src_ip_103.3.121.34_dst_port_24133_src_port_34593_unmatch_srcMac Tx Frames: 59511, Rx Frames: 59511, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:4f:c9:12:63:4e_src_mac_02:f5:42:4b:60:10_eth_type_ipv4_ip_proto_udp_dst_ip_110.212.209.90_src_ip_103.3.121.34_dst_port_24133_src_port_34593_unmatch_dstMac Tx Frames: 59511, Rx Frames: 59511, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:4f:c9:12:63:4e_src_mac_02:f5:42:4b:60:10_eth_type_ipv4_ip_proto_udp_dst_ip_110.212.209.90_src_ip_103.3.121.34_dst_port_24133_src_port_34593_unmatch_srcIp Tx Frames: 59511, Rx Frames: 59511, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:4f:c9:12:63:4e_src_mac_02:f5:42:4b:60:10_eth_type_ipv4_ip_proto_udp_dst_ip_110.212.209.90_src_ip_103.3.121.34_dst_port_24133_src_port_34593_unmatch_dstIp Tx Frames: 59511, Rx Frames: 59511, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:4f:c9:12:63:4e_src_mac_02:f5:42:4b:60:10_eth_type_ipv4_ip_proto_udp_dst_ip_110.212.209.90_src_ip_103.3.121.34_dst_port_24133_src_port_34593_unmatch_srcPort Tx Frames: 59511, Rx Frames: 59511, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:4f:c9:12:63:4e_src_mac_02:f5:42:4b:60:10_eth_type_ipv4_ip_proto_udp_dst_ip_110.212.209.90_src_ip_103.3.121.34_dst_port_24133_src_port_34593_unmatch_dstPort Tx Frames: 59511, Rx Frames: 59511, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO asyncssh:logging.py:92 [conn=35, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=11] Channel closed DEBUG infra2:Logger.py:156 tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=35, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=12] Command: tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=35, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=12] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"ip","pref":49000,"kind":"flower","chain":0},{"protocol":"ip","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:4f:c9:12:63:4e","src_mac":"02:f5:42:4b:60:10","eth_type":"ipv4","ip_proto":"udp","dst_ip":"110.212.209.90","src_ip":"103.3.121.34","dst_port":24133,"src_port":34593},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"pass"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":169,"stats":{"bytes":15234816,"packets":59511,"drops":0,"overlimits":0,"requeues":0,"sw_bytes":0,"sw_packets":0,"hw_bytes":15234816,"hw_packets":59511,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [DENT infrastructure 2] Rule action = 'pass', Tx Frames = 59511, drops = 0, expected = 0, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 2] Rule action = 'pass', Tx Frames = 59511, packets = 59511, expected = 59511, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 2] Rule action = 'pass', Tx Frames = 59511, hw_packets = 59511, expected = 59511, max tolerance = 0.05 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_all_selectors[port-untagged-pass] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py INFO asyncssh:logging.py:92 [conn=35, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=35, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=14] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 18:33:39 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=35, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=35, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=35, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":89,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=35, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=35, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=35, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=35, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=19] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=35, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=20] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 18:33:40 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=35, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=21] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=35, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=22] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 18:33:40 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=35, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=23] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=35, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=35, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=24] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=35, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=25] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=35, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=35, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=35, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=26] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=35, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=27] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=35, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=35, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=35, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=28] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=35, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=29] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=35, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=35, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=35, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=30] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=35, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=31] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=35, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=35, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=35, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=32] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=35, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=33] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=35, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=35, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=35, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=34] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=35, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=35] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=35, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=35, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=35, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=36] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=35, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=37] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=35, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=35, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=35, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=38] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=35, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=35, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=35, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=35, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=40] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=35, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=35, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=35, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=35, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=42] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=35, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=35, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=35, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=35, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=35, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=35, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=46] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=35, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=35, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=46] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=35, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=35, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=48] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=35, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=48] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=35, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=35, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=50] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=35, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=35, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=50] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=35, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=35, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=52] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=35, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=35, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=52] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=35, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=35, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=35, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=35, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=35, chan=54] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=35, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=35, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=35, chan=54] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/acl/test_acl_all_selectors.py::test_acl_all_selectors[port-untagged-drop] | 169.33 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_all_selectors[port-untagged-drop]">Starting testcase:test_acl_all_selectors[port-untagged-drop] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-2159' coro=<test_acl_all_selectors() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py:117> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=35, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=36] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=36] Local address: 172.17.0.3, port 40732 INFO asyncssh:logging.py:92 [conn=36] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=36] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=36] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=36, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 18:33:41 UTC 2023 INFO asyncssh:logging.py:92 [conn=36, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=36, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=2] Command: ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=36, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=36, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=36, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=4] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=36, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=36, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=5] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=36, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=6] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=36, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=36, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=7] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol ip pref 49000 flower skip_sw src_mac 02:ae:b9:a1:ff:c1 dst_mac 02:7c:9a:f1:e4:e2 src_ip 69.16.175.242 dst_ip 73.100.22.243 ip_proto udp src_port 11439 dst_port 10758 action drop INFO asyncssh:logging.py:92 [conn=36, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=8] Command: tc filter add dev swp33 ingress protocol ip pref 49000 flower skip_sw src_mac 02:ae:b9:a1:ff:c1 dst_mac 02:7c:9a:f1:e4:e2 src_ip 69.16.175.242 dst_ip 73.100.22.243 ip_proto udp src_port 11439 dst_port 10758 action drop INFO asyncssh:logging.py:92 [conn=36, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=36, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=9] Channel closed DEBUG infra2:Logger.py:156 tc -j filter show dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=36, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=10] Command: tc -j filter show dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=36, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=10] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"ip","kind":"flower","chain":0},{"protocol":"ip","kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:7c:9a:f1:e4:e2","src_mac":"02:ae:b9:a1:ff:c1","eth_type":"ipv4","ip_proto":"udp","dst_ip":"73.100.22.243","src_ip":"69.16.175.242","dst_port":10758,"src_port":11439},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"drop"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:7c:9a:f1:e4:e2_src_mac_02:ae:b9:a1:ff:c1_eth_type_ipv4_ip_proto_udp_dst_ip_73.100.22.243_src_ip_69.16.175.242_dst_port_10758_src_port_11439 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:7c:9a:f1:e4:e2_src_mac_02:ae:b9:a1:ff:c1_eth_type_ipv4_ip_proto_udp_dst_ip_73.100.22.243_src_ip_69.16.175.242_dst_port_10758_src_port_11439_unmatch_srcMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:7c:9a:f1:e4:e2_src_mac_02:ae:b9:a1:ff:c1_eth_type_ipv4_ip_proto_udp_dst_ip_73.100.22.243_src_ip_69.16.175.242_dst_port_10758_src_port_11439_unmatch_dstMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:7c:9a:f1:e4:e2_src_mac_02:ae:b9:a1:ff:c1_eth_type_ipv4_ip_proto_udp_dst_ip_73.100.22.243_src_ip_69.16.175.242_dst_port_10758_src_port_11439_unmatch_srcIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:7c:9a:f1:e4:e2_src_mac_02:ae:b9:a1:ff:c1_eth_type_ipv4_ip_proto_udp_dst_ip_73.100.22.243_src_ip_69.16.175.242_dst_port_10758_src_port_11439_unmatch_dstIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:7c:9a:f1:e4:e2_src_mac_02:ae:b9:a1:ff:c1_eth_type_ipv4_ip_proto_udp_dst_ip_73.100.22.243_src_ip_69.16.175.242_dst_port_10758_src_port_11439_unmatch_srcPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:7c:9a:f1:e4:e2_src_mac_02:ae:b9:a1:ff:c1_eth_type_ipv4_ip_proto_udp_dst_ip_73.100.22.243_src_ip_69.16.175.242_dst_port_10758_src_port_11439_unmatch_dstPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f759beb0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_dst_mac_02:7c:9a:f1:e4:e2_src_mac_02:ae:b9:a1:ff:c1_eth_type_ipv4_ip_proto_udp_dst_ip_73.100.22.243_src_ip_69.16.175.242_dst_port_10758_src_port_11439 SIP-DIP N/A Tx 60301 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_dst_mac_02:7c:9a:f1:e4:e2_src_mac_02:ae:b9:a1:ff:c1_eth_type_ipv4_ip_proto_udp_dst_ip_73.100.22.243_src_ip_69.16.175.242_dst_port_10758_src_port_11439_unmatch_srcMac SIP-DIP N/A Tx 60301 Rx 60301 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_dst_mac_02:7c:9a:f1:e4:e2_src_mac_02:ae:b9:a1:ff:c1_eth_type_ipv4_ip_proto_udp_dst_ip_73.100.22.243_src_ip_69.16.175.242_dst_port_10758_src_port_11439_unmatch_dstMac SIP-DIP N/A Tx 60301 Rx 60301 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_dst_mac_02:7c:9a:f1:e4:e2_src_mac_02:ae:b9:a1:ff:c1_eth_type_ipv4_ip_proto_udp_dst_ip_73.100.22.243_src_ip_69.16.175.242_dst_port_10758_src_port_11439_unmatch_srcIp SIP-DIP N/A Tx 60301 Rx 60301 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_dst_mac_02:7c:9a:f1:e4:e2_src_mac_02:ae:b9:a1:ff:c1_eth_type_ipv4_ip_proto_udp_dst_ip_73.100.22.243_src_ip_69.16.175.242_dst_port_10758_src_port_11439_unmatch_dstIp SIP-DIP N/A Tx 60301 Rx 60301 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_dst_mac_02:7c:9a:f1:e4:e2_src_mac_02:ae:b9:a1:ff:c1_eth_type_ipv4_ip_proto_udp_dst_ip_73.100.22.243_src_ip_69.16.175.242_dst_port_10758_src_port_11439_unmatch_srcPort SIP-DIP N/A Tx 60301 Rx 60301 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_dst_mac_02:7c:9a:f1:e4:e2_src_mac_02:ae:b9:a1:ff:c1_eth_type_ipv4_ip_proto_udp_dst_ip_73.100.22.243_src_ip_69.16.175.242_dst_port_10758_src_port_11439_unmatch_dstPort SIP-DIP N/A Tx 60301 Rx 60301 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:7c:9a:f1:e4:e2_src_mac_02:ae:b9:a1:ff:c1_eth_type_ipv4_ip_proto_udp_dst_ip_73.100.22.243_src_ip_69.16.175.242_dst_port_10758_src_port_11439 Tx Frames: 60301, Rx Frames: 0, loss = 100.0, expected_loss = 100.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:7c:9a:f1:e4:e2_src_mac_02:ae:b9:a1:ff:c1_eth_type_ipv4_ip_proto_udp_dst_ip_73.100.22.243_src_ip_69.16.175.242_dst_port_10758_src_port_11439_unmatch_srcMac Tx Frames: 60301, Rx Frames: 60301, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:7c:9a:f1:e4:e2_src_mac_02:ae:b9:a1:ff:c1_eth_type_ipv4_ip_proto_udp_dst_ip_73.100.22.243_src_ip_69.16.175.242_dst_port_10758_src_port_11439_unmatch_dstMac Tx Frames: 60301, Rx Frames: 60301, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:7c:9a:f1:e4:e2_src_mac_02:ae:b9:a1:ff:c1_eth_type_ipv4_ip_proto_udp_dst_ip_73.100.22.243_src_ip_69.16.175.242_dst_port_10758_src_port_11439_unmatch_srcIp Tx Frames: 60301, Rx Frames: 60301, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:7c:9a:f1:e4:e2_src_mac_02:ae:b9:a1:ff:c1_eth_type_ipv4_ip_proto_udp_dst_ip_73.100.22.243_src_ip_69.16.175.242_dst_port_10758_src_port_11439_unmatch_dstIp Tx Frames: 60301, Rx Frames: 60301, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:7c:9a:f1:e4:e2_src_mac_02:ae:b9:a1:ff:c1_eth_type_ipv4_ip_proto_udp_dst_ip_73.100.22.243_src_ip_69.16.175.242_dst_port_10758_src_port_11439_unmatch_srcPort Tx Frames: 60301, Rx Frames: 60301, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:7c:9a:f1:e4:e2_src_mac_02:ae:b9:a1:ff:c1_eth_type_ipv4_ip_proto_udp_dst_ip_73.100.22.243_src_ip_69.16.175.242_dst_port_10758_src_port_11439_unmatch_dstPort Tx Frames: 60301, Rx Frames: 60301, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO asyncssh:logging.py:92 [conn=36, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=11] Channel closed DEBUG infra2:Logger.py:156 tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=36, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=12] Command: tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=36, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=12] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"ip","pref":49000,"kind":"flower","chain":0},{"protocol":"ip","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:7c:9a:f1:e4:e2","src_mac":"02:ae:b9:a1:ff:c1","eth_type":"ipv4","ip_proto":"udp","dst_ip":"73.100.22.243","src_ip":"69.16.175.242","dst_port":10758,"src_port":11439},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"drop"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":167,"stats":{"bytes":15437056,"packets":60301,"drops":60301,"overlimits":0,"requeues":0,"sw_bytes":0,"sw_packets":0,"hw_bytes":15437056,"hw_packets":60301,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [DENT infrastructure 2] Rule action = 'drop', Tx Frames = 60301, drops = 60301, expected = 60301, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 2] Rule action = 'drop', Tx Frames = 60301, packets = 60301, expected = 60301, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 2] Rule action = 'drop', Tx Frames = 60301, hw_packets = 60301, expected = 60301, max tolerance = 0.05 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_all_selectors[port-untagged-drop] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py INFO asyncssh:logging.py:92 [conn=36, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=36, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=14] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 18:36:29 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=36, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=36, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=36, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":90,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=36, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=36, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=36, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=36, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=19] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=36, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=20] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 18:36:29 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=36, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=21] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=36, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=22] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 18:36:29 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=36, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=23] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=36, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=36, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=24] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=36, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=25] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=36, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=36, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=36, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=26] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=36, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=27] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=36, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=36, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=36, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=28] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=36, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=29] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=36, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=36, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=36, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=30] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=36, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=31] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=36, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=36, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=36, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=32] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=36, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=33] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=36, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=36, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=36, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=34] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=36, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=35] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=36, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=36, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=36, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=36] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=36, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=37] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=36, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=36, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=36, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=38] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=36, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=36, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=36, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=36, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=40] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=36, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=36, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=36, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=36, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=42] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=36, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=36, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=36, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=36, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=36, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=36, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=46] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=36, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=36, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=46] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=36, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=36, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=48] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=36, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=48] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=36, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=36, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=50] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=36, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=36, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=50] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=36, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=36, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=52] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=36, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=36, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=52] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=36, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=36, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=36, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=36, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=36, chan=54] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=36, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=36, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=36, chan=54] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/acl/test_acl_all_selectors.py::test_acl_all_selectors[port-untagged-trap] | 167.48 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_all_selectors[port-untagged-trap]">Starting testcase:test_acl_all_selectors[port-untagged-trap] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-2226' coro=<test_acl_all_selectors() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py:117> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=36, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=37] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=37] Local address: 172.17.0.3, port 57270 INFO asyncssh:logging.py:92 [conn=37] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=37] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=37] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=37, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 18:36:30 UTC 2023 INFO asyncssh:logging.py:92 [conn=37, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=37, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=2] Command: ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=37, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=37, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=37, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=4] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=37, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=37, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=5] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=37, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=6] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=37, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=37, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=7] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol ip pref 49000 flower skip_sw src_mac 02:fb:91:ca:55:0e dst_mac 02:3e:d4:fb:34:f7 src_ip 115.86.175.132 dst_ip 38.5.78.162 ip_proto udp src_port 28929 dst_port 61912 action trap INFO asyncssh:logging.py:92 [conn=37, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=8] Command: tc filter add dev swp33 ingress protocol ip pref 49000 flower skip_sw src_mac 02:fb:91:ca:55:0e dst_mac 02:3e:d4:fb:34:f7 src_ip 115.86.175.132 dst_ip 38.5.78.162 ip_proto udp src_port 28929 dst_port 61912 action trap INFO asyncssh:logging.py:92 [conn=37, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=37, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=9] Channel closed DEBUG infra2:Logger.py:156 tc -j filter show dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=37, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=10] Command: tc -j filter show dev swp33 ingress pref 49000 INFO asyncssh:logging.py:92 [conn=37, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=10] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"ip","kind":"flower","chain":0},{"protocol":"ip","kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:3e:d4:fb:34:f7","src_mac":"02:fb:91:ca:55:0e","eth_type":"ipv4","ip_proto":"udp","dst_ip":"38.5.78.162","src_ip":"115.86.175.132","dst_port":61912,"src_port":28929},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:3e:d4:fb:34:f7_src_mac_02:fb:91:ca:55:0e_eth_type_ipv4_ip_proto_udp_dst_ip_38.5.78.162_src_ip_115.86.175.132_dst_port_61912_src_port_28929 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:3e:d4:fb:34:f7_src_mac_02:fb:91:ca:55:0e_eth_type_ipv4_ip_proto_udp_dst_ip_38.5.78.162_src_ip_115.86.175.132_dst_port_61912_src_port_28929_unmatch_srcMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:3e:d4:fb:34:f7_src_mac_02:fb:91:ca:55:0e_eth_type_ipv4_ip_proto_udp_dst_ip_38.5.78.162_src_ip_115.86.175.132_dst_port_61912_src_port_28929_unmatch_dstMac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:3e:d4:fb:34:f7_src_mac_02:fb:91:ca:55:0e_eth_type_ipv4_ip_proto_udp_dst_ip_38.5.78.162_src_ip_115.86.175.132_dst_port_61912_src_port_28929_unmatch_srcIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:3e:d4:fb:34:f7_src_mac_02:fb:91:ca:55:0e_eth_type_ipv4_ip_proto_udp_dst_ip_38.5.78.162_src_ip_115.86.175.132_dst_port_61912_src_port_28929_unmatch_dstIp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:3e:d4:fb:34:f7_src_mac_02:fb:91:ca:55:0e_eth_type_ipv4_ip_proto_udp_dst_ip_38.5.78.162_src_ip_115.86.175.132_dst_port_61912_src_port_28929_unmatch_srcPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:3e:d4:fb:34:f7_src_mac_02:fb:91:ca:55:0e_eth_type_ipv4_ip_proto_udp_dst_ip_38.5.78.162_src_ip_115.86.175.132_dst_port_61912_src_port_28929_unmatch_dstPort INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f7599d50>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_dst_mac_02:3e:d4:fb:34:f7_src_mac_02:fb:91:ca:55:0e_eth_type_ipv4_ip_proto_udp_dst_ip_38.5.78.162_src_ip_115.86.175.132_dst_port_61912_src_port_28929 SIP-DIP N/A Tx 60254 Rx 24195 Loss 59.845 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_dst_mac_02:3e:d4:fb:34:f7_src_mac_02:fb:91:ca:55:0e_eth_type_ipv4_ip_proto_udp_dst_ip_38.5.78.162_src_ip_115.86.175.132_dst_port_61912_src_port_28929_unmatch_srcMac SIP-DIP N/A Tx 60254 Rx 60254 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_dst_mac_02:3e:d4:fb:34:f7_src_mac_02:fb:91:ca:55:0e_eth_type_ipv4_ip_proto_udp_dst_ip_38.5.78.162_src_ip_115.86.175.132_dst_port_61912_src_port_28929_unmatch_dstMac SIP-DIP N/A Tx 60254 Rx 60254 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_dst_mac_02:3e:d4:fb:34:f7_src_mac_02:fb:91:ca:55:0e_eth_type_ipv4_ip_proto_udp_dst_ip_38.5.78.162_src_ip_115.86.175.132_dst_port_61912_src_port_28929_unmatch_srcIp SIP-DIP N/A Tx 60254 Rx 60254 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_dst_mac_02:3e:d4:fb:34:f7_src_mac_02:fb:91:ca:55:0e_eth_type_ipv4_ip_proto_udp_dst_ip_38.5.78.162_src_ip_115.86.175.132_dst_port_61912_src_port_28929_unmatch_dstIp SIP-DIP N/A Tx 60254 Rx 60254 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_dst_mac_02:3e:d4:fb:34:f7_src_mac_02:fb:91:ca:55:0e_eth_type_ipv4_ip_proto_udp_dst_ip_38.5.78.162_src_ip_115.86.175.132_dst_port_61912_src_port_28929_unmatch_srcPort SIP-DIP N/A Tx 60254 Rx 60254 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI swp33_dst_mac_02:3e:d4:fb:34:f7_src_mac_02:fb:91:ca:55:0e_eth_type_ipv4_ip_proto_udp_dst_ip_38.5.78.162_src_ip_115.86.175.132_dst_port_61912_src_port_28929_unmatch_dstPort SIP-DIP N/A Tx 60254 Rx 60254 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:3e:d4:fb:34:f7_src_mac_02:fb:91:ca:55:0e_eth_type_ipv4_ip_proto_udp_dst_ip_38.5.78.162_src_ip_115.86.175.132_dst_port_61912_src_port_28929 Tx Frames: 60254, Rx Frames: 24195, loss = 59.845, expected_loss = 60.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:3e:d4:fb:34:f7_src_mac_02:fb:91:ca:55:0e_eth_type_ipv4_ip_proto_udp_dst_ip_38.5.78.162_src_ip_115.86.175.132_dst_port_61912_src_port_28929_unmatch_srcMac Tx Frames: 60254, Rx Frames: 60254, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:3e:d4:fb:34:f7_src_mac_02:fb:91:ca:55:0e_eth_type_ipv4_ip_proto_udp_dst_ip_38.5.78.162_src_ip_115.86.175.132_dst_port_61912_src_port_28929_unmatch_dstMac Tx Frames: 60254, Rx Frames: 60254, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:3e:d4:fb:34:f7_src_mac_02:fb:91:ca:55:0e_eth_type_ipv4_ip_proto_udp_dst_ip_38.5.78.162_src_ip_115.86.175.132_dst_port_61912_src_port_28929_unmatch_srcIp Tx Frames: 60254, Rx Frames: 60254, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:3e:d4:fb:34:f7_src_mac_02:fb:91:ca:55:0e_eth_type_ipv4_ip_proto_udp_dst_ip_38.5.78.162_src_ip_115.86.175.132_dst_port_61912_src_port_28929_unmatch_dstIp Tx Frames: 60254, Rx Frames: 60254, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:3e:d4:fb:34:f7_src_mac_02:fb:91:ca:55:0e_eth_type_ipv4_ip_proto_udp_dst_ip_38.5.78.162_src_ip_115.86.175.132_dst_port_61912_src_port_28929_unmatch_srcPort Tx Frames: 60254, Rx Frames: 60254, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic item: swp33_dst_mac_02:3e:d4:fb:34:f7_src_mac_02:fb:91:ca:55:0e_eth_type_ipv4_ip_proto_udp_dst_ip_38.5.78.162_src_ip_115.86.175.132_dst_port_61912_src_port_28929_unmatch_dstPort Tx Frames: 60254, Rx Frames: 60254, loss = 0.0, expected_loss = 0.000 (max tolerance = 0.05) INFO asyncssh:logging.py:92 [conn=37, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=11] Channel closed DEBUG infra2:Logger.py:156 tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=37, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=12] Command: tc -j -s filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=37, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=12] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"ip","pref":49000,"kind":"flower","chain":0},{"protocol":"ip","pref":49000,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:3e:d4:fb:34:f7","src_mac":"02:fb:91:ca:55:0e","eth_type":"ipv4","ip_proto":"udp","dst_ip":"38.5.78.162","src_ip":"115.86.175.132","dst_port":61912,"src_port":28929},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"installed":165,"stats":{"bytes":15425024,"packets":60254,"drops":0,"overlimits":0,"requeues":0,"sw_bytes":0,"sw_packets":0,"hw_bytes":15425024,"hw_packets":60254,"backlog":0,"qlen":0},"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [DENT infrastructure 2] Rule action = 'trap', Tx Frames = 60254, drops = 0, expected = 0, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 2] Rule action = 'trap', Tx Frames = 60254, packets = 60254, expected = 60254, max tolerance = 0.05 INFO DENT:Logger.py:84 [DENT infrastructure 2] Rule action = 'trap', Tx Frames = 60254, hw_packets = 60254, expected = 60254, max tolerance = 0.05 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_all_selectors[port-untagged-trap] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_all_selectors.py INFO asyncssh:logging.py:92 [conn=37, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=37, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=14] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 18:39:16 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=37, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=37, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=37, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":91,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=37, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=37, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=37, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=37, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=19] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=37, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=20] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 18:39:17 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=37, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=21] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=37, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=22] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 18:39:17 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=37, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=23] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=37, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=37, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=24] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=37, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=25] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=37, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=37, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=37, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=26] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=37, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=27] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=37, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=37, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=37, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=28] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=37, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=29] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=37, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=37, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=37, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=30] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=37, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=31] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=37, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=37, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=37, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=32] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=37, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=33] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=37, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=37, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=37, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=34] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=37, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=35] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=37, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=37, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=37, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=36] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=37, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=37] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=37, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=37, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=37, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=38] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=37, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=37, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=37, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=37, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=40] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=37, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=37, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=37, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=37, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=42] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=37, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=37, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=37, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=37, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=37, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=37, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=46] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=37, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=37, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=46] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=37, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=37, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=48] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=37, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=48] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=37, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=37, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=50] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=37, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=37, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=50] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=37, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=37, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=52] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=37, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=37, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=52] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=37, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=37, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=37, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=37, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=37, chan=54] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=37, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=37, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=37, chan=54] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/acl/test_acl_negative.py::test_acl_rule_without_qdisc | 0.92 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_acl_rule_without_qdisc">Starting testcase:test_acl_rule_without_qdisc from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_negative.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-2291' coro=<test_acl_rule_without_qdisc() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_negative.py:31> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=37, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=38] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=38] Local address: 172.17.0.3, port 40874 INFO asyncssh:logging.py:92 [conn=38] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=38] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=38] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=38, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 18:39:17 UTC 2023 INFO asyncssh:logging.py:92 [conn=38, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=1] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp33 handle 10 clsact INFO asyncssh:logging.py:92 [conn=38, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=2] Command: tc qdisc add dev swp33 handle 10 clsact INFO asyncssh:logging.py:92 [conn=38, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=38, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=3] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress flower skip_sw action drop INFO asyncssh:logging.py:92 [conn=38, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=4] Command: tc filter add dev swp33 ingress flower skip_sw action drop INFO asyncssh:logging.py:92 [conn=38, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=38, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=5] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 handle 10 clsact INFO asyncssh:logging.py:92 [conn=38, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=6] Command: tc qdisc delete dev swp33 handle 10 clsact INFO asyncssh:logging.py:92 [conn=38, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=38, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=7] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress flower skip_sw action drop INFO asyncssh:logging.py:92 [conn=38, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=8] Command: tc filter add dev swp33 ingress flower skip_sw action drop INFO asyncssh:logging.py:92 [conn=38, chan=8] Received exit status 2 INFO asyncssh:logging.py:92 [conn=38, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=8] Channel closed DEBUG infra2:Logger.py:156 Error: Parent Qdisc doesn't exists. We have an error talking to the kernel -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_acl_rule_without_qdisc from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/acl/test_acl_negative.py INFO asyncssh:logging.py:92 [conn=38, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=9] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=38, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=10] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=10] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 18:39:18 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=38, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=11] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=38, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=12] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=38, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=12] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=38, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=13] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=38, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=14] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=38, chan=14] Received exit status 2 INFO asyncssh:logging.py:92 [conn=38, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=14] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=38, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=15] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=38, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=16] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=38, chan=16] Received exit status 2 INFO asyncssh:logging.py:92 [conn=38, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=16] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=38, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=17] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=38, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=18] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=38, chan=18] Received exit status 2 INFO asyncssh:logging.py:92 [conn=38, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=18] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=38, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=19] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=38, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=20] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=38, chan=20] Received exit status 2 INFO asyncssh:logging.py:92 [conn=38, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=20] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=38, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=21] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=38, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=22] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=38, chan=22] Received exit status 2 INFO asyncssh:logging.py:92 [conn=38, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=22] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=38, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=23] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=38, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=24] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=38, chan=24] Received exit status 2 INFO asyncssh:logging.py:92 [conn=38, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=24] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=38, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=25] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=38, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=26] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=38, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=38, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=26] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=38, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=27] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=38, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=28] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=38, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=38, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=28] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=38, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=29] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=38, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=38, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=38, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=30] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=38, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=31] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=38, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=38, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=38, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=32] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=38, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=33] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=38, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=34] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=38, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=38, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=34] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=38, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=35] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=38, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=36] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=38, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=38, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=36] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=38, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=37] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=38, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=38] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=38, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=38, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=38] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=38, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=38, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=38, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=38, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=38, chan=40] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=38, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=38, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=38, chan=40] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/bridging/test_bridging_admin_state_down_up.py::test_bridging_admin_state_down_up | 196.99 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_admin_state_down_up">Starting testcase:test_bridging_admin_state_down_up from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_admin_state_down_up.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-2340' coro=<test_bridging_admin_state_down_up() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_admin_state_down_up.py:60> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=38, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=39] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=39] Local address: 172.17.0.3, port 40882 INFO asyncssh:logging.py:92 [conn=39] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=39] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=39] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=39, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=39, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 18:39:18 UTC 2023 INFO asyncssh:logging.py:92 [conn=39, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=39, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=39, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=39, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=39, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=39, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=39, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=39, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=39, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=39, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=39, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=39, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=39, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=39, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=7] Channel closed DEBUG infra2:Logger.py:156 bridge link set dev swp33 learning on flood off && bridge link set dev swp34 learning on flood off && bridge link set dev swp35 learning on flood off && bridge link set dev swp36 learning on flood off INFO asyncssh:logging.py:92 [conn=39, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=8] Command: bridge link set dev swp33 learning on flood off && bridge link set dev swp34 learning on flood off && bridge link set dev swp35 learning on flood off && bridge link set dev swp36 learning on flood off INFO asyncssh:logging.py:92 [conn=39, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=39, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=39, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 down INFO asyncssh:logging.py:92 [conn=39, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=10] Command: ip link set dev br0 down INFO asyncssh:logging.py:92 [conn=39, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f759abf0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:8 Rx 10.36.118.199:2:5 TI bridge_1 SIP-DIP N/A Tx 310 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:6 TI bridge_2 SIP-DIP N/A Tx 310 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:7 TI bridge_3 SIP-DIP N/A Tx 310 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI bridge_4 SIP-DIP N/A Tx 310 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=39, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=39, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=11] Channel closed DEBUG infra2:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=39, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=12] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=39, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=12] Channel closed DEBUG infra2:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:82","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"18:be:92:13:64:a5","ifname":"swp33","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a5","ifname":"swp33","flags":[],"master":"br0","state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a5","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"18:be:92:13:64:a6","ifname":"swp34","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a6","ifname":"swp34","flags":[],"master":"br0","state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a6","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"18:be:92:13:64:a7","ifname":"swp35","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a7","ifname":"swp35","flags":[],"master":"br0","state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a7","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"18:be:92:13:64:a8","ifname":"swp36","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a8","ifname":"swp36","flags":[],"master":"br0","state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a8","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp52","flags":["self"],"state":"permanent"}] INFO asyncssh:logging.py:92 [conn=39, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=39, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=39, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=14] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=39, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f75997e0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_1 Tx 310 Rx 0 Frames Delta 310 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_2 Tx 310 Rx 0 Frames Delta 310 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 Tx 310 Rx 0 Frames Delta 310 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_4 Tx 310 Rx 0 Frames Delta 310 Loss 100.000 INFO asyncssh:logging.py:92 [conn=39, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=39, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=15] Channel closed DEBUG infra2:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=39, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=16] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=39, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:82","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:11","ifname":"swp33","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"18:be:92:13:64:a5","ifname":"swp33","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a5","ifname":"swp33","flags":[],"master":"br0","state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a5","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:12","ifname":"swp34","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"18:be:92:13:64:a6","ifname":"swp34","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a6","ifname":"swp34","flags":[],"master":"br0","state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a6","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:13","ifname":"swp35","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"18:be:92:13:64:a7","ifname":"swp35","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a7","ifname":"swp35","flags":[],"master":"br0","state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a7","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:14","ifname":"swp36","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"18:be:92:13:64:a8","ifname":"swp36","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a8","ifname":"swp36","flags":[],"master":"br0","state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a8","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a5","ifname":"br0","flags":["self"],"state":"permanent"}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_admin_state_down_up from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_admin_state_down_up.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=39, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=39, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=17] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=39, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=39, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=18] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 18:42:31 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=39, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=39, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=19] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=39, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=39, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=20] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 18:42:35 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=39, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=39, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=39, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=22] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=39, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=22] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":92,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=39, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=39, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=23] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=39, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=39, chan=24] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=39, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=39, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=39, chan=24] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/bridging/test_bridging_ageing.py::test_bridging_ageing_refresh | 292.26 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_ageing_refresh">Starting testcase:test_bridging_ageing_refresh from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_ageing.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-2374' coro=<test_bridging_ageing_refresh() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_ageing.py:47> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=39, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=40] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=40] Local address: 172.17.0.3, port 56292 INFO asyncssh:logging.py:92 [conn=40] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=40] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=40] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=40, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=40, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 18:42:35 UTC 2023 INFO asyncssh:logging.py:92 [conn=40, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=40, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=40, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=40, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=40, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=40, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=40, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=40, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=40, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=40, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 type bridge ageing_time 4000 INFO asyncssh:logging.py:92 [conn=40, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=6] Command: ip link set dev br0 type bridge ageing_time 4000 INFO asyncssh:logging.py:92 [conn=40, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=40, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=40, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=40, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=8] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=40, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=40, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=40, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=9] Channel closed DEBUG infra2:Logger.py:156 bridge link set dev swp33 learning on && bridge link set dev swp34 learning on && bridge link set dev swp35 learning on && bridge link set dev swp36 learning on INFO asyncssh:logging.py:92 [conn=40, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=10] Command: bridge link set dev swp33 learning on && bridge link set dev swp34 learning on && bridge link set dev swp35 learning on && bridge link set dev swp36 learning on INFO asyncssh:logging.py:92 [conn=40, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:2:7' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f759bfa0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI bridge SIP-DIP N/A Tx 193 Rx 193 Loss 0.000 INFO asyncssh:logging.py:92 [conn=40, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=40, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=11] Channel closed DEBUG infra2:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=40, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=12] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=40, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=12] Channel closed DEBUG infra2:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:82","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"18:be:92:13:64:a5","ifname":"swp33","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a5","ifname":"swp33","flags":[],"master":"br0","state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a5","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:11","ifname":"swp34","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"18:be:92:13:64:a6","ifname":"swp34","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a6","ifname":"swp34","flags":[],"master":"br0","state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a6","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"18:be:92:13:64:a7","ifname":"swp35","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a7","ifname":"swp35","flags":[],"master":"br0","state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a7","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"18:be:92:13:64:a8","ifname":"swp36","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a8","ifname":"swp36","flags":[],"master":"br0","state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a8","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:26:ca:a4","ifname":"br0","flags":["self"],"state":"permanent"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f759ad10>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI bridge SIP-DIP N/A Tx 193 Rx 193 Loss 0.000 INFO asyncssh:logging.py:92 [conn=40, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=40, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=13] Channel closed DEBUG infra2:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=40, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=14] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=40, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=14] Channel closed DEBUG infra2:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:82","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"18:be:92:13:64:a5","ifname":"swp33","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a5","ifname":"swp33","flags":[],"master":"br0","state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a5","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:11","ifname":"swp34","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"18:be:92:13:64:a6","ifname":"swp34","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a6","ifname":"swp34","flags":[],"master":"br0","state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a6","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"18:be:92:13:64:a7","ifname":"swp35","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a7","ifname":"swp35","flags":[],"master":"br0","state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a7","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"18:be:92:13:64:a8","ifname":"swp36","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a8","ifname":"swp36","flags":[],"master":"br0","state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a8","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:26:ca:a4","ifname":"br0","flags":["self"],"state":"permanent"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f759b790>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI bridge SIP-DIP N/A Tx 3777 Rx 3777 Loss 0.000 INFO asyncssh:logging.py:92 [conn=40, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=40, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=15] Channel closed DEBUG infra2:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=40, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=16] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=40, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:82","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"18:be:92:13:64:a5","ifname":"swp33","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a5","ifname":"swp33","flags":[],"master":"br0","state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a5","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"18:be:92:13:64:a6","ifname":"swp34","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a6","ifname":"swp34","flags":[],"master":"br0","state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a6","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"18:be:92:13:64:a7","ifname":"swp35","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a7","ifname":"swp35","flags":[],"master":"br0","state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a7","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"18:be:92:13:64:a8","ifname":"swp36","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a8","ifname":"swp36","flags":[],"master":"br0","state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a8","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:26:ca:a4","ifname":"br0","flags":["self"],"state":"permanent"}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_ageing_refresh from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_ageing.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=40, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=40, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=17] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=40, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=40, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=18] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 18:47:27 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=40, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=40, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=19] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=40, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=40, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=20] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 18:47:27 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=40, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=40, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=40, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=22] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=40, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=22] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":93,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=40, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=40, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=23] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=40, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=40, chan=24] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=40, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=40, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=40, chan=24] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/bridging/test_bridging_ageing.py::test_bridging_ageing_under_continue | 199.53 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_ageing_under_continue">Starting testcase:test_bridging_ageing_under_continue from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_ageing.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-2408' coro=<test_bridging_ageing_under_continue() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_ageing.py:191> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=40, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=41] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=41] Local address: 172.17.0.3, port 58966 INFO asyncssh:logging.py:92 [conn=41] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=41] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=41] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=41, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=41, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 18:47:28 UTC 2023 INFO asyncssh:logging.py:92 [conn=41, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=41, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=41, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=41, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=41, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=41, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=41, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=41, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=41, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=41, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 type bridge ageing_time 1000 INFO asyncssh:logging.py:92 [conn=41, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=6] Command: ip link set dev br0 type bridge ageing_time 1000 INFO asyncssh:logging.py:92 [conn=41, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=41, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=41, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=41, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=8] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=41, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=41, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=41, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=9] Channel closed DEBUG infra2:Logger.py:156 bridge link set dev swp33 learning on flood off && bridge link set dev swp34 learning on flood off && bridge link set dev swp35 learning on flood off && bridge link set dev swp36 learning on flood off INFO asyncssh:logging.py:92 [conn=41, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=10] Command: bridge link set dev swp33 learning on flood off && bridge link set dev swp34 learning on flood off && bridge link set dev swp35 learning on flood off && bridge link set dev swp36 learning on flood off INFO asyncssh:logging.py:92 [conn=41, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f75b9060>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_1 Tx 2193 Rx 2192 Frames Delta 1 Loss 0.046 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_2 Tx 2193 Rx 2192 Frames Delta 1 Loss 0.046 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 Tx 2193 Rx 2192 Frames Delta 1 Loss 0.046 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_4 Tx 2193 Rx 2192 Frames Delta 1 Loss 0.046 INFO asyncssh:logging.py:92 [conn=41, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=41, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=11] Channel closed DEBUG infra2:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=41, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=12] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=41, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=12] Channel closed DEBUG infra2:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:82","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:11","ifname":"swp33","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"18:be:92:13:64:a5","ifname":"swp33","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a5","ifname":"swp33","flags":[],"master":"br0","state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a5","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:12","ifname":"swp34","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"18:be:92:13:64:a6","ifname":"swp34","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a6","ifname":"swp34","flags":[],"master":"br0","state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a6","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:13","ifname":"swp35","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"18:be:92:13:64:a7","ifname":"swp35","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a7","ifname":"swp35","flags":[],"master":"br0","state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a7","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:14","ifname":"swp36","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:14:01:00:00:01","ifname":"swp36","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"18:be:92:13:64:a8","ifname":"swp36","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a8","ifname":"swp36","flags":[],"master":"br0","state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a8","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:5e:c9:1c","ifname":"br0","flags":["self"],"state":"permanent"}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_ageing_under_continue from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_ageing.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=41, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=41, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=41, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=41, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=14] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 18:50:46 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=41, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=41, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=15] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=41, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=41, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=16] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 18:50:47 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=41, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=41, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=41, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=41, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=18] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":94,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=41, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=41, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=41, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=41, chan=20] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=41, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=41, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=41, chan=20] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/bridging/test_bridging_bum_traffic_bridge.py::test_bridging_bum_traffic_bridge_with_rif | 244.31 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_bum_traffic_bridge_with_rif">Starting testcase:test_bridging_bum_traffic_bridge_with_rif from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_bum_traffic_bridge.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-2439' coro=<test_bridging_bum_traffic_bridge_with_rif() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_bum_traffic_bridge.py:52> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=41, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=42] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=42] Local address: 172.17.0.3, port 37348 INFO asyncssh:logging.py:92 [conn=42] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=42] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=42] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=42, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 18:50:47 UTC 2023 INFO asyncssh:logging.py:92 [conn=42, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=42, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=42, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=42, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=42, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=42, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=42, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=42, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=42, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=42, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip address add 100.1.1.253/24 dev br0 INFO asyncssh:logging.py:92 [conn=42, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=8] Command: ip address add 100.1.1.253/24 dev br0 INFO asyncssh:logging.py:92 [conn=42, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=42, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip -j link show swp33 INFO asyncssh:logging.py:92 [conn=42, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=10] Command: ip -j link show swp33 INFO asyncssh:logging.py:92 [conn=42, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=10] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:2:7' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Bridged_UnknownL2UC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for BridgedLLDP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for LACPDU INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4ToMe INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ARP_Request_BC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ARP_Reply INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_Broadcast INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPV4_SSH INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPV4_Telnet INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Host_to_Host_IPv4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_ICMP_Request INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_DCHP_BC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_Reserved_MC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_All_Systems_on_this_Subnet INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_All_Routers_on_this_Subnet INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_OSPFIGP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_RIP2_Routers INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_EIGRP_Routers INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_DHCP_Server/Relay_Agent INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_VRRP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_IGMP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPV4_BGP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [DENT infrastructure 2] Starting timeout --preserve-status 15 tcpdump -i swp33 -n on infra2... INFO asyncssh:logging.py:92 [conn=42, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=11] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S timeout --preserve-status 15 tcpdump -i swp33 -n INFO asyncssh:logging.py:92 [conn=42, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=12] Command: echo onl | sudo -S timeout --preserve-status 15 tcpdump -i swp33 -n INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f75ba9e0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI Bridged_UnknownL2UC SIP-DIP N/A Tx 599 Rx 599 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI BridgedLLDP SIP-DIP N/A Tx 599 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI LACPDU SIP-DIP N/A Tx 599 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPv4ToMe SIP-DIP N/A Tx 599 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI ARP_Request_BC SIP-DIP N/A Tx 599 Rx 599 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI ARP_Reply SIP-DIP N/A Tx 599 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPv4_Broadcast SIP-DIP N/A Tx 599 Rx 599 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPV4_SSH SIP-DIP N/A Tx 599 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPV4_Telnet SIP-DIP N/A Tx 599 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI Host_to_Host_IPv4 SIP-DIP N/A Tx 599 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPv4_ICMP_Request SIP-DIP N/A Tx 599 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPv4_DCHP_BC SIP-DIP N/A Tx 599 Rx 599 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPv4_Reserved_MC SIP-DIP N/A Tx 599 Rx 599 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPv4_All_Systems_on_this_Subnet SIP-DIP N/A Tx 599 Rx 599 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPv4_All_Routers_on_this_Subnet SIP-DIP N/A Tx 599 Rx 599 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPv4_OSPFIGP SIP-DIP N/A Tx 599 Rx 599 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPv4_RIP2_Routers SIP-DIP N/A Tx 599 Rx 599 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPv4_EIGRP_Routers SIP-DIP N/A Tx 599 Rx 599 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPv4_DHCP_Server/Relay_Agent SIP-DIP N/A Tx 599 Rx 599 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPv4_VRRP SIP-DIP N/A Tx 599 Rx 599 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPv4_IGMP SIP-DIP N/A Tx 599 Rx 599 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPV4_BGP SIP-DIP N/A Tx 599 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=42, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=12] Channel closed DEBUG infra2:Logger.py:156 18:54:36.277515 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.277602 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.277650 LLDP, length 82 [|LLDP] 18:54:36.277653 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 009c 06ed 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.277656 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.277668 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.277672 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.277680 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.277693 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.277700 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.277735 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.277739 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.277746 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.277748 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.277754 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.285714 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.285747 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.285776 LLDP, length 82 [|LLDP] 18:54:36.285778 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00a2 53b9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.285780 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.285788 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.285791 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.285797 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.285823 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.285827 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.285831 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.285843 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.285849 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.285852 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.285857 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.296719 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.296749 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.296774 LLDP, length 82 [|LLDP] 18:54:36.296776 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00aa ba20 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.296778 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.296785 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.296789 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.296792 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.296804 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.296811 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.296833 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.296837 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.296843 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.296845 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.296849 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.304978 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.305005 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.305027 LLDP, length 82 [|LLDP] 18:54:36.305029 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00b1 06ec 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.305031 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.305038 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.305059 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.305063 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.305069 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.305072 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.305076 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.305088 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.305093 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.305095 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.305100 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.315986 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.316006 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.316029 LLDP, length 82 [|LLDP] 18:54:36.316031 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00b9 6d53 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.316034 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.316040 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.316043 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.316047 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.316052 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.316075 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.316078 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.316091 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.316096 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.316099 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.316103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.327000 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.327020 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.327040 LLDP, length 82 [|LLDP] 18:54:36.327042 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00c1 d3ba 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.327044 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.327050 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.327053 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.327057 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.327068 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.327074 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.327095 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.327099 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.327103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.327106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.327110 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.335251 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.335277 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.335298 LLDP, length 82 [|LLDP] 18:54:36.335300 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00c8 2087 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.335302 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.335308 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.335314 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.335324 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.335327 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.335331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.335334 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.335346 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.335351 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.335354 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.335359 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.346261 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.346286 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.346309 LLDP, length 82 [|LLDP] 18:54:36.346311 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00d0 86ed 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.346313 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.346319 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.346323 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.346326 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.346338 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.346343 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.346355 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.346358 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.346362 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.346364 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.346369 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.357270 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.357296 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.357319 LLDP, length 82 [|LLDP] 18:54:36.357321 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00d8 ed54 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.357323 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.357329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.357333 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.357336 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.357348 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.357354 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.357364 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.357367 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.357372 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.357374 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.357379 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.365530 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.365549 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.365571 LLDP, length 82 [|LLDP] 18:54:36.365573 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00df 3a21 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.365575 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.365581 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.365584 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.365591 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.365601 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.365604 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.365608 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.365620 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.365625 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.365627 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.365631 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.376544 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.376570 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.376592 LLDP, length 82 [|LLDP] 18:54:36.376593 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00e7 a087 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.376595 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.376601 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.376605 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.376609 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.376620 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.376626 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.376636 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.376640 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.376644 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.376646 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.376651 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.384794 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.384820 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.384842 LLDP, length 82 [|LLDP] 18:54:36.384844 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00ed ed55 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.384846 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.384852 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.384861 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.384865 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.384870 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.384874 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.384877 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.384889 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.384894 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.384896 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.384901 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.395803 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.395828 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.395850 LLDP, length 82 [|LLDP] 18:54:36.395851 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00f6 53bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.395854 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.395860 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.395864 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.395867 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.395872 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.395882 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.395886 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.395898 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.395903 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.395905 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.395910 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.406814 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.406839 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.406862 LLDP, length 82 [|LLDP] 18:54:36.406864 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00fe ba21 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.406865 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.406871 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.406875 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.406879 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.406891 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.406897 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.406908 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.406911 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.406915 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.406917 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.406922 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.415081 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.415115 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.415146 LLDP, length 82 [|LLDP] 18:54:36.415148 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0105 06ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.415150 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.415158 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.415164 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.415177 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.415180 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.415184 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.415187 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.415200 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.415205 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.415208 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.415213 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.426093 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.426119 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.426152 LLDP, length 82 [|LLDP] 18:54:36.426154 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 010d 6d54 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.426156 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.426163 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.426167 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.426171 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.426183 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.426189 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.426202 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.426205 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.426209 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.426212 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.426217 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.437100 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.437133 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.437160 LLDP, length 82 [|LLDP] 18:54:36.437162 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0115 d3ba 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.437164 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.437171 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.437175 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.437179 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.437191 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.437197 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.437208 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.437211 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.437216 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.437218 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.437228 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.445353 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.445388 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.445416 LLDP, length 82 [|LLDP] 18:54:36.445418 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 011c 2087 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.445420 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.445427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.445431 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.445437 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.445447 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.445450 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.445454 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.445466 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.445471 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.445474 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.445479 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.456364 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.456392 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.456417 LLDP, length 82 [|LLDP] 18:54:36.456418 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0124 86ed 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.456420 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.456427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.456431 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.456434 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.456446 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.456452 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.456463 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.456467 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.456471 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.456473 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.456478 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.467376 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.467407 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.467433 LLDP, length 82 [|LLDP] 18:54:36.467435 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 012c ed54 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.467437 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.467443 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.467455 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.467459 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.467465 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.467468 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.467472 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.467484 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.467489 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.467491 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.467496 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.475642 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.475687 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.475717 LLDP, length 82 [|LLDP] 18:54:36.475719 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0133 3a20 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.475721 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.475728 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.475732 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.475735 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.475742 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.475754 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.475758 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.475770 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.475780 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.475782 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.475787 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.486640 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.486663 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.486692 LLDP, length 82 [|LLDP] 18:54:36.486694 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 013b a08e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.486696 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.486703 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.486707 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.486710 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.486723 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.486729 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.486741 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.486744 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.486748 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.486751 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.486755 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.494906 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.494932 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.494956 LLDP, length 82 [|LLDP] 18:54:36.494957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0141 ed53 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.494959 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.494966 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.494973 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.494984 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.494988 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.494991 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.494995 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.495021 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.495027 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.495029 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.495034 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.505914 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.505943 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.505966 LLDP, length 82 [|LLDP] 18:54:36.505968 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 014a 53ba 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.505970 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.505977 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.505980 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.505984 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.505996 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.506002 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.506014 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.506017 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.506022 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.506024 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.506028 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.516917 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.516943 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.516967 LLDP, length 82 [|LLDP] 18:54:36.516969 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0152 ba20 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.516971 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.516978 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.516981 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.516985 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.516997 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.517003 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.517013 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.517016 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.517021 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.517024 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.517028 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.525170 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.525195 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.525217 LLDP, length 82 [|LLDP] 18:54:36.525219 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0159 06ed 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.525221 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.525228 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.525231 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.525237 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.525249 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.525251 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.525255 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.525267 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.525272 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.525275 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.525279 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.536183 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.536208 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.536230 LLDP, length 82 [|LLDP] 18:54:36.536231 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0161 6d53 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.536233 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.536240 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.536243 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.536247 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.536258 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.536264 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.536275 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.536277 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.536282 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.536284 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.536289 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.547191 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.547215 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.547236 LLDP, length 82 [|LLDP] 18:54:36.547238 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0169 d3ba 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.547249 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.547256 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.547268 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.547271 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.547277 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.547281 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.547284 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.547297 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.547301 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.547304 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.547308 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.555450 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.555475 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.555495 LLDP, length 82 [|LLDP] 18:54:36.555497 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0170 2086 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.555498 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.555504 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.555507 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.555511 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.555517 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.555533 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.555536 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.555549 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.555554 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.555556 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.555560 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.566463 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.566489 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.566511 LLDP, length 82 [|LLDP] 18:54:36.566513 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0178 86ec 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.566515 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.566521 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.566524 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.566533 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.566545 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.566550 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.566562 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.566565 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.566570 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.566572 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.566576 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.574720 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.574747 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.574770 LLDP, length 82 [|LLDP] 18:54:36.574772 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 017e d3ba 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.574774 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.574780 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.574785 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.574795 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.574799 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.574803 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.574807 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.574818 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.574823 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.574826 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.574830 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.585727 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.585755 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.585779 LLDP, length 82 [|LLDP] 18:54:36.585781 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0187 3a21 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.585783 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.585789 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.585792 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.585796 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.585808 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.585814 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.585825 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.585828 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.585832 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.585834 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.585839 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.596751 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.596779 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.596809 LLDP, length 82 [|LLDP] 18:54:36.596811 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 018f a086 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.596813 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.596820 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.596824 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.596827 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.596839 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.596845 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.596857 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.596860 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.596865 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.596868 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.596872 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.605001 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.605029 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.605059 LLDP, length 82 [|LLDP] 18:54:36.605061 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0195 ed5a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.605063 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.605069 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.605072 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.605078 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.605090 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.605094 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.605097 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.605110 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.605115 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.605117 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.605122 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.616008 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.616033 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.616055 LLDP, length 82 [|LLDP] 18:54:36.616057 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 019e 53bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.616059 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.616069 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.616073 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.616076 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.616089 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.616095 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.616106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.616109 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.616113 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.616115 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.616120 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.627018 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.627036 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.627058 LLDP, length 82 [|LLDP] 18:54:36.627060 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01a6 ba20 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.627063 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.627068 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.627078 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.627082 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.627092 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.627096 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.627099 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.627112 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.627117 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.627119 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.627124 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.635270 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.635295 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.635317 LLDP, length 82 [|LLDP] 18:54:36.635319 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01ad 06ed 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.635321 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.635327 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.635331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.635334 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.635339 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.635350 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.635353 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.635364 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.635370 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.635372 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.635377 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.646279 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.646305 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.646328 LLDP, length 82 [|LLDP] 18:54:36.646330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01b5 6d54 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.646332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.646337 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.646341 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.646345 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.646356 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.646361 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.646372 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.646375 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.646379 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.646382 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.646386 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.657305 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.657336 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.657366 LLDP, length 82 [|LLDP] 18:54:36.657368 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01bd d3ba 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.657370 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.657379 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.657394 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.657406 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.657410 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.657413 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.657417 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.657430 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.657436 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.657438 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.657443 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.665559 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.665591 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.665618 LLDP, length 82 [|LLDP] 18:54:36.665619 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01c4 2087 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.665621 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.665629 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.665633 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.665636 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.665649 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.665655 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.665667 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.665670 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.665675 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.665677 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.665681 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.676574 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.676611 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.676641 LLDP, length 82 [|LLDP] 18:54:36.676644 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01cc 86ed 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.676646 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.676653 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.676657 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.676660 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.676672 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.676679 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.676692 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.676695 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.676700 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.676703 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.676707 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.684819 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.684846 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.684872 LLDP, length 82 [|LLDP] 18:54:36.684874 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01d2 d3ba 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.684876 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.684881 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.684885 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.684891 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.684906 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.684909 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.684913 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.684925 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.684930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.684932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.684937 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.695830 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.695857 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.695883 LLDP, length 82 [|LLDP] 18:54:36.695884 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01db 3a20 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.695887 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.695893 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.695897 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.695900 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.695917 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.695923 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.695934 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.695937 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.695941 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.695943 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.695948 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.706839 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.706866 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.706890 LLDP, length 82 [|LLDP] 18:54:36.706892 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01e3 a086 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.706894 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.706900 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.706910 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.706913 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.706919 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.706923 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.706926 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.706938 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.706948 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.706951 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.706955 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.715101 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.715126 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.715149 LLDP, length 82 [|LLDP] 18:54:36.715151 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01e9 ed53 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.715153 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.715158 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.715162 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.715165 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.715171 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.715181 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.715184 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.715197 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.715202 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.715205 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.715209 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.726101 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.726124 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.726146 LLDP, length 82 [|LLDP] 18:54:36.726148 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01f2 53b9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.726150 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.726156 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.726159 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.726163 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.726174 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.726181 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.726191 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.726194 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.726198 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.726201 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.726205 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.737129 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.737151 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.737177 LLDP, length 82 [|LLDP] 18:54:36.737179 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01fa ba27 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.737181 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.737189 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.737194 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.737205 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.737209 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.737213 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.737216 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.737228 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.737234 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.737236 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.737241 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.745377 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.745403 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.745425 LLDP, length 82 [|LLDP] 18:54:36.745426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0201 06ed 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.745428 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.745435 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.745439 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.745443 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.745455 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.745460 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.745471 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.745474 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.745478 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.745481 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.745485 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.756397 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.756423 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.756451 LLDP, length 82 [|LLDP] 18:54:36.756453 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0209 6d53 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.756455 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.756462 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.756466 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.756469 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.756481 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.756488 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.756499 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.756503 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.767424 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.767463 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.767495 LLDP, length 82 [|LLDP] 18:54:36.767498 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0211 d3b9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.767500 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.767509 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.767513 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.767520 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.767534 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.767538 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.767542 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.767546 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.767558 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.767561 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.767566 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.775682 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.775712 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.775743 LLDP, length 82 [|LLDP] 18:54:36.775745 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0218 2086 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.775747 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.775754 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.775758 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.775761 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.775773 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.775780 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.775793 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.775798 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.775801 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.775803 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.775809 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.786670 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.786704 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.786733 LLDP, length 82 [|LLDP] 18:54:36.786735 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0220 86ec 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.786737 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.786744 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.786756 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.786762 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.786765 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.786770 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.786774 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.786778 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.786790 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.786793 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.786798 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.794932 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.794962 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.794987 LLDP, length 82 [|LLDP] 18:54:36.794988 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0226 d3b9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.794990 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.794997 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.795001 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.795009 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.795014 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.795026 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.795031 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.795034 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.795046 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.795049 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.795055 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.805947 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.805973 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.806000 LLDP, length 82 [|LLDP] 18:54:36.806002 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 022f 3a20 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.806004 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.806011 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.806015 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.806019 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.806030 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.806036 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.806049 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.806055 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.806058 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.806061 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.806065 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.816954 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.816981 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.817009 LLDP, length 82 [|LLDP] 18:54:36.817011 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0237 a087 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.817013 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.817020 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.817026 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.817038 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.817043 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.817046 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.817051 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.817054 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.817066 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.817069 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.817074 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.825208 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.825229 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.825253 LLDP, length 82 [|LLDP] 18:54:36.825255 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 023d ed53 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.825257 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.825263 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.825267 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.825270 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.825283 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.825288 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.825299 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.825304 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.825307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.825309 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.825314 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.836204 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.836230 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.836253 LLDP, length 82 [|LLDP] 18:54:36.836255 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0246 53ba 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.836257 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.836263 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.836267 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.836270 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.836282 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.836288 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.836298 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.836303 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.836305 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.836307 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.836312 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.847214 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.847240 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.847261 LLDP, length 82 [|LLDP] 18:54:36.847263 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 024e ba20 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.847265 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.847271 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.847274 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.847279 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.847290 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.847294 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.847297 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.847301 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.847313 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.847315 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.847320 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.855483 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.855502 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.855524 LLDP, length 82 [|LLDP] 18:54:36.855526 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0255 06f3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.855527 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.855534 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.855537 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.855549 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.855559 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.855570 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.855575 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.855578 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.855579 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.866487 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.866505 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.866526 LLDP, length 82 [|LLDP] 18:54:36.866528 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 025d 6d54 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.866530 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.866536 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.866542 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.866552 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.866557 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.866560 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.866562 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.866565 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.866574 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.866586 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.866592 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.874738 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.874767 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.874787 LLDP, length 82 [|LLDP] 18:54:36.874789 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0263 ba21 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.874791 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.874797 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.874801 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.874805 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.874816 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.874822 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.874832 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.874837 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.874840 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.874842 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.874850 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.885753 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.885780 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.885805 LLDP, length 82 [|LLDP] 18:54:36.885807 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 026c 2087 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.885808 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.885815 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.885818 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.885822 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.885834 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.885840 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.885852 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.885856 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.885859 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.885861 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.885867 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.896758 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.896783 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.896804 LLDP, length 82 [|LLDP] 18:54:36.896806 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0274 86ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.896808 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.896814 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.896818 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.896823 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.896834 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.896838 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.896841 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.896843 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.896847 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.896858 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.896864 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.905014 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.905039 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.905059 LLDP, length 82 [|LLDP] 18:54:36.905060 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 027a d3bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.905062 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.905068 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.905072 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.905075 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.905087 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.905093 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.905103 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.905108 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.905111 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.905113 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.905118 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.916027 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.916051 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.916071 LLDP, length 82 [|LLDP] 18:54:36.916072 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0283 3a21 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.916074 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.916080 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.916090 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.916094 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.916098 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.916100 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.916105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.916108 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.916112 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.916123 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.916128 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.927039 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.927056 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.927077 LLDP, length 82 [|LLDP] 18:54:36.927079 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 028b a087 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.927081 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.927087 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.927091 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.927094 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.927100 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.927110 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.927114 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.927117 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.927119 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.927130 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.927136 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.935291 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.935314 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.935345 LLDP, length 82 [|LLDP] 18:54:36.935347 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0291 ed55 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.935349 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.935355 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.935358 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.935362 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.935374 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.935380 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.935390 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.935394 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.935397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.935399 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.935404 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.946301 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.946328 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.946348 LLDP, length 82 [|LLDP] 18:54:36.946349 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 029a 53bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.946352 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.946357 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.946363 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.946373 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.946378 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.946381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.946383 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.946387 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.946390 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.946403 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.946408 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.957308 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.957332 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.957352 LLDP, length 82 [|LLDP] 18:54:36.957354 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02a2 ba20 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.957356 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.957361 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.957365 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.957368 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.957381 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.957386 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.957396 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.957401 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.957404 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.957406 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.957410 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.965568 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.965591 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.965610 LLDP, length 82 [|LLDP] 18:54:36.965612 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02a9 06ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.965614 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.965619 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.965623 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.965626 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.965638 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.965643 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.965654 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.965658 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.965661 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.965663 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.965667 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.976578 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.976602 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.976621 LLDP, length 82 [|LLDP] 18:54:36.976623 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02b1 6d54 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.976625 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.976630 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.976634 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.976639 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.976650 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.976654 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.976657 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.976659 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.976663 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.976674 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.976680 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.984836 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.984860 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.984881 LLDP, length 82 [|LLDP] 18:54:36.984883 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02b7 ba21 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.984884 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.984890 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.984894 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.984897 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.984908 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.984914 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.984925 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.984929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.984932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.984934 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.984939 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.995846 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.995870 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.995892 LLDP, length 82 [|LLDP] 18:54:36.995894 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02c0 2086 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.995895 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.995901 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.995911 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.995916 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.995919 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.995921 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.995926 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.995929 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.995933 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.995945 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.995950 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.006854 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.006877 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.006897 LLDP, length 82 [|LLDP] 18:54:37.006899 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02c8 86ed 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.006901 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.006906 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.006910 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.006914 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.006919 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.006929 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.006934 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.006937 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.006939 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.006950 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.006956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.015173 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.015224 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.015274 LLDP, length 82 [|LLDP] 18:54:37.015277 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02ce d3ba 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.015280 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.015290 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.015294 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.015298 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.015310 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.015319 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.015337 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.015342 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.015346 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.015348 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.015354 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.026180 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.026230 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.026282 LLDP, length 82 [|LLDP] 18:54:37.026284 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02d7 3a25 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.026287 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.026299 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.026307 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.026325 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.026331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.026335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.026337 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.026341 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.026345 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.026358 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.026365 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.037201 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.037252 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.037303 LLDP, length 82 [|LLDP] 18:54:37.037306 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02df a087 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.037308 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.037319 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.037323 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.037327 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.037340 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.037348 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.037366 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.037372 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.037376 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.037378 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.037384 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.045455 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.045507 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.045558 LLDP, length 82 [|LLDP] 18:54:37.045560 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02e5 ed53 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.045563 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.045574 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.045578 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.045582 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.045595 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.045602 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.045620 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.045626 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.045630 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.045632 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.045638 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.056474 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.056526 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.056578 LLDP, length 82 [|LLDP] 18:54:37.056580 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02ee 53ba 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.056583 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.056594 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.056598 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.056606 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.056624 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.056631 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.056634 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.056637 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.056641 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.056654 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.056661 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.064717 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.064767 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.064818 LLDP, length 82 [|LLDP] 18:54:37.064820 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02f4 a086 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.064823 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.064835 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.064839 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.064843 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.064856 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.064865 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.064883 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.064888 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.064892 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.064895 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.064900 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.075757 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.075811 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.075864 LLDP, length 82 [|LLDP] 18:54:37.075867 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02fd 06ed 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.075870 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.075879 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.075897 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.075906 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.075910 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.075912 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.075922 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.075925 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.075929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.075942 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.075950 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.086735 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.086787 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.086839 LLDP, length 82 [|LLDP] 18:54:37.086842 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0305 6d53 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.086844 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.086855 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.086859 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.086862 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.086871 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.086889 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.086894 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.086899 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.086901 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.086914 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.086921 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.094996 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.095045 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.095094 LLDP, length 82 [|LLDP] 18:54:37.095096 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 030b ba20 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.095098 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.095109 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.095113 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.095117 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.095130 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.095138 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.095155 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.095161 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.095164 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.095166 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.095172 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.105948 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.105975 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.106000 LLDP, length 82 [|LLDP] 18:54:37.106002 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0314 208c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.106004 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.106010 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.106016 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.106026 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.106031 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.106034 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.106036 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.106040 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.106043 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.106055 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.106061 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.116959 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.116982 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.117003 LLDP, length 82 [|LLDP] 18:54:37.117005 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 031c 86ec 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.117006 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.117012 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.117016 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.117020 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.117031 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.117037 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.117048 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.117052 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.117056 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.117058 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.117063 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.125212 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.125234 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.125255 LLDP, length 82 [|LLDP] 18:54:37.125257 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0322 d3b9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.125259 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.125264 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.125268 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.125272 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.125283 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.125290 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.125299 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.125304 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.125307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.125309 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.125313 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.136220 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.136243 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.136263 LLDP, length 82 [|LLDP] 18:54:37.136264 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 032b 3a20 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.136266 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.136272 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.136275 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.136281 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.136291 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.136311 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.136315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.136318 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.136321 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.136335 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.136341 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.147268 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.147309 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.147343 LLDP, length 82 [|LLDP] 18:54:37.147345 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0333 a086 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.147347 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.147359 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.147363 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.147366 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.147379 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.147386 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.147401 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.147407 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.147411 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.147413 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.147418 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.155515 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.155543 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.155578 LLDP, length 82 [|LLDP] 18:54:37.155580 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0339 ed53 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.155581 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.155587 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.155599 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.155606 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.155609 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.155611 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.155618 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.155622 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.155626 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.155638 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.155643 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.166508 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.166538 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.166564 LLDP, length 82 [|LLDP] 18:54:37.166566 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0342 53db 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.166568 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.166575 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.166579 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.166583 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.166589 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.166600 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.166604 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.166608 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.166610 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.166622 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.166628 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.174767 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.174794 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.174819 LLDP, length 82 [|LLDP] 18:54:37.174821 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0348 a0a8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.174823 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.174829 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.174833 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.174837 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.174848 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.174855 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.174866 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.174870 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.174874 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.174876 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.174881 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.185777 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.185805 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.185827 LLDP, length 82 [|LLDP] 18:54:37.185829 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0351 070f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.185831 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.185838 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.185843 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.185854 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.185859 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.185862 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.185864 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.185868 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.185871 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.185883 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.185889 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.196789 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.196809 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.196833 LLDP, length 82 [|LLDP] 18:54:37.196835 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0359 6d7c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.196837 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.196844 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.196848 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.196852 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.196864 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.196870 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.196881 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.196885 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.196889 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.196891 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.196896 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.205040 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.205067 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.205088 LLDP, length 82 [|LLDP] 18:54:37.205090 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 035f ba42 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.205092 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.205099 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.205102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.205106 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.205118 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.205128 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.205138 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.205143 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.205146 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.205148 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.205153 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.216054 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.216080 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.216104 LLDP, length 82 [|LLDP] 18:54:37.216106 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0368 20a9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.216108 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.216115 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.216119 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.216125 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.216136 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.216140 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.216144 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.216146 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.216149 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.216165 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.216171 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.227072 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.227103 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.227128 LLDP, length 82 [|LLDP] 18:54:37.227130 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0370 8710 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.227132 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.227139 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.227144 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.227147 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.227168 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.227175 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.227192 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.227196 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.227200 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.227202 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.227207 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.235318 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.235348 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.235372 LLDP, length 82 [|LLDP] 18:54:37.235374 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0376 d3dd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.235376 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.235382 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.235393 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.235398 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.235401 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.235404 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.235409 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.235412 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.235416 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.235428 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.235433 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.246325 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.246356 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.246378 LLDP, length 82 [|LLDP] 18:54:37.246380 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 037f 3a42 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.246382 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.246388 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.246392 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.246395 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.246401 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.246412 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.246416 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.246419 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.246422 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.246434 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.246439 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.257340 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.257367 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.257389 LLDP, length 82 [|LLDP] 18:54:37.257391 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0387 a0a9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.257393 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.257399 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.257403 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.257407 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.257419 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.257425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.257435 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.257440 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.257443 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.257445 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.257450 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.265594 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.265610 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.265629 LLDP, length 82 [|LLDP] 18:54:37.265631 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 038d ed76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.265633 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.265639 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.265644 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.265654 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.265658 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.265661 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.265663 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.265668 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.265671 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.265683 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.265689 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.276603 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.276620 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.276636 LLDP, length 82 [|LLDP] 18:54:37.276639 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0396 53df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.276640 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.276646 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.276650 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.276654 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.276666 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.276671 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.276695 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.276700 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.276703 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.276705 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.276710 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.284857 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.284878 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.284898 LLDP, length 82 [|LLDP] 18:54:37.284899 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 039c a0a8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.284901 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.284906 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.284910 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.284914 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.284926 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.284932 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.284941 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.284946 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.284949 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.284951 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.284956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.295875 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.295893 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.295913 LLDP, length 82 [|LLDP] 18:54:37.295915 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03a5 070f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.295917 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.295923 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.295926 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.295932 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.295941 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.295946 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.295949 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.295951 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.295955 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.295967 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.295972 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.306877 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.306901 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.306922 LLDP, length 82 [|LLDP] 18:54:37.306923 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03ad 6d76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.306926 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.306932 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.306935 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.306939 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.306951 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.306956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.306965 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.306970 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.306973 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.306975 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.306979 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.315135 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.315157 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.315175 LLDP, length 82 [|LLDP] 18:54:37.315177 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03b3 ba42 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.315179 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.315185 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.315194 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.315199 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.315202 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.315204 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.315208 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.315212 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.315215 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.315228 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.315233 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.326146 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.326163 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.326182 LLDP, length 82 [|LLDP] 18:54:37.326183 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03bc 20a8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.326185 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.326191 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.326194 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.326198 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.326203 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.326213 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.326218 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.326221 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.326224 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.326235 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.326240 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.337152 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.337175 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.337195 LLDP, length 82 [|LLDP] 18:54:37.337196 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03c4 870f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.337198 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.337203 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.337207 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.337211 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.337222 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.337227 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.337237 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.337241 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.337244 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.337246 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.337251 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.345409 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.345431 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.345451 LLDP, length 82 [|LLDP] 18:54:37.345452 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03ca d3dc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.345454 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.345459 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.345464 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.345474 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.345478 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.345481 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.345483 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.345487 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.345490 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.345501 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.345507 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.356421 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.356443 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.356463 LLDP, length 82 [|LLDP] 18:54:37.356464 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03d3 3a42 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.356466 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.356472 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.356475 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.356479 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.356491 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.356497 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.356507 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.356511 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.356513 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.356515 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.356520 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.364678 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.364698 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.364717 LLDP, length 82 [|LLDP] 18:54:37.364718 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03d9 870e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.364720 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.364725 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.364729 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.364733 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.364745 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.364750 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.364759 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.364764 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.364767 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.364769 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.364773 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.375698 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.375713 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.375733 LLDP, length 82 [|LLDP] 18:54:37.375734 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03e1 ed74 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.375736 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.375742 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.375745 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.375750 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.375760 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.375765 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.375768 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.375770 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.375773 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.375784 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.375789 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.386698 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.386719 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.386737 LLDP, length 82 [|LLDP] 18:54:37.386739 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03ea 53db 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.386741 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.386746 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.386750 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.386753 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.386764 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.386770 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.386779 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.386784 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.386787 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.386789 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.386793 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.394954 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.394974 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.394992 LLDP, length 82 [|LLDP] 18:54:37.394994 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03f0 a0af 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.394996 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.395002 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.395011 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.395016 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.395019 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.395021 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.395026 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.395029 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.395033 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.395044 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.395050 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.405964 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.405987 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.406008 LLDP, length 82 [|LLDP] 18:54:37.406010 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03f9 070e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.406012 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.406017 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.406021 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.406025 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.406030 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.406040 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.406045 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.406047 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.406049 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.406061 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.406066 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.416975 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.416997 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.417016 LLDP, length 82 [|LLDP] 18:54:37.417017 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0401 6d75 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.417019 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.417025 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.417028 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.417032 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.417044 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.417049 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.417058 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.417063 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.417066 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.417068 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.417072 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.425230 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.425252 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.425271 LLDP, length 82 [|LLDP] 18:54:37.425272 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0407 ba41 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.425274 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.425280 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.425285 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.425295 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.425299 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.425302 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.425304 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.425308 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.425311 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.425323 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.425328 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.436245 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.436260 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.436279 LLDP, length 82 [|LLDP] 18:54:37.436280 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0410 20a8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.436283 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.436288 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.436291 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.436295 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.436306 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.436312 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.436321 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.436326 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.436329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.436331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.436335 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.447254 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.447276 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.447294 LLDP, length 82 [|LLDP] 18:54:37.447296 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0418 8714 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.447298 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.447304 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.447307 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.447311 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.447322 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.447328 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.447337 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.447342 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.447344 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.447346 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.447351 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.455510 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.455531 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.455549 LLDP, length 82 [|LLDP] 18:54:37.455551 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 041e d3db 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.455553 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.455558 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.455562 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.455567 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.455577 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.455582 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.455584 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.455587 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.455590 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.455602 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.455607 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.466520 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.466542 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.466560 LLDP, length 82 [|LLDP] 18:54:37.466561 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0427 3a42 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.466563 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.466569 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.466573 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.466577 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.466588 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.466594 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.466603 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.466608 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.466611 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.466613 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.466618 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.474778 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.474800 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.474818 LLDP, length 82 [|LLDP] 18:54:37.474820 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 042d 870f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.474822 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.474827 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.474837 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.474842 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.474845 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.474847 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.474851 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.474855 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.474859 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.474871 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.474876 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.485788 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.485808 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.485827 LLDP, length 82 [|LLDP] 18:54:37.485829 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0435 ed75 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.485831 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.485836 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.485840 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.485844 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.485849 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.485858 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.485863 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.485866 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.485868 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.485880 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.485885 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.496799 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.496822 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.496843 LLDP, length 82 [|LLDP] 18:54:37.496844 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 043e 53dc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.496846 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.496852 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.496855 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.496859 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.496871 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.496877 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.496887 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.496892 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.496894 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.496896 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.496901 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.505056 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.505078 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.505098 LLDP, length 82 [|LLDP] 18:54:37.505099 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0444 a0a8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.505101 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.505108 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.505113 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.505123 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.505128 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.505130 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.505132 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.505137 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.505140 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.505152 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.505157 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.516064 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.516087 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.516105 LLDP, length 82 [|LLDP] 18:54:37.516107 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 044d 070f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.516109 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.516115 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.516118 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.516122 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.516134 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.516139 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.516149 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.516154 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.516156 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.516159 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.516163 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.527074 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.527095 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.527113 LLDP, length 82 [|LLDP] 18:54:37.527115 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0455 6d78 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.527117 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.527123 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.527126 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.527130 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.527141 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.527146 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.527156 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.527161 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.527164 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.527166 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.527170 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.535331 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.535353 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.535373 LLDP, length 82 [|LLDP] 18:54:37.535375 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 045b ba42 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.535377 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.535382 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.535385 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.535392 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.535401 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.535406 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.535408 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.535410 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.535414 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.535426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.535432 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.546345 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.546366 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.546386 LLDP, length 82 [|LLDP] 18:54:37.546387 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0464 20a8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.546390 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.546395 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.546399 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.546402 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.546414 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.546420 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.546429 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.546433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.546437 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.546439 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.546443 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.557353 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.557376 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.557396 LLDP, length 82 [|LLDP] 18:54:37.557398 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 046c 870f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.557400 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.557405 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.557415 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.557420 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.557423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.557425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.557430 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.557433 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.557436 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.557448 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.557454 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.565611 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.565632 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.565651 LLDP, length 82 [|LLDP] 18:54:37.565653 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0472 d3dc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.565654 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.565660 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.565664 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.565667 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.565672 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.565682 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.565687 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.565689 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.565691 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.565703 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.565709 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.576618 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.576640 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.576659 LLDP, length 82 [|LLDP] 18:54:37.576661 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 047b 3a41 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.576662 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.576668 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.576671 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.576675 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.576687 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.576693 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.576702 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.576707 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.576709 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.576711 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.576716 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.584875 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.584895 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.584913 LLDP, length 82 [|LLDP] 18:54:37.584915 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0481 870e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.584916 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.584922 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.584927 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.584936 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.584941 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.584944 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.584946 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.584949 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.584953 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.584965 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.584970 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.595885 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.595910 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.595928 LLDP, length 82 [|LLDP] 18:54:37.595930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0489 ed75 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.595932 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.595937 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.595941 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.595944 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.595955 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.595961 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.595970 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.595975 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.595978 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.595980 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.595985 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.606899 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.606916 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.606936 LLDP, length 82 [|LLDP] 18:54:37.606938 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0492 53db 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.606940 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.606946 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.606949 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.606953 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.606965 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.606971 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.606981 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.606985 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.606988 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.606990 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.606994 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.615155 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.615171 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.615190 LLDP, length 82 [|LLDP] 18:54:37.615192 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0498 a0a7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.615194 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.615199 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.615203 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.615208 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.615217 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.615222 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.615225 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.615227 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.615230 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.615242 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.615247 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.626163 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.626185 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.626204 LLDP, length 82 [|LLDP] 18:54:37.626206 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04a1 070e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.626208 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.626214 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.626218 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.626221 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.626232 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.626238 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.626248 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.626252 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.626255 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.626257 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.626261 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.637173 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.637196 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.637215 LLDP, length 82 [|LLDP] 18:54:37.637216 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04a9 6d74 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.637218 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.637223 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.637234 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.637239 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.637241 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.637244 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.637249 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.637252 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.637256 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.637268 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.637273 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.645431 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.645453 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.645473 LLDP, length 82 [|LLDP] 18:54:37.645475 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04af ba48 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.645477 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.645482 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.645486 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.645490 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.645495 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.645505 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.645509 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.645512 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.645514 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.645526 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.645531 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.656442 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.656466 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.656486 LLDP, length 82 [|LLDP] 18:54:37.656487 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04b8 20a8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.656489 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.656495 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.656498 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.656502 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.656513 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.656519 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.656529 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.656534 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.656536 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.656538 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.656543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.664703 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.664719 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.664739 LLDP, length 82 [|LLDP] 18:54:37.664741 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04be 6d75 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.664743 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.664749 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.664754 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.664763 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.664767 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.664770 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.664772 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.664776 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.664779 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.664791 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.664796 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.675732 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.675759 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.675777 LLDP, length 82 [|LLDP] 18:54:37.675779 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04c6 d3dc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.675781 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.675786 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.675790 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.675793 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.675804 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.675810 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.675819 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.675824 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.675827 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.675829 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.675833 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.686722 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.686737 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.686755 LLDP, length 82 [|LLDP] 18:54:37.686757 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04cf 3a42 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.686759 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.686764 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.686768 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.686771 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.686782 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.686788 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.686798 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.686803 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.686806 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.686808 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.686812 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.694974 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.694995 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.695014 LLDP, length 82 [|LLDP] 18:54:37.695016 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04d5 870f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.695017 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.695023 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.695027 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.695032 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.695041 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.695046 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.695049 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.695051 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.695054 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.695066 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.695071 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.705985 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.706005 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.706024 LLDP, length 82 [|LLDP] 18:54:37.706026 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04dd ed75 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.706027 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.706033 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.706036 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.706040 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.706052 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.706057 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.706066 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.706071 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.706074 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.706076 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.706081 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.716997 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.717022 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.717041 LLDP, length 82 [|LLDP] 18:54:37.717043 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04e6 53dc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.717044 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.717050 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.717059 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.717064 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.717066 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.717069 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.717073 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.717077 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.717080 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.717093 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.717098 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.725255 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.725279 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.725301 LLDP, length 82 [|LLDP] 18:54:37.725303 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04ec a0a9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.725305 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.725311 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.725314 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.725318 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.725323 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.725335 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.725339 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.725342 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.725344 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.725355 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.725361 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.736265 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.736289 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.736309 LLDP, length 82 [|LLDP] 18:54:37.736310 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04f5 070f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.736312 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.736317 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.736321 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.736325 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.736336 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.736342 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.736351 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.736356 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.736359 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.736361 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.736365 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.747274 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.747295 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.747314 LLDP, length 82 [|LLDP] 18:54:37.747316 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04fd 6d76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.747318 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.747324 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.747329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.747339 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.747343 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.747346 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.747348 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.747351 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.747355 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.747367 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.747372 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.755529 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.755552 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.755571 LLDP, length 82 [|LLDP] 18:54:37.755572 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0503 ba42 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.755574 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.755580 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.755583 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.755587 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.755598 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.755604 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.755614 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.755618 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.755621 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.755623 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.755627 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.766559 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.766588 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.766612 LLDP, length 82 [|LLDP] 18:54:37.766614 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 050c 20a8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.766616 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.766623 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.766627 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.766630 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.766643 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.766649 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.766660 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.766665 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.766668 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.766670 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.766675 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.774811 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.774829 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.774850 LLDP, length 82 [|LLDP] 18:54:37.774852 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0512 6d75 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.774854 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.774860 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.774864 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.774869 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.774879 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.774884 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.774887 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.774889 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.774892 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.774905 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.774910 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.785810 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.785832 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.785851 LLDP, length 82 [|LLDP] 18:54:37.785853 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 051a d3db 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.785855 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.785860 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.785864 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.785867 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.785879 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.785885 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.785894 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.785898 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.785901 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.785904 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.785909 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.796826 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.796853 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.796876 LLDP, length 82 [|LLDP] 18:54:37.796877 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0523 3a42 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.796879 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.796885 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.796896 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.796901 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.796904 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.796907 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.796912 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.796915 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.796919 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.796930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.796936 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.805081 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.805103 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.805123 LLDP, length 82 [|LLDP] 18:54:37.805125 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0529 870e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.805127 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.805132 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.805136 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.805140 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.805145 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.805155 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.805159 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.805162 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.805164 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.805176 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.805181 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.816095 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.816124 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.816147 LLDP, length 82 [|LLDP] 18:54:37.816149 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0531 ed75 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.816151 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.816157 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.816160 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.816164 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.816176 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.816183 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.816193 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.816197 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.816200 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.816202 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.816206 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.827103 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.827131 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.827153 LLDP, length 82 [|LLDP] 18:54:37.827155 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 053a 53db 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.827157 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.827163 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.827169 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.827179 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.827183 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.827186 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.827188 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.827192 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.827195 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.827207 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.827213 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.835354 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.835377 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.835396 LLDP, length 82 [|LLDP] 18:54:37.835398 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0540 a0a8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.835400 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.835405 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.835408 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.835412 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.835424 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.835430 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.835439 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.835444 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.835447 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.835449 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.835454 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.846363 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.846386 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.846406 LLDP, length 82 [|LLDP] 18:54:37.846408 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0549 070e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.846410 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.846416 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.846419 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.846423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.846434 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.846440 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.846449 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.846454 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.846457 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.846459 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.846464 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.854622 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.854644 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.854664 LLDP, length 82 [|LLDP] 18:54:37.854666 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 054f 53db 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.854667 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.854673 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.854677 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.854682 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.854691 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.854696 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.854699 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.854701 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.854705 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.854716 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.854722 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.865629 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.865651 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.865669 LLDP, length 82 [|LLDP] 18:54:37.865671 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0557 ba41 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.865673 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.865678 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.865682 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.865685 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.865697 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.865703 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.865712 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.865716 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.865719 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.865722 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.865726 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.876641 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.876663 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.876682 LLDP, length 82 [|LLDP] 18:54:37.876684 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0560 20a7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.876685 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.876691 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.876701 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.876705 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.876708 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.876710 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.876715 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.876718 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.876722 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.876733 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.876739 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.884900 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.884920 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.884939 LLDP, length 82 [|LLDP] 18:54:37.884940 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0566 6d74 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.884942 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.884948 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.884951 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.884955 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.884960 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.884970 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.884974 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.884977 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.884979 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.884990 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.884996 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.895907 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.895929 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.895947 LLDP, length 82 [|LLDP] 18:54:37.895948 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 056e d3e2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.895950 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.895956 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.895959 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.895963 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.895975 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.895980 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.895990 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.895994 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.895997 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.895999 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.896004 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.906918 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.906939 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.906957 LLDP, length 82 [|LLDP] 18:54:37.906959 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0577 3a42 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.906961 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.906966 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.906971 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.906980 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.906985 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.906988 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.906990 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.906993 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.906997 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.907008 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.907013 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.915176 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.915198 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.915216 LLDP, length 82 [|LLDP] 18:54:37.915217 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 057d 870e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.915219 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.915224 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.915228 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.915232 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.915244 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.915249 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.915258 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.915263 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.915266 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.915268 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.915272 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.926186 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.926208 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.926228 LLDP, length 82 [|LLDP] 18:54:37.926229 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0585 ed75 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.926231 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.926237 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.926241 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.926244 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.926256 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.926262 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.926271 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.926276 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.926278 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.926281 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.926285 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.937195 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.937219 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.937237 LLDP, length 82 [|LLDP] 18:54:37.937239 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 058e 53dc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.937241 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.937247 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.937250 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.937256 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.937265 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.937270 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.937273 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.937275 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.937279 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.937290 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.937295 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.945456 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.945473 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.945492 LLDP, length 82 [|LLDP] 18:54:37.945494 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0594 a0a8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.945496 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.945502 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.945505 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.945509 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.945520 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.945526 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.945535 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.945540 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.945542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.945545 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.945549 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.956461 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.956484 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.956503 LLDP, length 82 [|LLDP] 18:54:37.956504 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 059d 070f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.956506 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.956512 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.956521 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.956525 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.956528 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.956530 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.956535 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.956538 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.956542 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.956554 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.956559 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.964717 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.964739 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.964758 LLDP, length 82 [|LLDP] 18:54:37.964760 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05a3 53dc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.964761 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.964767 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.964771 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.964774 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.964779 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.964788 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.964793 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.964795 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.964798 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.964810 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.964815 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.975730 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.975752 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.975771 LLDP, length 82 [|LLDP] 18:54:37.975773 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05ab ba43 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.975775 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.975781 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.975784 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.975788 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.975799 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.975805 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.975815 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.975819 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.975822 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.975824 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.975828 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.986740 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.986760 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.986779 LLDP, length 82 [|LLDP] 18:54:37.986780 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05b4 20a9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.986782 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.986788 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.986793 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.986802 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.986806 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.986809 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.986811 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.986815 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.986818 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.986830 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.986835 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.994996 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.995017 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.995035 LLDP, length 82 [|LLDP] 18:54:37.995037 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05ba 6d76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.995038 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.995044 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.995047 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.995051 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.995062 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.995068 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.995077 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.995081 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.995100 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.995103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.995109 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.006042 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.006078 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.006107 LLDP, length 82 [|LLDP] 18:54:38.006109 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05c2 d3dc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.006112 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.006122 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.006126 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.006130 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.006142 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.006151 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.006165 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.006171 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.006175 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.006177 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.006182 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.017022 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.017048 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.017071 LLDP, length 82 [|LLDP] 18:54:38.017073 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05cb 3a43 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.017075 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.017081 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.017084 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.017090 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.017101 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.017105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.017108 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.017111 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.017114 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.017126 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.017132 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.025274 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.025297 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.025315 LLDP, length 82 [|LLDP] 18:54:38.025317 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05d1 870f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.025319 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.025324 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.025328 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.025331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.025343 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.025349 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.025359 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.025363 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.025366 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.025369 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.025374 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.036282 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.036303 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.036321 LLDP, length 82 [|LLDP] 18:54:38.036323 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05d9 ed76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.036325 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.036331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.036340 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.036345 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.036348 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.036350 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.036355 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.036358 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.036362 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.036374 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.036380 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.047292 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.047312 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.047329 LLDP, length 82 [|LLDP] 18:54:38.047331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05e2 53dc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.047333 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.047338 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.047342 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.047345 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.047350 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.047360 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.047365 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.047367 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.047370 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.047382 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.047387 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.055552 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.055572 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.055590 LLDP, length 82 [|LLDP] 18:54:38.055592 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05e8 a0a9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.055594 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.055599 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.055603 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.055607 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.055618 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.055624 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.055633 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.055638 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.055641 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.055643 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.055659 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.066558 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.066578 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.066596 LLDP, length 82 [|LLDP] 18:54:38.066598 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05f1 070f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.066600 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.066605 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.066610 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.066620 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.066624 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.066627 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.066629 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.066633 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.066636 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.066648 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.066654 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.074815 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.074836 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.074853 LLDP, length 82 [|LLDP] 18:54:38.074854 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05f7 53dc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.074856 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.074862 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.074865 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.074869 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.074880 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.074886 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.074896 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.074900 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.074903 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.074905 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.074911 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.085828 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.085847 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.085865 LLDP, length 82 [|LLDP] 18:54:38.085866 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05ff ba42 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.085868 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.085873 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.085877 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.085881 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.085893 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.085898 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.085907 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.085912 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.085915 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.085917 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.085921 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.096908 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.096960 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.097012 LLDP, length 82 [|LLDP] 18:54:38.097014 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0608 20a8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.097017 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.097029 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.097033 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.097040 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.097057 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.097064 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.097068 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.097070 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.097074 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.097087 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.097093 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.105190 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.105243 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.105294 LLDP, length 82 [|LLDP] 18:54:38.105296 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 060e 6d75 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.105299 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.105309 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.105313 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.105317 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.105330 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.105338 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.105355 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.105361 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.105365 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.105367 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.105373 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.116163 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.116213 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.116263 LLDP, length 82 [|LLDP] 18:54:38.116265 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0616 d3db 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.116268 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.116275 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.116292 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.116300 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.116304 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.116306 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.116315 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.116318 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.116322 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.116335 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.116342 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.127116 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.127136 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.127154 LLDP, length 82 [|LLDP] 18:54:38.127155 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 061f 3a41 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.127157 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.127162 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.127166 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.127170 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.127175 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.127184 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.127189 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.127191 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.127194 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.127206 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.127211 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.135378 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.135400 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.135418 LLDP, length 82 [|LLDP] 18:54:38.135419 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0625 870e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.135421 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.135427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.135431 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.135435 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.135446 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.135452 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.135461 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.135466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.135469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.135471 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.135476 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.146395 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.146424 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.146449 LLDP, length 82 [|LLDP] 18:54:38.146450 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 062d ed7b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.146453 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.146460 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.146465 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.146476 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.146481 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.146484 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.146487 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.146490 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.146494 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.146506 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.146512 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.154647 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.154673 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.154693 LLDP, length 82 [|LLDP] 18:54:38.154695 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0634 3a41 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.154697 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.154702 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.154706 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.154709 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.154721 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.154727 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.154736 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.154741 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.154744 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.154746 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.154751 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.165657 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.165678 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.165697 LLDP, length 82 [|LLDP] 18:54:38.165698 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 063c a0a7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.165700 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.165706 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.165710 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.165713 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.165725 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.165731 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.165741 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.165745 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.165748 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.165750 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.165755 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.176665 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.176688 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.176708 LLDP, length 82 [|LLDP] 18:54:38.176709 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0645 070d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.176711 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.176717 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.176721 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.176726 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.176735 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.176740 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.176743 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.176745 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.176749 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.176761 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.176766 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.184918 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.184940 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.184958 LLDP, length 82 [|LLDP] 18:54:38.184960 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 064b 53df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.184962 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.184967 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.184971 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.184974 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.184986 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.184991 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.185001 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.185005 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.185008 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.185010 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.185014 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.195930 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.195951 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.195970 LLDP, length 82 [|LLDP] 18:54:38.195971 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0653 ba41 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.195973 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.195979 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.195989 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.195994 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.195996 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.195998 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.196003 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.196006 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.196010 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.196021 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.196027 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.206939 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.206960 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.206978 LLDP, length 82 [|LLDP] 18:54:38.206979 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 065c 20a8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.206981 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.206987 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.206991 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.206995 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.207000 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.207010 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.207014 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.207017 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.207019 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.207031 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.207036 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.215198 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.215219 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.215237 LLDP, length 82 [|LLDP] 18:54:38.215239 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0662 6d75 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.215241 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.215246 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.215250 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.215253 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.215264 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.215270 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.215279 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.215284 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.215287 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.215289 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.215293 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.226232 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.226268 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.226298 LLDP, length 82 [|LLDP] 18:54:38.226300 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 066a d3db 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.226302 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.226310 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.226316 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.226330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.226334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.226338 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.226340 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.226344 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.226347 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.226359 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.226365 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.237229 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.237260 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.237285 LLDP, length 82 [|LLDP] 18:54:38.237286 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0673 3a42 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.237288 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.237295 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.237299 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.237302 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.237314 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.237321 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.237331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.237336 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.237339 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.237342 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.237346 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.245495 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.245524 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.245547 LLDP, length 82 [|LLDP] 18:54:38.245548 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0679 870f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.245550 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.245556 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.245560 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.245563 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.245575 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.245581 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.245591 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.245596 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.245599 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.245601 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.245606 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.256496 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.256526 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.256549 LLDP, length 82 [|LLDP] 18:54:38.256551 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0681 ed75 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.256553 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.256560 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.256563 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.256569 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.256580 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.256588 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.256592 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.256594 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.256598 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.256611 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.256616 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.264761 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.264783 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.264807 LLDP, length 82 [|LLDP] 18:54:38.264809 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0688 3a49 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.264811 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.264817 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.264821 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.264824 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.264836 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.264843 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.264854 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.264859 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.264863 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.264865 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.264869 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.275765 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.275792 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.275816 LLDP, length 82 [|LLDP] 18:54:38.275818 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0690 a0a9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.275820 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.275826 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.275851 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.275857 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.275860 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.275862 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.275868 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.275871 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.275875 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.275887 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.275892 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.286777 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.286807 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.286833 LLDP, length 82 [|LLDP] 18:54:38.286835 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0699 070f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.286837 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.286844 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.286848 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.286852 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.286858 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.286869 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.286874 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.286877 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.286880 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.286892 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.286898 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.295028 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.295054 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.295076 LLDP, length 82 [|LLDP] 18:54:38.295078 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 069f 53dc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.295080 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.295086 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.295090 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.295098 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.295110 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.295117 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.295127 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.295132 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.295135 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.295137 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.295142 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.306041 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.306075 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.306104 LLDP, length 82 [|LLDP] 18:54:38.306106 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06a7 ba42 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.306108 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.306115 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.306121 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.306134 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.306139 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.306143 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.306145 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.306149 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.306153 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.306170 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.306176 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.317049 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.317084 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.317109 LLDP, length 82 [|LLDP] 18:54:38.317112 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06b0 20a9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.317113 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.317121 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.317124 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.317128 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.317139 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.317145 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.317157 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.317166 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.317169 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.317172 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.317177 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.325306 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.325333 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.325357 LLDP, length 82 [|LLDP] 18:54:38.325359 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06b6 6d76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.325361 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.325367 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.325371 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.325375 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.325388 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.325394 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.325404 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.325409 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.325412 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.325414 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.325419 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.336315 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.336341 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.336363 LLDP, length 82 [|LLDP] 18:54:38.336365 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06be d3dc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.336367 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.336374 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.336378 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.336383 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.336393 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.336398 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.336401 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.336403 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.336407 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.336419 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.336425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.344566 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.344591 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.344612 LLDP, length 82 [|LLDP] 18:54:38.344613 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06c5 20a8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.344615 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.344621 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.344625 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.344628 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.344640 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.344646 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.344657 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.344662 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.344664 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.344666 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.344671 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.355578 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.355601 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.355621 LLDP, length 82 [|LLDP] 18:54:38.355623 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06cd 870f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.355625 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.355631 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.355641 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.355657 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.355660 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.355662 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.355669 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.355673 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.355676 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.355690 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.355696 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.366585 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.366609 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.366629 LLDP, length 82 [|LLDP] 18:54:38.366631 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06d5 ed76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.366634 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.366639 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.366643 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.366646 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.366652 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.366663 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.366667 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.366670 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.366672 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.366683 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.366689 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.374844 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.374867 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.374885 LLDP, length 82 [|LLDP] 18:54:38.374887 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06dc 3a42 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.374889 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.374895 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.374898 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.374902 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.374914 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.374919 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.374929 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.374934 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.374936 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.374939 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.374943 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.385853 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.385877 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.385898 LLDP, length 82 [|LLDP] 18:54:38.385900 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06e4 a0a8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.385901 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.385907 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.385912 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.385922 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.385926 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.385929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.385932 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.385935 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.385939 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.385950 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.385955 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.396867 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.396884 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.396903 LLDP, length 82 [|LLDP] 18:54:38.396904 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06ed 0716 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.396906 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.396912 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.396916 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.396919 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.396930 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.396936 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.396946 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.396950 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.396953 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.396955 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.396960 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.405120 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.405142 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.405162 LLDP, length 82 [|LLDP] 18:54:38.405163 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06f3 53dc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.405166 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.405171 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.405175 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.405179 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.405190 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.405196 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.405205 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.405210 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.405213 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.405215 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.405219 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.416129 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.416151 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.416168 LLDP, length 82 [|LLDP] 18:54:38.416170 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06fb ba41 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.416172 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.416178 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.416181 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.416187 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.416197 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.416201 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.416204 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.416206 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.416210 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.416222 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.416227 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.427138 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.427160 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.427179 LLDP, length 82 [|LLDP] 18:54:38.427180 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0704 20a8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.427182 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.427187 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.427191 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.427195 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.427208 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.427213 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.427223 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.427227 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.427230 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.427232 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.427236 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.435400 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.435423 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.435458 LLDP, length 82 [|LLDP] 18:54:38.435460 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 070a 6d78 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.435462 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.435469 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.435479 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.435484 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.435487 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.435489 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.435494 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.435497 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.435501 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.435514 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.435519 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.446409 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.446432 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.446453 LLDP, length 82 [|LLDP] 18:54:38.446455 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0712 d3db 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.446457 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.446463 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.446466 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.446469 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.446475 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.446486 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.446491 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.446493 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.446496 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.446507 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.446513 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.454670 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.454687 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.454707 LLDP, length 82 [|LLDP] 18:54:38.454709 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0719 20a8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.454711 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.454717 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.454720 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.454724 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.454735 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.454741 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.454751 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.454755 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.454758 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.454760 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.454765 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.465677 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.465700 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.465720 LLDP, length 82 [|LLDP] 18:54:38.465722 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0721 870e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.465723 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.465729 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.465734 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.465744 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.465749 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.465751 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.465753 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.465757 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.465760 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.465772 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.465778 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.476687 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.476710 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.476730 LLDP, length 82 [|LLDP] 18:54:38.476732 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0729 ed75 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.476733 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.476739 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.476743 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.476746 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.476758 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.476764 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.476774 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.476779 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.476782 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.476784 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.476789 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.484940 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.484964 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.484983 LLDP, length 82 [|LLDP] 18:54:38.484985 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0730 3a41 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.484987 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.484992 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.484996 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.484999 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.485011 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.485017 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.485027 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.485031 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.485034 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.485036 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.485040 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.495953 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.495976 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.495996 LLDP, length 82 [|LLDP] 18:54:38.495998 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0738 a0a8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.496000 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.496005 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.496010 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.496015 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.496025 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.496029 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.496032 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.496034 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.496038 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.496050 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.496055 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.506963 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.506979 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.506999 LLDP, length 82 [|LLDP] 18:54:38.507000 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0741 070e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.507002 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.507008 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.507011 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.507015 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.507027 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.507033 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.507043 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.507047 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.507050 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.507052 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.507057 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.515218 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.515239 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.515257 LLDP, length 82 [|LLDP] 18:54:38.515259 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0747 53e3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.515261 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.515267 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.515277 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.515281 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.515284 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.515286 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.515292 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.515295 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.515299 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.515310 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.515316 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.526229 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.526251 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.526270 LLDP, length 82 [|LLDP] 18:54:38.526272 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 074f ba43 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.526274 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.526279 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.526283 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.526286 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.526291 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.526301 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.526305 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.526308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.526310 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.526322 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.526327 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.537240 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.537263 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.537282 LLDP, length 82 [|LLDP] 18:54:38.537283 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0758 20a8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.537285 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.537291 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.537294 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.537298 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.537309 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.537315 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.537324 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.537329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.537332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.537334 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.537338 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.545494 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.545516 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.545535 LLDP, length 82 [|LLDP] 18:54:38.545536 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 075e 6d76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.545538 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.545544 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.545549 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.545559 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.545563 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.545566 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.545568 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.545572 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.545575 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.545587 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.545592 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.556506 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.556529 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.556549 LLDP, length 82 [|LLDP] 18:54:38.556551 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0766 d3dc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.556553 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.556559 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.556563 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.556566 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.556577 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.556583 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.556593 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.556597 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.556600 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.556602 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.556607 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.564768 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.564785 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.564804 LLDP, length 82 [|LLDP] 18:54:38.564806 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 076d 20a8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.564808 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.564814 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.564818 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.564821 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.564832 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.564838 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.564848 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.564852 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.564855 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.564857 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.564861 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.575775 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.575798 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.575819 LLDP, length 82 [|LLDP] 18:54:38.575821 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0775 870f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.575823 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.575829 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.575832 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.575838 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.575848 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.575852 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.575854 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.575857 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.575861 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.575873 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.575879 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.586783 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.586806 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.586825 LLDP, length 82 [|LLDP] 18:54:38.586827 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 077d ed76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.586829 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.586834 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.586838 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.586842 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.586853 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.586859 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.586869 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.586873 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.586876 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.586877 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.586882 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.595040 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.595063 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.595082 LLDP, length 82 [|LLDP] 18:54:38.595084 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0784 3a42 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.595086 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.595091 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.595101 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.595106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.595108 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.595110 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.595115 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.595119 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.595123 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.595135 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.595140 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.606049 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.606072 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.606091 LLDP, length 82 [|LLDP] 18:54:38.606093 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 078c a0a8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.606095 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.606101 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.606104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.606108 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.606113 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.606123 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.606127 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.606130 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.606132 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.606144 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.606149 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.617064 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.617081 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.617101 LLDP, length 82 [|LLDP] 18:54:38.617103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0795 070f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.617105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.617111 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.617115 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.617119 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.617131 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.617136 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.617146 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.617151 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.617154 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.617156 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.617160 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.625318 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.625340 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.625359 LLDP, length 82 [|LLDP] 18:54:38.625361 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 079b 53db 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.625363 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.625368 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.625373 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.625383 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.625388 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.625391 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.625393 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.625397 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.625400 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.625412 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.625417 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.636329 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.636350 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.636369 LLDP, length 82 [|LLDP] 18:54:38.636371 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07a3 ba41 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.636373 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.636379 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.636383 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.636386 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.636397 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.636403 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.636412 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.636417 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.636420 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.636422 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.636426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.644587 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.644609 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.644628 LLDP, length 82 [|LLDP] 18:54:38.644630 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07aa 070e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.644631 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.644637 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.644641 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.644645 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.644657 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.644663 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.644672 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.644677 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.644679 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.644681 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.644686 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.655598 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.655624 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.655655 LLDP, length 82 [|LLDP] 18:54:38.655657 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07b2 6d75 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.655659 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.655667 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.655671 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.655677 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.655687 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.655692 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.655695 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.655697 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.655701 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.655714 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.655719 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.666611 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.666636 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.666657 LLDP, length 82 [|LLDP] 18:54:38.666659 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07ba d3db 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.666661 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.666667 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.666670 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.666673 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.666685 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.666691 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.666701 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.666705 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.666708 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.666710 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.666714 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.674868 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.674890 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.674909 LLDP, length 82 [|LLDP] 18:54:38.674911 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07c1 20a8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.674913 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.674919 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.674929 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.674933 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.674936 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.674938 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.674943 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.674946 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.674950 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.674962 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.674967 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.685882 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.685902 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.685925 LLDP, length 82 [|LLDP] 18:54:38.685926 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07c9 8710 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.685928 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.685934 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.685938 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.685942 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.685948 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.685958 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.685962 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.685965 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.685967 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.685978 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.685983 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.696886 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.696911 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.696933 LLDP, length 82 [|LLDP] 18:54:38.696935 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07d1 ed74 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.696937 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.696943 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.696947 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.696950 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.696962 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.696968 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.696979 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.696983 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.696986 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.696988 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.696992 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.705141 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.705164 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.705184 LLDP, length 82 [|LLDP] 18:54:38.705186 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07d8 3a41 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.705188 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.705194 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.705199 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.705209 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.705213 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.705217 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.705219 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.705222 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.705226 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.705237 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.705243 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.716149 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.716171 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.716190 LLDP, length 82 [|LLDP] 18:54:38.716192 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07e0 a0a7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.716194 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.716199 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.716203 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.716206 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.716218 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.716224 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.716234 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.716238 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.716241 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.716243 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.716248 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.727158 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.727180 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.727199 LLDP, length 82 [|LLDP] 18:54:38.727201 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07e9 070e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.727203 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.727209 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.727213 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.727217 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.727228 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.727234 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.727244 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.727248 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.727251 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.727253 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.727257 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.735418 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.735433 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.735452 LLDP, length 82 [|LLDP] 18:54:38.735454 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07ef 53db 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.735456 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.735461 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.735465 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.735471 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.735480 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.735485 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.735487 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.735489 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.735493 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.735505 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.735510 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.746429 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.746451 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.746471 LLDP, length 82 [|LLDP] 18:54:38.746473 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07f7 ba41 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.746475 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.746480 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.746484 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.746488 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.746501 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.746507 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.746516 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.746521 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.746524 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.746526 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.746530 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.754686 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.754709 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.754728 LLDP, length 82 [|LLDP] 18:54:38.754730 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07fe 070e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.754732 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.754737 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.754747 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.754751 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.754754 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.754756 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.754761 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.754765 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.754769 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.754781 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.754787 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.765725 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.765757 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.765784 LLDP, length 82 [|LLDP] 18:54:38.765786 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0806 6d7c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.765788 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.765796 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.765800 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.765803 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.765810 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.765821 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.765826 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.765829 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.765831 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.765843 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.765849 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.776718 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.776747 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.776773 LLDP, length 82 [|LLDP] 18:54:38.776775 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 080e d3db 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.776778 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.776785 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.776789 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.776792 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.776805 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.776811 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.776822 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.776827 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.776830 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.776832 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.776837 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.784970 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.784999 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.785023 LLDP, length 82 [|LLDP] 18:54:38.785025 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0815 20a9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.785027 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.785033 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.785039 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.785050 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.785055 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.785058 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.785061 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.785065 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.785068 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.785090 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.785096 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.795989 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.796012 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.796038 LLDP, length 82 [|LLDP] 18:54:38.796040 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 081d 870f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.796042 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.796049 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.796053 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.796056 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.796068 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.796075 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.796087 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.796092 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.796095 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.796098 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.796103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.806994 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.807025 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.807050 LLDP, length 82 [|LLDP] 18:54:38.807052 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0825 ed76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.807054 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.807061 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.807065 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.807069 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.807081 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.807087 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.807100 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.807104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.807107 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.807109 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.807114 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.815248 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.815277 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.815302 LLDP, length 82 [|LLDP] 18:54:38.815303 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 082c 3a42 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.815305 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.815312 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.815315 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.815321 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.815332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.815337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.815339 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.815342 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.815345 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.815358 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.815363 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.826255 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.826281 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.826304 LLDP, length 82 [|LLDP] 18:54:38.826306 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0834 a0a9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.826308 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.826315 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.826319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.826323 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.826335 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.826341 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.826352 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.826356 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.826359 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.826361 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.826375 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.837266 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.837290 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.837313 LLDP, length 82 [|LLDP] 18:54:38.837315 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 083d 0710 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.837317 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.837324 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.837334 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.837339 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.837342 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.837344 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.837348 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.837352 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.837356 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.837368 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.837373 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.845524 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.845548 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.845568 LLDP, length 82 [|LLDP] 18:54:38.845570 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0843 53dc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.845572 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.845578 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.845581 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.845585 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.845590 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.845606 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.845611 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.845613 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.845615 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.845627 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.845633 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.856537 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.856564 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.856587 LLDP, length 82 [|LLDP] 18:54:38.856589 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 084b ba43 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.856591 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.856597 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.856601 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.856604 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.856620 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.856627 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.856638 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.856643 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.856646 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.856648 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.856669 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.864850 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.864894 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.864923 LLDP, length 82 [|LLDP] 18:54:38.864925 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0852 070f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.864928 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.864939 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.864945 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.864961 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.864967 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.864971 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.864973 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.864977 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.864980 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.864993 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.864999 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.875803 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.875825 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.875847 LLDP, length 82 [|LLDP] 18:54:38.875850 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 085a 6d76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.875852 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.875858 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.875861 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.875865 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.875877 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.875883 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.875893 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.875898 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.875901 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.875903 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.875908 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.886807 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.886829 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.886849 LLDP, length 82 [|LLDP] 18:54:38.886851 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0862 d3dc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.886852 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.886859 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.886863 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.886866 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.886878 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.886884 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.886894 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.886898 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.886902 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.886904 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.886908 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.895059 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.895079 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.895095 LLDP, length 82 [|LLDP] 18:54:38.895097 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0869 20a9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.895099 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.895104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.895108 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.895112 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.895121 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.895125 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.895128 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.895130 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.895134 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.895146 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.895152 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.906068 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.906088 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.906108 LLDP, length 82 [|LLDP] 18:54:38.906110 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0871 870f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.906112 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.906117 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.906121 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.906125 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.906136 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.906143 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.906151 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.906156 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.906159 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.906161 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.906166 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.917080 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.917099 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.917115 LLDP, length 82 [|LLDP] 18:54:38.917117 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0879 ed75 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.917119 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.917124 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.917132 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.917137 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.917140 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.917142 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.917146 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.917150 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.917153 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.917166 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.917171 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.925334 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.925352 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.925369 LLDP, length 82 [|LLDP] 18:54:38.925370 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0880 3a42 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.925372 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.925377 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.925380 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.925384 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.925388 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.925397 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.925402 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.925404 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.925406 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.925418 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.925423 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.936344 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.936362 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.936378 LLDP, length 82 [|LLDP] 18:54:38.936380 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0888 a0a8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.936382 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.936387 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.936390 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.936394 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.936406 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.936411 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.936420 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.936424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.936427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.936429 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.936433 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.944602 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.944619 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.944635 LLDP, length 82 [|LLDP] 18:54:38.944636 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 088e ed75 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.944639 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.944644 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.944649 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.944657 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.944662 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.944665 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.944667 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.944670 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.944674 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.944685 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.944690 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.955613 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.955632 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.955656 LLDP, length 82 [|LLDP] 18:54:38.955659 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0897 53db 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.955660 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.955666 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.955670 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.955674 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.955687 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.955693 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.955702 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.955706 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.955709 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.955711 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.955716 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.966623 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.966643 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.966660 LLDP, length 82 [|LLDP] 18:54:38.966661 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 089f ba41 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.966663 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.966668 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.966672 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.966676 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.966688 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.966693 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.966703 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.966707 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.966710 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.966712 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.966716 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.974880 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.974899 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.974917 LLDP, length 82 [|LLDP] 18:54:38.974918 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08a6 070e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.974921 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.974926 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.974929 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.974934 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.974943 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.974948 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.974951 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.974953 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.974957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.974968 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.974974 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.985892 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.985910 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.985926 LLDP, length 82 [|LLDP] 18:54:38.985927 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08ae 6d74 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.985929 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.985935 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.985938 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.985941 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.985953 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.985959 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.985968 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.985972 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.985975 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.985977 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.985981 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.996900 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.996920 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.996937 LLDP, length 82 [|LLDP] 18:54:38.996938 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08b6 d3db 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.996940 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.996946 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.996955 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.996960 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.996962 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.996964 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.996968 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.996972 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.996976 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.996988 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.996993 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.005156 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.005175 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.005191 LLDP, length 82 [|LLDP] 18:54:39.005192 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08bd 20a7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.005194 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.005199 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.005203 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.005206 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.005211 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.005221 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.005225 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.005228 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.005230 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.005242 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.005247 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.016169 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.016187 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.016203 LLDP, length 82 [|LLDP] 18:54:39.016205 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08c5 8715 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.016207 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.016212 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.016216 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.016219 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.016231 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.016237 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.016245 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.016249 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.016252 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.016254 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.016258 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.027177 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.027195 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.027211 LLDP, length 82 [|LLDP] 18:54:39.027213 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08cd ed74 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.027215 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.027220 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.027224 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.027233 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.027237 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.027240 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.027242 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.027245 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.027249 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.027260 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.027266 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.035434 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.035451 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.035466 LLDP, length 82 [|LLDP] 18:54:39.035468 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08d4 3a41 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.035470 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.035475 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.035479 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.035484 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.035495 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.035501 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.035510 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.035514 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.035517 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.035519 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.035523 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.046445 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.046465 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.046482 LLDP, length 82 [|LLDP] 18:54:39.046484 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08dc a0a8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.046486 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.046491 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.046494 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.046498 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.046510 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.046516 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.046525 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.046529 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.046532 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.046534 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.046538 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.054699 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.054718 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.054733 LLDP, length 82 [|LLDP] 18:54:39.054735 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08e2 ed74 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.054736 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.054741 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.054745 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.054750 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.054759 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.054763 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.054766 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.054768 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.054772 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.054784 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.054789 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.065714 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.065732 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.065748 LLDP, length 82 [|LLDP] 18:54:39.065750 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08eb 53db 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.065752 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.065757 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.065760 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.065764 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.065775 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.065781 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.065789 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.065794 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.065797 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.065799 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.065804 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.076724 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.076743 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.076760 LLDP, length 82 [|LLDP] 18:54:39.076762 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08f3 ba41 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.076764 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.076770 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.076779 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.076783 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.076786 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.076788 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.076792 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.076796 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.076800 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.076812 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.076817 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.084980 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.084999 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.085015 LLDP, length 82 [|LLDP] 18:54:39.085017 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08fa 070f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.085019 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.085024 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.085027 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.085031 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.085036 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.085045 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.085049 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.085053 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.085055 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.085066 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.085071 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.095991 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.096010 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.096028 LLDP, length 82 [|LLDP] 18:54:39.096030 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0902 6d76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.096032 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.096037 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.096041 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.096044 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.096056 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.096061 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.096070 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.096075 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.096077 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.096080 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.096084 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.107000 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.107019 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.107035 LLDP, length 82 [|LLDP] 18:54:39.107036 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 090a d3dc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.107038 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.107044 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.107049 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.107057 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.107061 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.107064 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.107066 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.107070 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.107074 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.107085 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.107090 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.115257 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.115276 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.115292 LLDP, length 82 [|LLDP] 18:54:39.115294 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0911 20cb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.115296 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.115301 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.115305 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.115309 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.115321 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.115326 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.115335 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.115339 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.115342 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.115344 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.115348 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.126269 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.126287 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.126303 LLDP, length 82 [|LLDP] 18:54:39.126305 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0919 8730 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.126306 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.126311 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.126315 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.126319 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.126331 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.126336 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.126345 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.126350 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.126353 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.126355 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.126359 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.134525 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.134542 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.134558 LLDP, length 82 [|LLDP] 18:54:39.134560 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 091f d3fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.134562 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.134567 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.134571 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.134576 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.134585 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.134589 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.134592 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.134594 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.134598 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.134609 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.134615 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.145534 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.145552 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.145568 LLDP, length 82 [|LLDP] 18:54:39.145569 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0928 3a65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.145571 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.145576 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.145580 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.145584 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.145595 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.145601 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.145609 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.145614 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.145617 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.145619 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.145623 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.156546 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.156564 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.156579 LLDP, length 82 [|LLDP] 18:54:39.156581 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0930 a0ca 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.156583 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.156588 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.156597 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.156602 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.156605 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.156607 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.156611 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.156615 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.156619 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.156630 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.156636 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.164802 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.164820 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.164835 LLDP, length 82 [|LLDP] 18:54:39.164837 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0936 ed98 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.164839 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.164844 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.164848 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.164851 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.164856 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.164865 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.164869 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.164872 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.164874 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.164886 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.164892 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.175812 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.175831 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.175847 LLDP, length 82 [|LLDP] 18:54:39.175849 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 093f 53fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.175851 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.175857 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.175860 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.175864 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.175876 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.175882 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.175890 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.175895 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.175898 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.175900 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.175905 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.186824 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.186844 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.186860 LLDP, length 82 [|LLDP] 18:54:39.186861 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0947 ba64 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.186864 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.186869 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.186874 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.186884 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.186888 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.186891 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.186894 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.186897 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.186901 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.186913 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.186919 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.195080 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.195098 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.195113 LLDP, length 82 [|LLDP] 18:54:39.195115 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 094e 0730 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.195117 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.195123 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.195126 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.195130 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.195141 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.195147 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.195156 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.195161 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.195163 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.195166 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.195170 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.206090 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.206109 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.206128 LLDP, length 82 [|LLDP] 18:54:39.206130 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0956 6d97 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.206131 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.206137 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.206140 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.206144 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.206156 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.206162 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.206170 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.206175 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.206178 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.206180 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.206184 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.217101 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.217121 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.217138 LLDP, length 82 [|LLDP] 18:54:39.217140 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 095e d3fd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.217142 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.217147 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.217150 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.217156 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.217164 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.217169 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.217172 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.217174 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.217178 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.217189 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.217195 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.225357 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.225375 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.225391 LLDP, length 82 [|LLDP] 18:54:39.225393 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0965 20ca 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.225395 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.225400 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.225403 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.225407 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.225418 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.225424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.225432 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.225437 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.225440 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.225442 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.225446 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.236367 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.236384 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.236400 LLDP, length 82 [|LLDP] 18:54:39.236401 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 096d 8730 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.236403 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.236408 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.236417 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.236421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.236425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.236427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.236431 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.236435 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.236438 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.236450 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.236455 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.244627 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.244644 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.244659 LLDP, length 82 [|LLDP] 18:54:39.244661 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0973 d3fd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.244663 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.244667 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.244671 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.244675 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.244680 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.244689 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.244694 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.244696 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.244698 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.244710 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.244715 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.255633 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.255659 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.255677 LLDP, length 82 [|LLDP] 18:54:39.255678 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 097c 3a64 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.255680 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.255686 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.255690 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.255693 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.255705 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.255711 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.255719 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.255723 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.255726 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.255729 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.255733 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.266646 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.266666 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.266683 LLDP, length 82 [|LLDP] 18:54:39.266684 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0984 a0c9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.266686 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.266691 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.266696 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.266705 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.266709 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.266712 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.266715 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.266719 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.266722 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.266734 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.266740 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.274902 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.274919 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.274935 LLDP, length 82 [|LLDP] 18:54:39.274937 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 098a ed96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.274938 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.274944 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.274948 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.274951 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.274963 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.274968 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.274977 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.274982 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.274984 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.274986 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.274991 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.285912 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.285931 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.285948 LLDP, length 82 [|LLDP] 18:54:39.285949 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0993 53fd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.285951 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.285956 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.285960 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.285963 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.285974 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.285980 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.286002 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.286007 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.286010 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.286012 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.286017 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.296928 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.296943 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.296962 LLDP, length 82 [|LLDP] 18:54:39.296965 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 099b ba63 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.296967 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.296973 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.296977 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.296982 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.296992 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.296996 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.296999 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.297002 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.297006 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.297018 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.297024 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.305210 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.305239 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.305267 LLDP, length 82 [|LLDP] 18:54:39.305269 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09a2 0737 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.305271 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.305278 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.305282 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.305286 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.305298 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.305304 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.305316 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.305321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.305325 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.305327 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.305331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.316202 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.316233 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.316257 LLDP, length 82 [|LLDP] 18:54:39.316259 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09aa 6d97 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.316261 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.316268 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.316279 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.316284 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.316288 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.316290 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.316296 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.316299 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.316303 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.316315 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.316321 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.327216 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.327247 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.327274 LLDP, length 82 [|LLDP] 18:54:39.327276 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09b2 d3fd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.327278 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.327285 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.327288 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.327291 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.327298 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.327309 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.327314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.327318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.327320 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.327332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.327338 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.335471 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.335496 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.335518 LLDP, length 82 [|LLDP] 18:54:39.335520 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09b9 20c9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.335522 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.335532 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.335536 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.335540 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.335552 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.335558 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.335569 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.335574 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.335577 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.335579 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.335584 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.346478 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.346504 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.346527 LLDP, length 82 [|LLDP] 18:54:39.346528 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09c1 8730 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.346530 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.346536 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.346541 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.346552 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.346556 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.346559 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.346561 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.346565 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.346573 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.346585 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.346591 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.354736 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.354754 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.354774 LLDP, length 82 [|LLDP] 18:54:39.354775 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09c7 d3fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.354778 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.354784 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.354792 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.354796 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.354809 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.354815 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.354825 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.354829 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.354833 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.354835 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.354840 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.365748 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.365771 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.365793 LLDP, length 82 [|LLDP] 18:54:39.365795 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09d0 3a64 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.365797 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.365802 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.365806 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.365814 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.365826 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.365832 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.365842 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.365847 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.365849 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.365851 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.365856 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.376760 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.376785 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.376808 LLDP, length 82 [|LLDP] 18:54:39.376810 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09d8 a0ca 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.376812 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.376819 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.376822 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.376828 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.376838 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.376842 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.376846 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.376848 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.376851 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.376863 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.376868 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.385011 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.385037 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.385060 LLDP, length 82 [|LLDP] 18:54:39.385062 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09de ed97 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.385064 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.385070 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.385074 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.385077 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.385088 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.385094 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.385105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.385110 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.385113 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.385115 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.385120 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.396033 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.396065 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.396091 LLDP, length 82 [|LLDP] 18:54:39.396093 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09e7 53fd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.396095 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.396102 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.396114 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.396120 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.396123 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.396125 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.396130 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.396134 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.396137 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.396150 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.396155 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.407035 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.407056 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.407080 LLDP, length 82 [|LLDP] 18:54:39.407081 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09ef ba64 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.407084 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.407089 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.407093 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.407096 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.407102 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.407113 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.407117 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.407120 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.407123 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.407134 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.407140 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.415285 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.415309 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.415329 LLDP, length 82 [|LLDP] 18:54:39.415331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09f6 0731 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.415333 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.415339 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.415343 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.415347 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.415359 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.415365 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.415374 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.415379 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.415382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.415384 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.415388 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.426295 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.426319 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.426340 LLDP, length 82 [|LLDP] 18:54:39.426341 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09fe 6d97 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.426343 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.426349 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.426354 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.426364 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.426370 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.426372 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.426374 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.426378 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.426382 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.426394 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.426399 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.434553 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.434575 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.434595 LLDP, length 82 [|LLDP] 18:54:39.434596 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a04 ba64 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.434598 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.434604 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.434608 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.434612 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.434623 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.434629 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.434638 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.434643 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.434646 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.434648 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.434654 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.445561 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.445582 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.445602 LLDP, length 82 [|LLDP] 18:54:39.445603 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a0d 20ca 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.445605 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.445611 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.445614 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.445618 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.445630 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.445636 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.445645 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.445649 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.445652 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.445654 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.445659 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.456573 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.456595 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.456614 LLDP, length 82 [|LLDP] 18:54:39.456616 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a15 8730 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.456617 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.456623 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.456626 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.456631 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.456641 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.456646 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.456649 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.456650 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.456654 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.456666 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.456671 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.464832 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.464848 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.464867 LLDP, length 82 [|LLDP] 18:54:39.464869 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a1b d3fd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.464871 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.464876 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.464880 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.464883 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.464895 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.464901 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.464910 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.464915 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.464918 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.464920 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.464924 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.475842 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.475858 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.475876 LLDP, length 82 [|LLDP] 18:54:39.475878 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a24 3a64 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.475880 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.475886 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.475895 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.475900 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.475903 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.475905 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.475909 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.475913 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.475917 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.475928 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.475933 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.486849 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.486864 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.486882 LLDP, length 82 [|LLDP] 18:54:39.486884 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a2c a0ca 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.486886 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.486891 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.486895 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.486898 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.486903 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.486913 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.486917 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.486920 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.486922 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.486934 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.486939 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.495109 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.495132 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.495152 LLDP, length 82 [|LLDP] 18:54:39.495154 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a32 ed96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.495156 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.495162 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.495166 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.495169 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.495181 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.495187 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.495197 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.495202 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.495205 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.495207 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.495212 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.506120 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.506143 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.506164 LLDP, length 82 [|LLDP] 18:54:39.506166 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a3b 53fd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.506167 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.506173 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.506178 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.506189 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.506193 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.506196 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.506198 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.506202 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.506206 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.506218 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.506223 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.517128 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.517152 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.517171 LLDP, length 82 [|LLDP] 18:54:39.517173 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a43 ba63 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.517175 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.517181 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.517184 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.517188 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.517200 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.517206 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.517216 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.517221 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.517224 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.517226 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.517231 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.525388 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.525405 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.525425 LLDP, length 82 [|LLDP] 18:54:39.525427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a4a 072f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.525429 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.525435 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.525438 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.525442 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.525453 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.525459 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.525469 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.525473 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.525476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.525478 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.525483 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.536394 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.536416 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.536435 LLDP, length 82 [|LLDP] 18:54:39.536437 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a52 6d96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.536439 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.536445 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.536448 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.536454 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.536463 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.536468 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.536471 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.536473 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.536477 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.536488 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.536494 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.544650 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.544673 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.544692 LLDP, length 82 [|LLDP] 18:54:39.544694 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a58 ba63 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.544696 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.544701 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.544705 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.544708 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.544719 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.544725 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.544735 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.544739 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.544742 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.544744 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.544748 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.555667 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.555688 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.555707 LLDP, length 82 [|LLDP] 18:54:39.555709 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a61 20d0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.555710 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.555716 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.555727 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.555731 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.555735 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.555737 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.555741 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.555744 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.555748 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.555759 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.555765 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.566668 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.566691 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.566710 LLDP, length 82 [|LLDP] 18:54:39.566712 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a69 8730 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.566714 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.566720 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.566723 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.566727 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.566732 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.566742 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.566746 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.566750 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.566752 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.566763 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.566769 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.574931 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.574952 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.574972 LLDP, length 82 [|LLDP] 18:54:39.574973 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a6f d3fd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.574975 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.574981 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.574984 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.574988 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.575000 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.575005 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.575015 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.575019 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.575022 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.575024 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.575029 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.585939 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.585960 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.585979 LLDP, length 82 [|LLDP] 18:54:39.585980 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a78 3a63 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.585982 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.585988 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.585993 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.586003 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.586008 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.586011 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.586013 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.586017 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.586021 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.586032 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.586038 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.596954 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.596981 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.597004 LLDP, length 82 [|LLDP] 18:54:39.597006 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a80 a0ca 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.597008 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.597014 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.597018 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.597022 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.597034 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.597040 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.597050 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.597055 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.597057 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.597059 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.597064 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.605208 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.605232 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.605253 LLDP, length 82 [|LLDP] 18:54:39.605255 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a86 ed97 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.605257 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.605263 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.605266 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.605270 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.605282 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.605287 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.605297 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.605302 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.605306 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.605307 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.605312 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.616220 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.616246 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.616266 LLDP, length 82 [|LLDP] 18:54:39.616268 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a8f 53fd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.616270 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.616276 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.616280 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.616286 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.616296 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.616300 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.616303 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.616305 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.616309 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.616320 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.616326 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.624476 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.624500 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.624522 LLDP, length 82 [|LLDP] 18:54:39.624523 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a95 a0ca 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.624526 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.624531 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.624535 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.624539 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.624551 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.624556 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.624566 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.624571 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.624574 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.624576 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.624580 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.635489 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.635513 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.635536 LLDP, length 82 [|LLDP] 18:54:39.635538 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a9e 0731 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.635540 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.635546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.635557 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.635562 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.635565 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.635567 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.635573 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.635576 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.635580 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.635592 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.635598 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.646513 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.646540 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.646568 LLDP, length 82 [|LLDP] 18:54:39.646570 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0aa6 6d97 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.646572 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.646580 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.646584 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.646587 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.646593 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.646605 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.646610 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.646614 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.646616 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.646628 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.646634 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.654763 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.654791 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.654814 LLDP, length 82 [|LLDP] 18:54:39.654816 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0aac ba64 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.654818 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.654824 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.654828 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.654832 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.654844 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.654850 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.654862 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.654867 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.654871 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.654873 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.654877 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.665765 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.665789 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.665811 LLDP, length 82 [|LLDP] 18:54:39.665813 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ab5 20ca 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.665815 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.665820 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.665826 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.665836 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.665840 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.665843 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.665845 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.665849 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.665853 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.665864 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.665869 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.676774 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.676800 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.676822 LLDP, length 82 [|LLDP] 18:54:39.676824 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0abd 8730 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.676826 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.676831 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.676835 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.676839 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.676851 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.676857 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.676867 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.676872 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.676875 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.676877 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.676882 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.685029 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.685054 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.685075 LLDP, length 82 [|LLDP] 18:54:39.685077 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ac3 d3fd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.685079 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.685085 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.685089 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.685092 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.685103 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.685109 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.685119 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.685123 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.685126 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.685128 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.685133 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.696045 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.696063 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.696084 LLDP, length 82 [|LLDP] 18:54:39.696086 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0acc 3a64 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.696087 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.696093 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.696097 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.696112 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.696124 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.696129 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.696132 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.696134 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.696138 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.696151 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.696156 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.707054 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.707077 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.707098 LLDP, length 82 [|LLDP] 18:54:39.707100 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ad4 a0ca 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.707102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.707108 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.707112 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.707115 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.707127 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.707133 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.707143 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.707147 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.707151 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.707153 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.707158 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.715308 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.715332 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.715355 LLDP, length 82 [|LLDP] 18:54:39.715357 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ada ed96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.715359 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.715365 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.715376 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.715381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.715384 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.715386 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.715391 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.715395 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.715399 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.715410 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.715416 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.726322 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.726365 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.726394 LLDP, length 82 [|LLDP] 18:54:39.726397 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ae3 5403 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.726399 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.726407 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.726411 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.726415 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.726420 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.726432 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.726436 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.726439 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.726441 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.726454 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.726459 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.734598 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.734633 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.734658 LLDP, length 82 [|LLDP] 18:54:39.734660 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ae9 a0c9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.734662 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.734670 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.734674 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.734678 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.734690 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.734697 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.734711 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.734716 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.734720 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.734721 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.734727 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.745593 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.745619 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.745649 LLDP, length 82 [|LLDP] 18:54:39.745651 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0af2 072f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.745653 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.745659 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.745664 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.745675 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.745679 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.745682 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.745685 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.745688 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.745692 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.745703 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.745709 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.756614 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.756636 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.756661 LLDP, length 82 [|LLDP] 18:54:39.756663 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0afa 6d96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.756665 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.756672 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.756676 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.756679 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.756692 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.756698 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.756709 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.756714 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.756717 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.756719 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.756724 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.764855 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.764880 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.764901 LLDP, length 82 [|LLDP] 18:54:39.764903 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b00 ba63 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.764906 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.764912 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.764915 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.764919 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.764931 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.764936 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.764946 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.764951 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.764954 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.764956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.764961 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.775860 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.775883 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.775902 LLDP, length 82 [|LLDP] 18:54:39.775904 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b09 20c9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.775906 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.775911 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.775915 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.775920 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.775929 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.775933 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.775936 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.775938 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.775942 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.775953 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.775959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.786870 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.786892 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.786910 LLDP, length 82 [|LLDP] 18:54:39.786912 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b11 872f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.786914 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.786920 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.786924 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.786928 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.786939 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.786945 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.786954 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.786959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.786962 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.786964 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.786969 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.795127 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.795148 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.795166 LLDP, length 82 [|LLDP] 18:54:39.795168 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b17 d3fd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.795170 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.795175 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.795185 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.795189 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.795193 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.795195 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.795200 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.795204 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.795208 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.795219 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.795225 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.806144 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.806160 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.806181 LLDP, length 82 [|LLDP] 18:54:39.806183 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b20 3a67 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.806185 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.806191 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.806195 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.806198 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.806203 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.806213 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.806217 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.806220 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.806222 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.806234 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.806239 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.817153 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.817180 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.817206 LLDP, length 82 [|LLDP] 18:54:39.817208 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b28 a0c9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.817210 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.817216 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.817220 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.817224 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.817236 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.817243 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.817253 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.817258 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.817261 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.817263 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.817268 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.825407 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.825431 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.825450 LLDP, length 82 [|LLDP] 18:54:39.825452 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b2e ed96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.825454 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.825460 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.825465 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.825475 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.825480 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.825483 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.825485 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.825489 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.825492 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.825504 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.825509 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.836414 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.836438 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.836458 LLDP, length 82 [|LLDP] 18:54:39.836460 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b37 53fd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.836462 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.836467 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.836471 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.836475 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.836486 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.836492 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.836501 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.836506 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.836508 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.836510 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.836515 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.844673 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.844697 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.844717 LLDP, length 82 [|LLDP] 18:54:39.844719 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b3d a0ca 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.844721 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.844726 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.844730 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.844734 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.844746 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.844752 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.844761 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.844766 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.844769 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.844771 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.844775 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.855691 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.855714 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.855732 LLDP, length 82 [|LLDP] 18:54:39.855734 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b46 0730 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.855736 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.855741 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.855745 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.855750 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.855760 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.855764 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.855767 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.855769 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.855773 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.855785 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.855790 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.866693 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.866716 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.866734 LLDP, length 82 [|LLDP] 18:54:39.866736 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b4e 6d97 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.866738 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.866744 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.866748 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.866751 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.866763 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.866769 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.866778 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.866782 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.866785 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.866788 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.866793 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.874949 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.874970 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.874990 LLDP, length 82 [|LLDP] 18:54:39.874991 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b54 ba64 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.874993 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.874999 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.875008 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.875013 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.875016 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.875018 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.875023 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.875026 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.875030 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.875042 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.875047 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.885958 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.885980 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.885998 LLDP, length 82 [|LLDP] 18:54:39.886000 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b5d 20ca 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.886001 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.886007 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.886011 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.886015 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.886020 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.886029 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.886034 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.886036 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.886039 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.886050 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.886056 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.896972 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.896988 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.897006 LLDP, length 82 [|LLDP] 18:54:39.897008 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b65 8731 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.897010 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.897015 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.897019 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.897022 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.897034 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.897040 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.897050 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.897054 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.897057 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.897059 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.897063 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.905227 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.905248 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.905267 LLDP, length 82 [|LLDP] 18:54:39.905269 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b6b d3fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.905271 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.905276 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.905282 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.905291 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.905295 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.905298 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.905300 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.905305 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.905308 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.905320 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.905326 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.916239 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.916262 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.916280 LLDP, length 82 [|LLDP] 18:54:39.916282 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b74 3a64 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.916284 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.916290 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.916293 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.916296 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.916308 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.916314 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.916324 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.916328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.916331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.916333 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.916338 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.924494 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.924524 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.924544 LLDP, length 82 [|LLDP] 18:54:39.924545 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b7a 8738 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.924548 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.924554 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.924557 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.924560 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.924572 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.924577 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.924587 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.924591 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.924594 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.924596 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.924601 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.935506 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.935528 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.935547 LLDP, length 82 [|LLDP] 18:54:39.935549 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b82 ed97 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.935551 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.935556 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.935560 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.935565 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.935575 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.935579 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.935582 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.935584 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.935588 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.935600 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.935605 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.946514 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.946536 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.946555 LLDP, length 82 [|LLDP] 18:54:39.946557 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b8b 53fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.946559 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.946564 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.946568 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.946571 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.946583 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.946589 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.946598 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.946602 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.946605 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.946607 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.946612 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.954769 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.954791 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.954809 LLDP, length 82 [|LLDP] 18:54:39.954811 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b91 a0ca 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.954813 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.954819 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.954828 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.954833 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.954836 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.954838 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.954843 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.954846 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.954850 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.954861 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.954867 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.965781 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.965804 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.965822 LLDP, length 82 [|LLDP] 18:54:39.965823 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b9a 0731 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.965825 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.965831 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.965834 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.965838 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.965842 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.965851 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.965856 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.965859 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.965861 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.965872 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.965878 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.976795 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.976810 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.976833 LLDP, length 82 [|LLDP] 18:54:39.976834 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ba2 6d9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.976836 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.976842 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.976846 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.976850 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.976862 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.976868 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.976876 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.976881 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.976884 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.976886 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.976891 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.985050 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.985072 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.985090 LLDP, length 82 [|LLDP] 18:54:39.985091 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ba8 ba63 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.985093 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.985099 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.985104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.985113 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.985118 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.985121 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.985123 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.985127 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.985130 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.985142 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.985148 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.996059 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.996082 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.996101 LLDP, length 82 [|LLDP] 18:54:39.996102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bb1 20ca 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.996104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.996109 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.996113 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.996116 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.996128 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.996134 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.996143 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.996148 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.996151 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.996153 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.996157 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.007069 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.007091 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.007111 LLDP, length 82 [|LLDP] 18:54:40.007112 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bb9 8730 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.007115 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.007120 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.007124 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.007128 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.007139 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.007145 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.007154 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.007159 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.007162 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.007164 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.007169 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.015328 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.015350 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.015369 LLDP, length 82 [|LLDP] 18:54:40.015371 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bbf d3fd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.015373 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.015379 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.015382 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.015387 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.015396 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.015401 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.015404 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.015406 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.015410 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.015422 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.015427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.026337 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.026359 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.026379 LLDP, length 82 [|LLDP] 18:54:40.026381 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bc8 3a64 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.026383 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.026389 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.026392 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.026396 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.026407 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.026414 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.026423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.026427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.026430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.026433 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.026437 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.034594 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.034616 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.034636 LLDP, length 82 [|LLDP] 18:54:40.034638 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bce 8730 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.034640 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.034646 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.034655 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.034660 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.034663 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.034665 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.034670 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.034673 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.034677 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.034688 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.034693 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.045604 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.045629 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.045649 LLDP, length 82 [|LLDP] 18:54:40.045651 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bd6 ed96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.045652 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.045658 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.045662 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.045666 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.045671 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.045680 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.045685 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.045688 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.045690 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.045702 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.045707 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.056616 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.056638 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.056657 LLDP, length 82 [|LLDP] 18:54:40.056658 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bdf 5400 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.056660 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.056666 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.056669 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.056673 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.056685 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.056690 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.056700 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.056705 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.056708 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.056710 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.056714 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.064870 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.064892 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.064910 LLDP, length 82 [|LLDP] 18:54:40.064912 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0be5 a0c9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.064914 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.064920 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.064925 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.064934 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.064939 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.064941 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.064944 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.064947 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.064951 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.064963 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.064968 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.075882 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.075903 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.075921 LLDP, length 82 [|LLDP] 18:54:40.075923 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bee 0730 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.075924 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.075930 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.075934 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.075937 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.075949 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.075955 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.075964 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.075969 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.075971 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.075973 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.075978 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.086892 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.086914 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.086932 LLDP, length 82 [|LLDP] 18:54:40.086934 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bf6 6d96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.086936 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.086941 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.086945 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.086949 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.086961 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.086966 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.086975 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.086980 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.086983 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.086985 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.086989 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.095148 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.095169 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.095187 LLDP, length 82 [|LLDP] 18:54:40.095188 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bfc ba63 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.095190 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.095196 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.095199 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.095205 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.095214 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.095218 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.095222 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.095224 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.095227 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.095239 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.095244 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.106158 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.106179 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.106197 LLDP, length 82 [|LLDP] 18:54:40.106199 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c05 20c9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.106201 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.106207 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.106211 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.106214 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.106225 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.106231 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.106240 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.106245 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.106248 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.106250 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.106255 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.117170 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.117194 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.117213 LLDP, length 82 [|LLDP] 18:54:40.117215 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c0d 8730 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.117217 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.117223 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.117232 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.117238 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.117241 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.117243 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.117248 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.117251 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.117255 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.117267 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.117272 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.125424 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.125446 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.125466 LLDP, length 82 [|LLDP] 18:54:40.125468 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c13 d3fc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.125470 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.125476 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.125480 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.125484 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.125490 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.125499 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.125504 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.125507 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.125509 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.125520 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.125526 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.136436 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.136459 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.136480 LLDP, length 82 [|LLDP] 18:54:40.136481 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c1c 3a63 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.136483 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.136489 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.136493 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.136497 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.136508 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.136515 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.136524 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.136529 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.136532 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.136534 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.136539 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.144696 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.144718 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.144737 LLDP, length 82 [|LLDP] 18:54:40.144739 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c22 8730 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.144741 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.144746 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.144752 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.144761 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.144765 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.144768 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.144771 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.144774 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.144778 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.144789 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.144795 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.155725 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.155751 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.155771 LLDP, length 82 [|LLDP] 18:54:40.155773 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c2a ed96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.155775 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.155782 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.155786 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.155790 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.155802 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.155808 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.155817 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.155822 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.155825 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.155827 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.155831 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.166714 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.166736 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.166754 LLDP, length 82 [|LLDP] 18:54:40.166756 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c33 53fd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.166758 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.166764 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.166768 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.166772 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.166783 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.166789 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.166798 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.166803 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.166805 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.166808 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.166812 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.174973 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.174994 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.175014 LLDP, length 82 [|LLDP] 18:54:40.175015 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c39 a0d1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.175017 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.175023 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.175026 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.175031 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.175041 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.175045 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.175048 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.175050 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.175054 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.175065 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.175071 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.185980 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.186000 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.186018 LLDP, length 82 [|LLDP] 18:54:40.186020 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c42 0731 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.186022 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.186027 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.186031 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.186035 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.186046 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.186052 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.186060 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.186065 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.186067 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.186069 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.186074 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.197044 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.197059 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.197078 LLDP, length 82 [|LLDP] 18:54:40.197080 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c4a 6d97 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.197082 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.197087 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.197096 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.197101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.197104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.197106 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.197111 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.197115 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.197119 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.197130 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.197135 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.205247 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.205268 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.205286 LLDP, length 82 [|LLDP] 18:54:40.205288 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c50 ba64 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.205290 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.205295 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.205299 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.205302 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.205307 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.205317 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.205322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.205324 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.205326 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.205338 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.205344 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.216259 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.216279 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.216297 LLDP, length 82 [|LLDP] 18:54:40.216299 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c59 20cb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.216301 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.216307 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.216310 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.216314 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.216326 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.216331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.216340 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.216345 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.216348 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.216350 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.216354 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.224517 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.224539 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.224559 LLDP, length 82 [|LLDP] 18:54:40.224561 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c5f 6d98 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.224563 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.224569 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.224574 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.224583 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.224588 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.224590 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.224592 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.224596 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.224600 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.224611 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.224617 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.235527 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.235549 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.235567 LLDP, length 82 [|LLDP] 18:54:40.235569 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c67 d3fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.235571 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.235577 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.235580 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.235583 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.235594 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.235601 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.235610 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.235615 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.235618 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.235620 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.235624 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.246536 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.246558 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.246576 LLDP, length 82 [|LLDP] 18:54:40.246578 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c70 3a65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.246580 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.246586 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.246590 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.246594 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.246605 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.246611 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.246620 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.246624 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.246627 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.246630 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.246634 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.254797 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.254813 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.254831 LLDP, length 82 [|LLDP] 18:54:40.254833 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c76 8731 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.254835 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.254840 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.254844 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.254849 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.254858 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.254863 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.254866 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.254868 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.254872 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.254883 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.254888 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.265802 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.265825 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.265842 LLDP, length 82 [|LLDP] 18:54:40.265845 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c7e ed97 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.265847 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.265852 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.265856 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.265860 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.265871 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.265877 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.265886 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.265891 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.265894 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.265896 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.265901 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.276816 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.276838 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.276857 LLDP, length 82 [|LLDP] 18:54:40.276858 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c87 53fd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.276860 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.276866 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.276889 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.276895 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.276898 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.276900 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.276905 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.276908 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.276912 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.276923 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.276929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.285072 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.285095 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.285113 LLDP, length 82 [|LLDP] 18:54:40.285115 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c8d a0ca 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.285117 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.285123 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.285127 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.285131 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.285136 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.285146 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.285150 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.285153 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.285155 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.285167 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.285173 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.296083 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.296103 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.296121 LLDP, length 82 [|LLDP] 18:54:40.296123 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c96 0731 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.296125 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.296131 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.296134 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.296138 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.296149 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.296155 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.296164 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.296169 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.296171 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.296173 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.296178 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.307095 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.307118 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.307136 LLDP, length 82 [|LLDP] 18:54:40.307138 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c9e 6d97 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.307140 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.307146 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.307151 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.307161 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.307165 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.307168 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.307170 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.307174 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.307178 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.307189 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.307195 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.315352 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.315373 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.315393 LLDP, length 82 [|LLDP] 18:54:40.315395 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ca4 ba63 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.315397 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.315403 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.315407 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.315410 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.315422 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.315428 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.315438 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.315443 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.315446 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.315448 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.315452 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.326360 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.326383 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.326402 LLDP, length 82 [|LLDP] 18:54:40.326404 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cad 20ca 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.326406 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.326412 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.326415 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.326419 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.326431 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.326437 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.326446 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.326451 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.326453 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.326455 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.326460 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.334618 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.334640 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.334658 LLDP, length 82 [|LLDP] 18:54:40.334660 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cb3 6d97 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.334662 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.334667 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.334671 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.334676 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.334685 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.334690 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.334693 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.334695 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.334699 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.334711 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.334717 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.345624 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.345645 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.345664 LLDP, length 82 [|LLDP] 18:54:40.345666 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cbb d3fd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.345669 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.345675 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.345679 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.345682 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.345693 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.345699 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.345708 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.345713 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.345715 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.345718 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.345722 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.356638 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.356660 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.356680 LLDP, length 82 [|LLDP] 18:54:40.356681 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cc4 3a63 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.356683 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.356689 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.356698 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.356703 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.356706 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.356708 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.356713 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.356716 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.356720 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.356731 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.356737 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.364893 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.364914 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.364932 LLDP, length 82 [|LLDP] 18:54:40.364934 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cca 8730 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.364936 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.364941 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.364945 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.364948 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.364954 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.364963 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.364968 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.364970 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.364973 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.364984 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.364990 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.375926 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.375950 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.375976 LLDP, length 82 [|LLDP] 18:54:40.375978 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cd2 ed96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.375980 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.375987 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.375990 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.375994 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.376016 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.376023 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.376035 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.376040 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.376043 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.376045 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.376049 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.386927 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.386948 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.386971 LLDP, length 82 [|LLDP] 18:54:40.386973 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cdb 53fd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.386975 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.386981 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.386986 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.386997 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.387001 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.387004 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.387006 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.387010 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.387014 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.387026 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.387031 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.395181 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.395199 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.395223 LLDP, length 82 [|LLDP] 18:54:40.395224 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ce1 a0c9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.395226 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.395233 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.395236 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.395240 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.395251 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.395257 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.395268 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.395272 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.395280 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.395282 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.395287 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.406198 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.406227 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.406250 LLDP, length 82 [|LLDP] 18:54:40.406252 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cea 0730 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.406254 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.406260 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.406264 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.406268 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.406280 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.406286 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.406300 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.406305 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.406309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.406311 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.406316 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.414445 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.414472 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.414495 LLDP, length 82 [|LLDP] 18:54:40.414497 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cf0 53fc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.414499 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.414505 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.414509 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.414514 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.414524 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.414529 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.414533 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.414535 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.414539 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.414551 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.414556 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.425463 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.425483 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.425506 LLDP, length 82 [|LLDP] 18:54:40.425508 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cf8 ba69 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.425511 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.425517 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.425522 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.425525 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.425537 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.425543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.425553 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.425559 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.425562 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.425565 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.425569 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.436470 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.436492 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.436516 LLDP, length 82 [|LLDP] 18:54:40.436518 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d01 20c9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.436520 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.436526 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.436536 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.436542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.436545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.436548 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.436553 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.436557 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.436560 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.436573 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.436579 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.444721 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.444750 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.444772 LLDP, length 82 [|LLDP] 18:54:40.444773 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d07 6d96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.444775 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.444782 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.444786 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.444789 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.444795 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.444805 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.444809 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.444813 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.444815 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.444827 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.444832 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.455741 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.455771 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.455801 LLDP, length 82 [|LLDP] 18:54:40.455803 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d0f d3fd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.455806 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.455813 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.455817 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.455821 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.455834 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.455840 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.455852 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.455857 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.455860 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.455862 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.455867 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.466742 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.466768 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.466789 LLDP, length 82 [|LLDP] 18:54:40.466791 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d18 3a63 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.466793 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.466799 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.466805 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.466816 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.466820 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.466823 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.466825 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.466829 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.466832 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.466849 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.466855 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.475000 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.475017 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.475036 LLDP, length 82 [|LLDP] 18:54:40.475038 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d1e 8730 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.475040 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.475046 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.475049 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.475053 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.475064 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.475070 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.475080 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.475084 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.475087 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.475089 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.475094 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.486000 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.486018 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.486035 LLDP, length 82 [|LLDP] 18:54:40.486036 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d26 ed97 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.486038 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.486044 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.486047 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.486051 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.486062 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.486067 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.486076 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.486080 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.486083 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.486085 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.486090 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.497009 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.497027 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.497044 LLDP, length 82 [|LLDP] 18:54:40.497045 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d2f 53fd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.497047 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.497052 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.497056 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.497061 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.497070 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.497074 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.497077 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.497079 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.497082 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.497094 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.497100 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.505268 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.505286 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.505302 LLDP, length 82 [|LLDP] 18:54:40.505304 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d35 a0ca 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.505306 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.505311 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.505314 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.505317 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.505329 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.505334 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.505344 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.505348 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.505351 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.505353 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.505358 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.516277 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.516293 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.516309 LLDP, length 82 [|LLDP] 18:54:40.516311 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d3e 0731 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.516313 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.516318 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.516326 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.516331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.516334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.516336 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.516340 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.516344 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.516347 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.516359 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.516365 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.524531 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.524548 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.524564 LLDP, length 82 [|LLDP] 18:54:40.524566 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d44 53fd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.524567 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.524572 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.524576 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.524580 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.524584 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.524593 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.524598 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.524600 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.524603 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.524614 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.524619 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.535670 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.535682 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.535700 LLDP, length 82 [|LLDP] 18:54:40.535701 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d4c ba64 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.535703 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.535709 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.535713 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.535716 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.535728 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.535734 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.535743 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.535747 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.535750 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.535752 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.535757 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.546554 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.546574 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.546591 LLDP, length 82 [|LLDP] 18:54:40.546592 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d55 20cb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.546594 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.546600 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.546605 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.546614 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.546619 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.546622 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.546624 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.546628 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.546632 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.546644 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.546650 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.554812 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.554831 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.554847 LLDP, length 82 [|LLDP] 18:54:40.554848 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d5b 6d98 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.554851 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.554856 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.554860 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.554863 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.554874 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.554880 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.554889 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.554894 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.554896 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.554898 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.554903 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.565819 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.565838 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.565855 LLDP, length 82 [|LLDP] 18:54:40.565856 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d63 d3fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.565858 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.565863 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.565867 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.565871 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.565883 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.565888 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.565897 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.565901 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.565904 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.565906 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.565911 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.576829 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.576848 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.576863 LLDP, length 82 [|LLDP] 18:54:40.576865 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d6c 3a64 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.576867 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.576872 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.576875 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.576881 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.576889 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.576894 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.576897 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.576899 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.576903 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.576914 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.576919 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.585086 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.585104 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.585120 LLDP, length 82 [|LLDP] 18:54:40.585121 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d72 8731 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.585138 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.585145 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.585150 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.585153 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.585167 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.585173 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.585182 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.585188 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.585191 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.585194 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.585198 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.596149 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.596181 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.596206 LLDP, length 82 [|LLDP] 18:54:40.596208 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d7a ed97 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.596211 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.596218 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.596233 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.596240 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.596244 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.596246 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.596254 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.596258 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.596262 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.596274 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.596280 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.607116 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.607139 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.607160 LLDP, length 82 [|LLDP] 18:54:40.607161 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d83 53fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.607163 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.607169 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.607173 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.607177 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.607183 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.607193 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.607198 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.607201 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.607203 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.607215 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.607220 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.615367 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.615387 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.615404 LLDP, length 82 [|LLDP] 18:54:40.615406 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d89 a0ca 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.615407 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.615413 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.615417 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.615421 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.615432 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.615439 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.615448 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.615452 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.615455 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.615457 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.615462 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.626375 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.626395 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.626411 LLDP, length 82 [|LLDP] 18:54:40.626412 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d92 0731 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.626414 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.626420 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.626425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.626434 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.626439 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.626441 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.626443 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.626447 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.626451 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.626462 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.626468 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.634633 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.634650 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.634666 LLDP, length 82 [|LLDP] 18:54:40.634668 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d98 53fd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.634669 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.634674 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.634678 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.634682 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.634693 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.634699 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.634708 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.634713 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.634715 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.634717 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.634722 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.645635 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.645649 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.645667 LLDP, length 82 [|LLDP] 18:54:40.645669 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0da0 ba64 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.645671 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.645676 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.645680 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.645692 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.645697 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.645706 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.656660 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.656676 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.656679 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.656687 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.656701 LLDP, length 82 [|LLDP] 18:54:40.656703 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0da9 20c9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.656706 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.656712 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.656715 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.656719 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.656724 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.656728 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.656730 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.656735 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.656747 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.664909 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.664928 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.664944 LLDP, length 82 [|LLDP] 18:54:40.664945 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0daf 6d97 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.664947 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.664952 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.664956 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.664959 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.664971 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.664976 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.664985 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.664988 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.664992 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.664994 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.664998 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.675926 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.675951 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.675971 LLDP, length 82 [|LLDP] 18:54:40.675973 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0db7 d404 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.675974 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.675980 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.675985 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.675995 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.675998 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.676002 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.676005 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.676017 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.676023 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.676025 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.676029 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.686933 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.686953 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.686971 LLDP, length 82 [|LLDP] 18:54:40.686972 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dc0 3a63 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.686974 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.686979 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.686983 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.686987 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.686998 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.687004 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.687013 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.687017 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.687021 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.687023 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.687027 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.695188 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.695205 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.695221 LLDP, length 82 [|LLDP] 18:54:40.695223 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dc6 872f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.695225 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.695230 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.695234 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.695238 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.695250 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.695256 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.695265 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.695268 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.695272 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.695274 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.695278 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.706202 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.706215 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.706231 LLDP, length 82 [|LLDP] 18:54:40.706233 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dce ed96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.706235 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.706240 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.706244 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.706249 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.706258 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.706260 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.706264 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.706276 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.706281 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.706283 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.706287 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.714457 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.714475 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.714490 LLDP, length 82 [|LLDP] 18:54:40.714492 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dd5 3a68 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.714494 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.714499 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.714503 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.714506 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.714518 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.714523 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.714532 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.714535 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.714540 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.714542 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.714546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.725468 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.725490 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.725509 LLDP, length 82 [|LLDP] 18:54:40.725511 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ddd a0c9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.725513 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.725518 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.725527 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.725531 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.725535 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.725539 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.725543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.725554 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.725560 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.725562 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.725566 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.736477 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.736497 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.736515 LLDP, length 82 [|LLDP] 18:54:40.736516 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0de6 072f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.736518 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.736523 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.736527 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.736531 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.736536 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.736546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.736548 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.736560 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.736565 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.736567 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.736572 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.744732 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.744750 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.744767 LLDP, length 82 [|LLDP] 18:54:40.744768 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dec 53fd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.744770 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.744776 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.744780 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.744783 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.744795 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.744801 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.744810 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.744812 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.744817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.744819 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.744823 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.755744 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.755764 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.755781 LLDP, length 82 [|LLDP] 18:54:40.755783 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0df4 ba63 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.755784 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.755790 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.755796 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.755805 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.755808 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.755811 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.755815 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.755827 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.755832 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.755835 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.755839 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.766772 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.766791 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.766815 LLDP, length 82 [|LLDP] 18:54:40.766817 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dfd 20c9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.766819 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.766825 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.766829 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.766832 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.766845 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.766851 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.766861 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.766865 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.766869 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.766872 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.766876 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.775013 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.775033 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.775053 LLDP, length 82 [|LLDP] 18:54:40.775054 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e03 6d96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.775056 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.775061 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.775065 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.775069 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.775080 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.775086 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.775096 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.775098 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.775102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.775105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.775109 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.786020 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.786038 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.786055 LLDP, length 82 [|LLDP] 18:54:40.786056 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e0b d3fc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.786058 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.786063 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.786067 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.786072 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.786081 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.786084 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.786089 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.786100 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.786105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.786108 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.786113 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.797031 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.797050 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.797067 LLDP, length 82 [|LLDP] 18:54:40.797068 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e14 3a63 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.797070 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.797075 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.797079 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.797083 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.797094 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.797101 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.797110 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.797113 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.797117 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.797119 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.797123 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.805289 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.805307 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.805323 LLDP, length 82 [|LLDP] 18:54:40.805324 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e1a 8731 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.805326 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.805332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.805341 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.805344 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.805348 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.805352 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.805356 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.805368 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.805373 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.805375 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.805379 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.816298 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.816317 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.816334 LLDP, length 82 [|LLDP] 18:54:40.816336 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e22 ed96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.816338 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.816343 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.816347 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.816350 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.816355 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.816365 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.816367 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.816380 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.816384 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.816387 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.816391 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.824554 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.824571 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.824588 LLDP, length 82 [|LLDP] 18:54:40.824590 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e29 3a64 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.824592 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.824596 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.824600 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.824603 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.824614 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.824620 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.824629 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.824632 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.824636 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.824638 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.824643 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.835564 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.835581 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.835597 LLDP, length 82 [|LLDP] 18:54:40.835598 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e31 a0ca 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.835600 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.835605 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.835611 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.835620 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.835623 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.835627 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.835631 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.835643 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.835657 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.835660 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.835664 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.846573 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.846591 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.846606 LLDP, length 82 [|LLDP] 18:54:40.846608 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e3a 0731 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.846610 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.846615 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.846618 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.846621 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.846633 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.846639 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.846647 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.846650 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.846654 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.846657 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.846661 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.854831 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.854851 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.854869 LLDP, length 82 [|LLDP] 18:54:40.854870 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e40 53fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.854872 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.854878 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.854882 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.854885 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.854897 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.854903 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.854912 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.854915 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.854919 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.854921 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.854925 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.865861 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.865891 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.865916 LLDP, length 82 [|LLDP] 18:54:40.865918 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e48 ba65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.865920 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.865926 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.865929 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.865935 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.865945 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.865949 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.865953 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.865965 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.865970 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.865973 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.865977 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.876868 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.876889 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.876911 LLDP, length 82 [|LLDP] 18:54:40.876913 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e51 20ca 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.876915 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.876922 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.876926 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.876929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.876942 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.876948 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.876958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.876961 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.876965 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.876968 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.876972 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.885119 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.885144 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.885165 LLDP, length 82 [|LLDP] 18:54:40.885166 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e57 6d97 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.885169 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.885175 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.885185 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.885188 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.885193 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.885197 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.885200 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.885221 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.885227 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.885229 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.885234 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.897760 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.897780 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.897805 LLDP, length 82 [|LLDP] 18:54:40.897806 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e5f d3fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.897808 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.897815 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.897819 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.897822 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.897828 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.897840 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.897843 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.897863 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.897869 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.897871 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.897876 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.904384 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.904398 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.904415 LLDP, length 82 [|LLDP] 18:54:40.904417 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e66 20ca 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.904419 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.904424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.904428 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.904431 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.904443 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.904448 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.904459 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.904462 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.904470 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.904473 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.904478 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.915397 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.915420 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.915440 LLDP, length 82 [|LLDP] 18:54:40.915442 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e6e 8730 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.915444 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.915450 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.915456 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.915466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.915468 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.915472 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.915475 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.915492 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.915497 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.915500 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.915504 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.926424 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.926446 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.926470 LLDP, length 82 [|LLDP] 18:54:40.926472 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e76 ed9f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.926474 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.926480 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.926484 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.926488 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.926500 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.926507 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.926522 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.926526 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.926530 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.926533 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.926537 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.934671 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.934691 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.934713 LLDP, length 82 [|LLDP] 18:54:40.934715 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e7d 3a64 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.934717 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.934723 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.934727 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.934730 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.934742 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.934749 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.934758 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.934761 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.934766 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.934768 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.934773 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.945686 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.945708 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.945732 LLDP, length 82 [|LLDP] 18:54:40.945734 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e85 a0ca 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.945736 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.945743 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.945746 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.945752 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.945763 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.945766 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.945770 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.945782 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.945787 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.945790 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.945795 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.956684 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.956710 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.956731 LLDP, length 82 [|LLDP] 18:54:40.956733 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e8e 0731 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.956735 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.956741 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.956745 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.956749 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.956760 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.956766 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.956776 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.956779 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.956783 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.956785 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.956790 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.964944 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.964969 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.964989 LLDP, length 82 [|LLDP] 18:54:40.964991 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e94 53ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.964993 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.965000 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.965009 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.965013 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.965018 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.965022 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.965026 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.965038 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.965043 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.965045 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.965049 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.975953 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.975979 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.976001 LLDP, length 82 [|LLDP] 18:54:40.976003 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e9c ba63 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.976005 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.976011 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.976015 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.976019 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.976024 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.976034 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.976037 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.976049 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.976054 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.976056 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.976061 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.986967 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.986982 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.987002 LLDP, length 82 [|LLDP] 18:54:40.987003 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ea5 20ca 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.987005 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.987011 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.987014 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.987018 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.987030 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.987036 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.987045 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.987048 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.987052 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.987054 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.987059 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.995211 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.995231 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.995249 LLDP, length 82 [|LLDP] 18:54:40.995251 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0eab 6d96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.995253 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.995259 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.995264 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.995273 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.995276 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.995279 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.995283 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.995295 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.995300 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.995302 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.995307 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.006221 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.006241 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.006257 LLDP, length 82 [|LLDP] 18:54:41.006259 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0eb3 d3fc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.006261 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.006266 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.006270 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.006274 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.006286 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.006292 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.006301 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.006304 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.006308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.006310 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.006314 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.014479 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.014499 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.014516 LLDP, length 82 [|LLDP] 18:54:41.014517 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0eba 20ca 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.014520 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.014525 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.014529 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.014533 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.014545 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.014550 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.014559 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.014562 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.014566 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.014568 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.014573 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.025487 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.025506 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.025524 LLDP, length 82 [|LLDP] 18:54:41.025526 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ec2 8730 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.025528 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.025533 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.025536 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.025541 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.025550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.025553 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.025557 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.025569 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.025574 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.025577 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.025581 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.036496 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.036516 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.036536 LLDP, length 82 [|LLDP] 18:54:41.036537 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0eca ed96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.036539 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.036545 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.036548 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.036552 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.036563 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.036569 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.036578 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.036581 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.036585 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.036587 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.036592 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.044746 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.044758 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.044775 LLDP, length 82 [|LLDP] 18:54:41.044776 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ed1 3a6a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.044778 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.044784 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.044792 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.044795 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.044800 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.044803 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.055766 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.055785 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.055802 LLDP, length 82 [|LLDP] 18:54:41.055804 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ed9 a0c9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.055806 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.055811 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.055815 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.055818 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.055830 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.055835 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.055844 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.055849 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.055852 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.055854 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.055859 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.066784 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.066810 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.066834 LLDP, length 82 [|LLDP] 18:54:41.066836 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ee2 072f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.066838 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.066843 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.066847 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.066851 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.066862 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.066868 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.066879 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.066883 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.066886 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.066888 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.066893 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.075035 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.075058 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.075077 LLDP, length 82 [|LLDP] 18:54:41.075079 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ee8 53fc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.075081 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.075087 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.075091 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.075097 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.075106 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.075111 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.075114 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.075116 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.075119 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.075132 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.075137 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.086046 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.086066 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.086085 LLDP, length 82 [|LLDP] 18:54:41.086086 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ef0 ba63 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.086089 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.086094 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.086097 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.086101 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.086113 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.086119 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.086128 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.086132 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.086135 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.086137 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.086142 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.097053 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.097074 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.097093 LLDP, length 82 [|LLDP] 18:54:41.097095 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ef9 20c9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.097096 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.097102 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.097111 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.097116 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.097119 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.097121 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.097126 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.097130 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.097134 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.097145 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.097151 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.105314 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.105333 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.105351 LLDP, length 82 [|LLDP] 18:54:41.105353 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0eff 6d96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.105355 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.105360 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.105363 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.105367 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.105372 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.105382 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.105386 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.105388 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.105391 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.105402 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.105408 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.116320 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.116339 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.116356 LLDP, length 82 [|LLDP] 18:54:41.116358 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f07 d3fd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.116360 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.116365 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.116368 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.116372 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.116383 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.116389 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.116397 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.116402 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.116404 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.116406 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.116411 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.124579 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.124598 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.124615 LLDP, length 82 [|LLDP] 18:54:41.124617 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f0e 20ca 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.124619 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.124624 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.124630 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.124639 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.124643 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.124646 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.124648 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.124652 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.124655 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.124667 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.124672 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.135587 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.135606 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.135623 LLDP, length 82 [|LLDP] 18:54:41.135624 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f16 8730 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.135626 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.135632 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.135635 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.135639 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.135660 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.135666 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.135675 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.135680 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.135682 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.135685 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.135690 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.146598 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.146617 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.146635 LLDP, length 82 [|LLDP] 18:54:41.146636 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f1e ed97 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.146638 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.146644 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.146648 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.146651 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.146663 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.146668 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.146677 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.146681 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.146684 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.146686 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.146691 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.154852 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.154872 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.154889 LLDP, length 82 [|LLDP] 18:54:41.154891 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f25 3a64 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.154892 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.154898 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.154901 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.154906 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.154915 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.154920 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.154922 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.154925 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.154928 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.154941 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.154947 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.165866 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.165888 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.165905 LLDP, length 82 [|LLDP] 18:54:41.165907 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f2d a0cb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.165909 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.165915 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.165919 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.165922 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.165933 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.165939 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.165949 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.165953 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.165955 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.165957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.165962 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.176876 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.176897 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.176916 LLDP, length 82 [|LLDP] 18:54:41.176917 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f36 0735 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.176919 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.176925 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.176934 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.176939 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.176942 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.176944 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.176948 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.176952 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.176956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.176968 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.176973 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.185134 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.185153 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.185170 LLDP, length 82 [|LLDP] 18:54:41.185172 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f3c 53fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.185174 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.185179 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.185183 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.185187 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.185192 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.185201 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.185205 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.185208 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.185210 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.185222 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.185227 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.196143 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.196162 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.196180 LLDP, length 82 [|LLDP] 18:54:41.196182 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f44 ba65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.196184 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.196189 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.196193 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.196197 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.196208 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.196214 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.196223 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.196228 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.196231 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.196233 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.196237 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.204399 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.204418 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.204435 LLDP, length 82 [|LLDP] 18:54:41.204437 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f4b 0731 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.204438 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.204444 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.204449 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.204458 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.204462 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.204465 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.204467 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.204471 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.204474 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.204486 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.204491 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.215409 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.215430 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.215447 LLDP, length 82 [|LLDP] 18:54:41.215449 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f53 6d98 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.215451 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.215457 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.215460 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.215464 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.215475 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.215481 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.215489 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.215494 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.215497 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.215499 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.215503 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.226420 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.226441 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.226459 LLDP, length 82 [|LLDP] 18:54:41.226461 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f5b d3fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.226463 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.226468 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.226472 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.226475 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.226487 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.226493 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.226501 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.226506 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.226509 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.226511 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.226515 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.234677 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.234697 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.234714 LLDP, length 82 [|LLDP] 18:54:41.234715 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f62 20ca 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.234717 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.234723 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.234726 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.234731 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.234740 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.234745 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.234748 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.234750 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.234753 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.234765 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.234770 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.245689 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.245702 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.245717 LLDP, length 82 [|LLDP] 18:54:41.245719 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f6a 8730 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.245721 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.245726 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.245729 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.245733 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.245745 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.245750 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.245759 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.245763 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.245766 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.245768 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.245772 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.256698 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.256716 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.256733 LLDP, length 82 [|LLDP] 18:54:41.256735 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f72 ed97 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.256737 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.256742 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.256751 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.256756 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.256758 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.256760 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.256765 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.256769 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.256772 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.256784 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.256789 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.264954 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.264974 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.264990 LLDP, length 82 [|LLDP] 18:54:41.264992 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f79 3a64 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.264994 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.264999 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.265003 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.265006 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.265011 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.265020 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.265024 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.265027 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.265029 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.265040 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.265046 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.275977 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.275993 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.276011 LLDP, length 82 [|LLDP] 18:54:41.276013 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f81 a0ca 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.276015 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.276020 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.276024 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.276027 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.276039 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.276045 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.276068 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.276081 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.276084 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.276087 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.276092 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.286976 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.286996 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.287015 LLDP, length 82 [|LLDP] 18:54:41.287017 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f8a 0730 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.287019 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.287024 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.287029 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.287038 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.287043 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.287046 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.287048 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.287052 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.287056 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.287067 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.287073 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.295235 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.295254 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.295272 LLDP, length 82 [|LLDP] 18:54:41.295273 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f90 5404 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.295275 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.295280 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.295284 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.295288 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.295300 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.295306 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.295315 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.295320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.295323 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.295325 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.295330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.306248 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.306269 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.306288 LLDP, length 82 [|LLDP] 18:54:41.306290 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f98 ba63 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.306292 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.306298 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.306302 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.306306 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.306317 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.306324 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.306334 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.306338 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.306341 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.306343 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.306348 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.314501 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.314524 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.314542 LLDP, length 82 [|LLDP] 18:54:41.314544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f9f 0730 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.314546 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.314552 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.314555 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.314561 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.314570 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.314575 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.314578 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.314580 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.314583 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.314595 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.314600 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.325517 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.325530 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.325547 LLDP, length 82 [|LLDP] 18:54:41.325549 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fa7 6d97 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.325551 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.325556 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.325560 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.325564 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.325576 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.325581 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.325591 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.325596 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.325598 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.325600 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.325605 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.336525 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.336544 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.336561 LLDP, length 82 [|LLDP] 18:54:41.336563 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0faf d3fd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.336566 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.336571 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.336580 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.336585 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.336588 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.336590 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.336595 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.336598 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.336602 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.336613 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.336619 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.344776 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.344796 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.344813 LLDP, length 82 [|LLDP] 18:54:41.344815 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fb6 20c9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.344817 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.344822 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.344826 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.344829 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.344835 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.344844 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.344848 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.344851 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.344853 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.344864 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.344870 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.355786 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.355805 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.355822 LLDP, length 82 [|LLDP] 18:54:41.355823 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fbe 872f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.355825 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.355830 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.355834 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.355837 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.355849 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.355855 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.355863 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.355868 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.355871 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.355873 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.355878 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.366797 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.366815 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.366831 LLDP, length 82 [|LLDP] 18:54:41.366833 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fc6 ed96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.366835 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.366840 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.366845 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.366854 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.366859 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.366862 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.366864 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.366867 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.366871 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.366882 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.366888 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.375055 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.375076 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.375094 LLDP, length 82 [|LLDP] 18:54:41.375096 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fcd 3a63 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.375098 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.375104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.375108 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.375111 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.375122 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.375128 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.375137 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.375142 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.375145 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.375147 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.375152 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.386067 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.386088 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.386108 LLDP, length 82 [|LLDP] 18:54:41.386109 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fd5 a0c9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.386112 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.386117 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.386121 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.386124 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.386136 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.386141 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.386151 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.386155 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.386158 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.386160 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.386164 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.397076 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.397095 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.397113 LLDP, length 82 [|LLDP] 18:54:41.397114 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fde 072f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.397116 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.397122 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.397125 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.397131 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.397140 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.397144 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.397147 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.397149 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.397153 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.397165 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.397170 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.405332 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.405353 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.405370 LLDP, length 82 [|LLDP] 18:54:41.405372 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fe4 53fc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.405374 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.405379 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.405383 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.405386 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.405397 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.405403 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.405412 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.405417 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.405419 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.405422 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.405426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.416347 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.416369 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.416389 LLDP, length 82 [|LLDP] 18:54:41.416390 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fec ba63 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.416393 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.416399 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.416408 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.416412 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.416415 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.416417 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.416423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.416427 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.416430 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.416442 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.416447 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.427740 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.427765 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.427791 LLDP, length 82 [|LLDP] 18:54:41.427792 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ff3 0730 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.427795 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.427802 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.427806 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.427810 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.427816 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.427828 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.427833 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.427836 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.427838 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.427850 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.427855 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.435620 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.435644 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.435680 LLDP, length 82 [|LLDP] 18:54:41.435682 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ffb 6d96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.435684 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.435691 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.435694 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.435698 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.435710 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.435716 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.435726 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.435731 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.435734 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.435736 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.435741 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.446641 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.446660 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.446681 LLDP, length 82 [|LLDP] 18:54:41.446683 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1003 d3fd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.446685 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.446691 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.446696 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.446706 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.446711 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.446718 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.446721 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.446725 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.446728 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.446741 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.446747 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.454901 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.454934 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.454964 LLDP, length 82 [|LLDP] 18:54:41.454984 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 100a 20ca 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.454987 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.454996 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.455002 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.455006 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.455020 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.455027 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.455040 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.455046 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.455049 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.455052 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.455057 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.465923 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.465961 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.465990 LLDP, length 82 [|LLDP] 18:54:41.465992 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1012 8731 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.465994 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.466004 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.466008 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.466012 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.466024 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.466031 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.466054 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.466061 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.466065 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.466067 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.466072 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.476935 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.476964 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.476999 LLDP, length 82 [|LLDP] 18:54:41.477001 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 101a ed97 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.477003 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.477011 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.477015 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.477021 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.477033 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.477038 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.477041 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.477044 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.477047 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.477059 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.477066 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.488368 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.488393 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.488417 LLDP, length 82 [|LLDP] 18:54:41.488418 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1021 3a64 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.488420 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.488427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.488430 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.488434 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.488445 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.488451 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.488462 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.488467 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.488471 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.488473 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.488477 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.496183 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.496207 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.496232 LLDP, length 82 [|LLDP] 18:54:41.496234 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1029 a0cb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.496236 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.496242 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.496253 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.496259 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.496262 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.496264 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.496270 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.496274 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.496278 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.496290 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.496296 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.504448 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.504478 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.504503 LLDP, length 82 [|LLDP] 18:54:41.504505 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 102f ed98 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.504507 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.504514 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.504518 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.504521 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.504527 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.504539 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.504544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.504547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.504549 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.504560 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.504566 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.515441 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.515465 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.515485 LLDP, length 82 [|LLDP] 18:54:41.515487 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1038 53fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.515489 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.515494 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.515498 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.515502 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.515526 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.515533 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.515543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.515547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.515550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.515553 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.515558 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.526463 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.526484 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.526507 LLDP, length 82 [|LLDP] 18:54:41.526509 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1040 ba64 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.526511 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.526517 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.526523 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.526534 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.526539 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.526542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.526544 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.526548 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.526552 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.526563 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.526568 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.534717 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.534744 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.534768 LLDP, length 82 [|LLDP] 18:54:41.534769 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1047 0731 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.534771 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.534782 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.534786 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.534789 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.534801 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.534807 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.534818 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.534823 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.534826 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.534828 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.534833 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.548976 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.548999 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.549029 LLDP, length 82 [|LLDP] 18:54:41.549031 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 104f 6d9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.549033 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.549039 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.549043 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.549046 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.549059 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.549065 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.549077 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.549081 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.549085 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.549087 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.549091 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.556745 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.556768 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.556797 LLDP, length 82 [|LLDP] 18:54:41.556799 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1057 d3fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.556801 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.556808 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.556812 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.556817 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.556828 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.556833 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.556836 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.556838 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.556842 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.556854 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.556860 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.564989 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.565016 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.565039 LLDP, length 82 [|LLDP] 18:54:41.565041 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 105e 20ca 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.565043 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.565049 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.565053 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.565056 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.565068 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.565074 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.565084 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.565088 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.565091 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.565093 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.565098 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.576003 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.576034 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.576060 LLDP, length 82 [|LLDP] 18:54:41.576062 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1066 8730 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.576064 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.576071 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.576082 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.576087 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.576091 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.576093 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.576099 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.576102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.576106 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.576118 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.576123 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.587008 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.587036 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.587068 LLDP, length 82 [|LLDP] 18:54:41.587070 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 106e ed97 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.587072 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.587079 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.587083 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.587087 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.587093 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.587103 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.587108 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.587112 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.587114 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.587126 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.587132 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.595270 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.595296 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.595318 LLDP, length 82 [|LLDP] 18:54:41.595320 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1075 3a64 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.595322 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.595337 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.595340 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.595344 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.595360 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.595367 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.595378 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.595383 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.595386 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.595388 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.595392 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.607975 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.607993 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.608019 LLDP, length 82 [|LLDP] 18:54:41.608021 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 107d a0ca 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.608023 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.608030 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.608036 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.608045 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.608050 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.608053 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.608055 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.608059 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.608062 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.608075 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.608081 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.614523 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.614545 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.614563 LLDP, length 82 [|LLDP] 18:54:41.614565 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1083 ed96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.614567 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.614572 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.614575 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.614579 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.614591 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.614597 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.614607 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.614611 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.614614 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.614617 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.614621 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.625540 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.625567 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.625589 LLDP, length 82 [|LLDP] 18:54:41.625591 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 108c 53fd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.625593 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.625600 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.625603 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.625607 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.625619 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.625625 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.625635 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.625640 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.625643 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.625645 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.625650 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.636573 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.636598 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.636627 LLDP, length 82 [|LLDP] 18:54:41.636628 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1094 ba63 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.636630 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.636637 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.636641 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.636647 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.636659 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.636664 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.636667 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.636669 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.636673 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.636685 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.636690 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.644812 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.644840 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.644865 LLDP, length 82 [|LLDP] 18:54:41.644866 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 109b 0730 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.644869 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.644875 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.644882 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.644886 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.644899 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.644905 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.644916 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.644921 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.644924 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.644926 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.644932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.655820 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.655852 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.655876 LLDP, length 82 [|LLDP] 18:54:41.655878 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10a3 6d96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.655880 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.655886 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.655897 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.655903 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.655906 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.655908 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.655913 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.655917 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.655920 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.655932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.655941 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.666834 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.666862 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.666890 LLDP, length 82 [|LLDP] 18:54:41.666892 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10ab d3fd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.666894 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.666901 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.666905 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.666908 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.666914 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.666924 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.666929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.666932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.666935 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.666947 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.666953 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.675090 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.675117 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.675140 LLDP, length 82 [|LLDP] 18:54:41.675141 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10b2 20c9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.675143 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.675149 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.675153 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.675157 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.675169 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.675180 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.675191 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.675196 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.675199 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.675201 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.675206 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.686107 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.686137 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.686166 LLDP, length 82 [|LLDP] 18:54:41.686167 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10ba 872f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.686169 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.686177 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.686182 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.686195 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.686200 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.686203 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.686205 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.686209 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.686212 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.686225 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.686231 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.694356 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.694386 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.694410 LLDP, length 82 [|LLDP] 18:54:41.694412 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10c0 d3fc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.694414 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.694420 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.694424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.694427 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.694439 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.694445 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.694457 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.694462 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.694465 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.694467 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.694472 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.705374 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.705405 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.705431 LLDP, length 82 [|LLDP] 18:54:41.705433 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10c9 3a63 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.705435 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.705443 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.705447 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.705450 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.705462 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.705469 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.705480 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.705484 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.705487 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.705490 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.705495 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.716374 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.716400 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.716426 LLDP, length 82 [|LLDP] 18:54:41.716428 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10d1 a0c9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.716430 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.716436 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.716440 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.716446 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.716456 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.716460 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.716463 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.716465 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.716469 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.716481 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.716487 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.724630 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.724656 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.724677 LLDP, length 82 [|LLDP] 18:54:41.724680 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10d7 ed96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.724681 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.724687 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.724691 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.724694 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.724706 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.724716 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.724727 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.724731 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.724735 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.724737 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.724741 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.735638 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.735673 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.735695 LLDP, length 82 [|LLDP] 18:54:41.735697 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10e0 53fc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.735698 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.735704 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.735714 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.735720 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.735723 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.735725 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.735730 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.735734 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.735738 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.735749 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.735759 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.746647 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.746671 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.746695 LLDP, length 82 [|LLDP] 18:54:41.746697 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10e8 ba63 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.746699 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.746706 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.746710 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.746714 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.746719 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.746731 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.746735 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.746739 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.746741 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.746754 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.746759 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.754906 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.754933 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.754957 LLDP, length 82 [|LLDP] 18:54:41.754958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10ef 0730 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.754960 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.754966 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.754970 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.754974 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.754986 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.754992 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.755003 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.755007 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.755010 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.755013 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.755018 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.765938 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.765972 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.766006 LLDP, length 82 [|LLDP] 18:54:41.766008 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10f7 6d97 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.766011 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.766019 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.766024 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.766036 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.766041 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.766045 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.766047 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.766051 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.766054 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.766067 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.766073 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.776941 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.776966 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.776993 LLDP, length 82 [|LLDP] 18:54:41.776995 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10ff d3fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.776997 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.777004 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.777007 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.777011 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.777027 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.777033 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.777045 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.777050 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.777053 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.777055 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.777060 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.785189 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.785211 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.785236 LLDP, length 82 [|LLDP] 18:54:41.785237 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1106 20ca 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.785239 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.785246 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.785249 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.785253 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.785264 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.785270 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.785281 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.785286 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.785290 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.785292 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.785297 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.796205 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.796234 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.796259 LLDP, length 82 [|LLDP] 18:54:41.796261 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 110e 8737 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.796263 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.796269 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.796273 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.796279 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.796290 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.796295 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.796298 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.796300 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.796304 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.796315 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.796321 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.804453 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.804481 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.804506 LLDP, length 82 [|LLDP] 18:54:41.804508 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1114 d3fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.804510 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.804516 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.804520 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.804523 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.804535 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.804540 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.804551 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.804556 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.804559 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.804561 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.804566 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.815475 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.815506 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.815532 LLDP, length 82 [|LLDP] 18:54:41.815534 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 111d 3a64 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.815536 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.815543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.815560 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.815565 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.815569 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.815571 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.815576 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.815580 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.815584 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.815596 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.815602 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.826482 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.826513 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.826546 LLDP, length 82 [|LLDP] 18:54:41.826548 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1125 a0cb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.826550 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.826558 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.826562 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.826565 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.826571 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.826582 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.826588 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.826591 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.826593 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.826606 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.826611 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.834731 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.834751 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.834774 LLDP, length 82 [|LLDP] 18:54:41.834775 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 112b ed9c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.834777 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.834783 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.834787 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.834791 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.834803 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.834809 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.834820 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.834824 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.834827 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.834830 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.834834 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.845745 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.845770 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.845793 LLDP, length 82 [|LLDP] 18:54:41.845795 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1134 53fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.845797 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.845804 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.845809 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.845820 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.845824 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.845828 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.845830 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.845833 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.845837 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.845849 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.845854 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.856751 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.856776 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.856798 LLDP, length 82 [|LLDP] 18:54:41.856800 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 113c ba64 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.856802 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.856808 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.856812 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.856815 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.856826 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.856832 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.856843 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.856847 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.856850 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.856852 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.856857 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.865009 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.865034 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.865056 LLDP, length 82 [|LLDP] 18:54:41.865058 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1143 0731 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.865060 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.865066 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.865070 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.865073 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.865085 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.865091 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.865102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.865106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.865109 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.865112 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.865116 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.876019 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.876045 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.876068 LLDP, length 82 [|LLDP] 18:54:41.876070 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 114b 6d98 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.876073 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.876079 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.876083 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.876088 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.876098 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.876103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.876106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.876108 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.876112 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.876123 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.876129 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.887025 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.887051 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.887072 LLDP, length 82 [|LLDP] 18:54:41.887073 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1153 d3fd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.887076 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.887082 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.887086 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.887089 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.887101 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.887107 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.887118 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.887123 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.887126 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.887128 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.887133 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.895286 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.895303 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.895325 LLDP, length 82 [|LLDP] 18:54:41.895326 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 115a 20ca 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.895328 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.895334 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.895344 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.895350 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.895353 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.895355 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.895360 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.895363 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.895367 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.895378 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.895383 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.906296 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.906321 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.906344 LLDP, length 82 [|LLDP] 18:54:41.906345 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1162 8730 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.906347 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.906353 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.906357 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.906360 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.906366 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.906376 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.906380 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.906383 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.906386 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.906397 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.906404 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.914552 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.914571 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.914592 LLDP, length 82 [|LLDP] 18:54:41.914593 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1168 d404 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.914595 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.914602 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.914605 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.914609 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.914621 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.914627 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.914637 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.914641 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.914644 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.914646 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.914651 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.925560 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.925585 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.925606 LLDP, length 82 [|LLDP] 18:54:41.925608 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1171 3a63 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.925610 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.925616 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.925620 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.925630 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.925635 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.925638 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.925640 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.925644 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.925647 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.925659 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.925665 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.936569 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.936592 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.936613 LLDP, length 82 [|LLDP] 18:54:41.936615 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1179 a0ca 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.936618 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.936623 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.936628 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.936631 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.936643 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.936649 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.936659 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.936663 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.936666 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.936668 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.936672 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.944825 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.944849 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.944870 LLDP, length 82 [|LLDP] 18:54:41.944871 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 117f ed96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.944873 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.944879 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.944882 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.944886 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.944897 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.944904 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.944914 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.944919 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.944922 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.944924 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.944929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.955836 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.955861 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.955881 LLDP, length 82 [|LLDP] 18:54:41.955883 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1188 53fd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.955885 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.955891 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.955895 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.955900 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.955910 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.955915 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.955918 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.955920 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.955923 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.955935 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.955940 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.966847 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.966870 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.966891 LLDP, length 82 [|LLDP] 18:54:41.966893 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1190 ba63 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.966895 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.966901 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.966904 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.966908 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.966919 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.966925 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.966935 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.966940 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.966943 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.966945 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.966949 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.975102 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.975126 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.975146 LLDP, length 82 [|LLDP] 18:54:41.975148 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1197 0730 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.975150 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.975156 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.975165 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.975170 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.975173 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.975175 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.975180 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.975184 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.975187 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.975199 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.975204 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.986113 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.986136 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.986157 LLDP, length 82 [|LLDP] 18:54:41.986158 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 119f 6d96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.986160 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.986166 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.986170 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.986173 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.986179 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.986190 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.986194 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.986197 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.986199 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.986211 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.986216 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.994371 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.994394 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.994414 LLDP, length 82 [|LLDP] 18:54:41.994416 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11a5 ba63 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.994418 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.994424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.994427 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.994431 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.994443 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.994449 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.994460 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.994464 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.994467 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.994469 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.994474 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:42.005382 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:42.005406 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:42.005427 LLDP, length 82 [|LLDP] 18:54:42.005429 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11ae 20c9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:42.005431 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:42.005437 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:42.005442 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:42.005453 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:42.005457 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:42.005460 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:42.005463 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:42.005466 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:42.005470 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:42.005482 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:42.005488 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:42.016483 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:42.016545 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:42.016610 LLDP, length 82 [|LLDP] 18:54:42.016613 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11b6 8730 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:42.016615 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:42.016628 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:42.016633 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:42.016637 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:42.016651 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:42.016661 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:42.016683 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:42.016689 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:42.016694 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:42.016697 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:42.016703 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:42.024717 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:42.024781 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:42.024838 LLDP, length 82 [|LLDP] 18:54:42.024840 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11bc d3fc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:42.024843 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:42.024854 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:42.024858 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:42.024862 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:42.024876 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:42.024885 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:42.024906 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:42.024912 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:42.024916 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:42.024918 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:42.024924 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:42.035744 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:42.035793 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:42.035850 LLDP, length 82 [|LLDP] 18:54:42.035853 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11c5 3a63 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:42.035856 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:42.035867 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:42.035871 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:42.035879 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:42.035896 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:42.035902 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:42.035906 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:42.035908 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:42.035912 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:42.035926 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:42.035934 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:42.046726 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:42.046771 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:42.046818 LLDP, length 82 [|LLDP] 18:54:42.046820 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11cd a0d1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:42.046823 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:42.046834 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:42.046838 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:42.046841 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:42.046855 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:42.046862 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:42.046878 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:42.046884 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:42.046888 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:42.046890 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:42.046896 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:42.054986 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:42.055044 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:42.055098 LLDP, length 82 [|LLDP] 18:54:42.055100 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11d3 ed96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:42.055103 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:42.055111 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:42.055130 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:42.055137 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:42.055142 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:42.055144 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:42.055153 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:42.055157 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:42.055161 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:42.055175 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:42.055183 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:42.065987 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:42.066035 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:42.066083 LLDP, length 82 [|LLDP] 18:54:42.066085 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11dc 53fd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:42.066088 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:42.066098 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:42.066102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:42.066106 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:42.066114 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:42.066131 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:42.066137 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:42.066141 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:42.066143 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:42.066156 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:42.066162 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:42.076994 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:42.077038 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:42.077084 LLDP, length 82 [|LLDP] 18:54:42.077086 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11e4 ba63 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:42.077089 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:42.077098 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:42.077102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:42.077106 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:42.077118 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:42.077125 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:42.077143 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:42.077148 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:42.077152 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:42.077154 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:42.077160 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:42.085280 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:42.085334 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:42.085386 LLDP, length 82 [|LLDP] 18:54:42.085388 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11eb 0734 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:42.085391 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:42.085403 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:42.085409 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:42.085427 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:42.085432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:42.085436 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:42.085438 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:42.085442 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:42.085445 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:42.085458 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:42.085465 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:42.096269 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:42.096318 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:42.096366 LLDP, length 82 [|LLDP] 18:54:42.096368 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11f3 6d96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:42.096371 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:42.096382 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:42.096386 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:42.096389 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:42.096403 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:42.096410 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:42.096427 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:42.096433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:42.096436 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:42.096439 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:42.096444 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:42.104470 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:42.104493 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:42.104512 LLDP, length 82 [|LLDP] 18:54:42.104513 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11f9 ba64 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:42.104516 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:42.104521 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:42.104525 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:42.104528 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:42.104540 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:42.104546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:42.104556 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:42.104561 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:42.104564 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:42.104566 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:42.104571 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:42.115478 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:42.115499 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:42.115517 LLDP, length 82 [|LLDP] 18:54:42.115519 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1202 20ca 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:42.115521 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:42.115527 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:42.115530 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:42.115536 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:42.115545 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:42.115550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:42.115553 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:42.115554 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:42.115558 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:42.115569 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:42.115575 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:42.126487 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:42.126508 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:42.126526 LLDP, length 82 [|LLDP] 18:54:42.126528 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 120a 8731 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:42.126530 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:42.126536 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:42.126539 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:42.126542 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:42.126553 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:42.126559 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:42.126569 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:42.126574 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:42.126577 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:42.126579 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:42.126583 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:42.134740 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:42.134760 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:42.134776 LLDP, length 82 [|LLDP] 18:54:42.134778 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1210 d3fd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:42.134780 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:42.134785 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:42.134794 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:42.134799 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:42.134802 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:42.134804 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:42.134808 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:42.134812 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:42.134815 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:42.134827 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:42.134833 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:42.145750 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:42.145768 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:42.145784 LLDP, length 82 [|LLDP] 18:54:42.145785 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1219 3a64 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:42.145787 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:42.145793 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:42.145797 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:42.145800 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:42.145805 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:42.145814 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:42.145818 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:42.145821 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:42.145823 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:42.145834 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:42.145840 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:42.156760 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:42.156777 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:42.156793 LLDP, length 82 [|LLDP] 18:54:42.156795 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1221 a0cb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:42.156797 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:42.156802 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:42.156806 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:42.156810 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:42.156822 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:42.156828 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:42.156836 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:42.156840 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:42.156843 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:42.156845 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:42.156850 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:42.165020 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:42.165038 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:42.165055 LLDP, length 82 [|LLDP] 18:54:42.165056 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1227 ed9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:42.165058 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:42.165064 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:42.165069 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:42.165077 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:42.165082 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:42.165084 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:42.165087 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:42.165091 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:42.165094 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:42.165106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:42.165111 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:42.176028 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:42.176046 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:42.176062 LLDP, length 82 [|LLDP] 18:54:42.176063 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1230 53fd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:42.176065 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:42.176070 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:42.176074 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:42.176077 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:42.176088 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:42.176094 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:42.176103 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:42.176107 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:42.176110 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:42.176112 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:42.176117 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:42.184285 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:42.184303 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:42.184318 LLDP, length 82 [|LLDP] 18:54:42.184320 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1236 a0ca 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:42.184322 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:42.184327 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:42.184330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:42.184333 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:42.184345 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:42.184350 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:42.184358 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:42.184362 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:42.184365 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:42.184368 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:42.184372 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:42.195293 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:42.195310 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:42.195326 LLDP, length 82 [|LLDP] 18:54:42.195328 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 123f 0731 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:42.195329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:42.195335 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:42.195339 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:42.195344 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:42.195353 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:42.195358 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:42.195360 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:42.195362 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:42.195366 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:42.195377 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:42.195383 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:42.206305 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:42.206324 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:42.206340 LLDP, length 82 [|LLDP] 18:54:42.206342 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1247 6d97 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:42.206344 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:42.206349 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:42.206353 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:42.206356 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:42.206367 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:42.206373 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:42.206382 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:42.206386 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:42.206389 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:42.206391 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:42.206395 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:42.214561 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:42.214580 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:42.214597 LLDP, length 82 [|LLDP] 18:54:42.214598 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 124d ba64 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:42.214600 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:42.214606 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:42.214615 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:42.214620 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:42.214622 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:42.214624 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:42.214629 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:42.214632 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:42.214636 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:42.214647 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:42.214653 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:42.225572 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:42.225592 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:42.225609 LLDP, length 82 [|LLDP] 18:54:42.225611 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1256 20ca 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:42.225612 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:42.225618 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:42.225622 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:42.225625 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:42.225630 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:42.225639 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:42.225644 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:42.225647 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:42.225649 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:42.225660 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:42.225666 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:42.236586 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:42.236606 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:42.236624 LLDP, length 82 [|LLDP] 18:54:42.236625 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 125e 8730 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:42.236628 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:42.236633 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:42.236637 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:42.236640 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:42.236651 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:42.236657 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:42.236667 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:42.236671 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:42.236674 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:42.236676 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:42.236680 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:42.244840 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:42.244858 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:42.244874 LLDP, length 82 [|LLDP] 18:54:42.244876 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1264 d3fd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:42.244877 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:42.244882 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:42.244888 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:42.244897 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:42.244901 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:42.244904 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:42.244906 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:42.244910 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:42.244913 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:42.244925 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:42.244930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:42.255848 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:42.255865 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:42.255881 LLDP, length 82 [|LLDP] 18:54:42.255883 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 126d 3a63 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:42.255885 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:42.255890 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:42.255893 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:42.255897 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:42.255909 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:42.255914 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:42.255923 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:42.255927 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:42.255930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:42.255932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:42.255937 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:44.984893 LLDP, length 230: dentlab-infra2 tcpdump: verbose output suppressed, use -v or -vv for full protocol decode listening on swp33, link-type EN10MB (Ethernet), capture size 262144 bytes 8971 packets captured 8972 packets received by filter 0 packets dropped by kernel 599 packets dropped by interface INFO DENT:Logger.py:84 [DENT infrastructure 2] Ran timeout --preserve-status 15 tcpdump -i swp33 -n on infra2 with rc 0 and out 18:54:36.277515 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.277602 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.277650 LLDP, length 82 [|LLDP] 18:54:36.277653 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 009c 06ed 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.277656 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.277668 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.277672 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.277680 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.277693 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.277700 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.277735 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.277739 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.277746 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.277748 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.277754 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.285714 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.285747 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.285776 LLDP, length 82 [|LLDP] 18:54:36.285778 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00a2 53b9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.285780 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.285788 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.285791 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.285797 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.285823 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.285827 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.285831 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.285843 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.285849 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.285852 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.285857 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.296719 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.296749 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.296774 LLDP, length 82 [|LLDP] 18:54:36.296776 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00aa ba20 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.296778 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.296785 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.296789 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.296792 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.296804 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.296811 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.296833 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.296837 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.296843 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.296845 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.296849 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.304978 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.305005 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.305027 LLDP, length 82 [|LLDP] 18:54:36.305029 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00b1 06ec 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.305031 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.305038 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.305059 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.305063 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.305069 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.305072 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.305076 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.305088 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.305093 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.305095 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.305100 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.315986 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.316006 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.316029 LLDP, length 82 [|LLDP] 18:54:36.316031 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00b9 6d53 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.316034 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.316040 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.316043 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.316047 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.316052 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.316075 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.316078 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.316091 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.316096 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.316099 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.316103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.327000 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.327020 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.327040 LLDP, length 82 [|LLDP] 18:54:36.327042 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00c1 d3ba 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.327044 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.327050 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.327053 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.327057 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.327068 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.327074 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.327095 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.327099 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.327103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.327106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.327110 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.335251 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.335277 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.335298 LLDP, length 82 [|LLDP] 18:54:36.335300 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00c8 2087 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.335302 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.335308 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.335314 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.335324 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.335327 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.335331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.335334 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.335346 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.335351 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.335354 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.335359 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.346261 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.346286 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.346309 LLDP, length 82 [|LLDP] 18:54:36.346311 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00d0 86ed 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.346313 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.346319 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.346323 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.346326 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.346338 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.346343 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.346355 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.346358 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.346362 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.346364 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.346369 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.357270 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.357296 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.357319 LLDP, length 82 [|LLDP] 18:54:36.357321 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00d8 ed54 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.357323 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.357329 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.357333 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.357336 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.357348 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.357354 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.357364 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.357367 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.357372 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.357374 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.357379 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.365530 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.365549 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.365571 LLDP, length 82 [|LLDP] 18:54:36.365573 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00df 3a21 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.365575 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.365581 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.365584 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.365591 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.365601 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.365604 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.365608 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.365620 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.365625 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.365627 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.365631 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.376544 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.376570 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.376592 LLDP, length 82 [|LLDP] 18:54:36.376593 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00e7 a087 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.376595 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.376601 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.376605 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.376609 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.376620 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.376626 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.376636 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.376640 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.376644 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.376646 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.376651 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.384794 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.384820 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.384842 LLDP, length 82 [|LLDP] 18:54:36.384844 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00ed ed55 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.384846 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.384852 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.384861 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.384865 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.384870 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.384874 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.384877 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.384889 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.384894 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.384896 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.384901 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.395803 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.395828 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.395850 LLDP, length 82 [|LLDP] 18:54:36.395851 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00f6 53bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.395854 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.395860 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.395864 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.395867 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.395872 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.395882 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.395886 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.395898 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.395903 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.395905 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.395910 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.406814 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.406839 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.406862 LLDP, length 82 [|LLDP] 18:54:36.406864 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00fe ba21 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.406865 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.406871 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.406875 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.406879 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.406891 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.406897 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.406908 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.406911 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.406915 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.406917 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.406922 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.415081 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.415115 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.415146 LLDP, length 82 [|LLDP] 18:54:36.415148 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0105 06ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.415150 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.415158 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.415164 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.415177 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.415180 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.415184 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.415187 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.415200 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.415205 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.415208 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.415213 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.426093 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.426119 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.426152 LLDP, length 82 [|LLDP] 18:54:36.426154 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 010d 6d54 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.426156 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.426163 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.426167 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.426171 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.426183 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.426189 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.426202 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.426205 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.426209 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.426212 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.426217 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.437100 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.437133 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.437160 LLDP, length 82 [|LLDP] 18:54:36.437162 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0115 d3ba 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.437164 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.437171 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.437175 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.437179 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.437191 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.437197 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.437208 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.437211 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.437216 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.437218 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.437228 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.445353 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.445388 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.445416 LLDP, length 82 [|LLDP] 18:54:36.445418 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 011c 2087 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.445420 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.445427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.445431 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.445437 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.445447 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.445450 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.445454 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.445466 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.445471 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.445474 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.445479 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.456364 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.456392 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.456417 LLDP, length 82 [|LLDP] 18:54:36.456418 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0124 86ed 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.456420 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.456427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.456431 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.456434 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.456446 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.456452 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.456463 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.456467 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.456471 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.456473 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.456478 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.467376 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.467407 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.467433 LLDP, length 82 [|LLDP] 18:54:36.467435 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 012c ed54 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.467437 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.467443 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.467455 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.467459 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.467465 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.467468 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.467472 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.467484 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.467489 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.467491 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.467496 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.475642 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.475687 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.475717 LLDP, length 82 [|LLDP] 18:54:36.475719 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0133 3a20 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.475721 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.475728 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.475732 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.475735 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.475742 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.475754 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.475758 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.475770 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.475780 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.475782 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.475787 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.486640 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.486663 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.486692 LLDP, length 82 [|LLDP] 18:54:36.486694 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 013b a08e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.486696 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.486703 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.486707 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.486710 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.486723 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.486729 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.486741 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.486744 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.486748 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.486751 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.486755 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.494906 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.494932 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.494956 LLDP, length 82 [|LLDP] 18:54:36.494957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0141 ed53 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.494959 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.494966 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.494973 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.494984 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.494988 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.494991 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.494995 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.495021 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.495027 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.495029 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.495034 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.505914 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.505943 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.505966 LLDP, length 82 [|LLDP] 18:54:36.505968 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 014a 53ba 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.505970 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.505977 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.505980 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.505984 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.505996 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.506002 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.506014 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.506017 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.506022 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.506024 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.506028 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.516917 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.516943 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.516967 LLDP, length 82 [|LLDP] 18:54:36.516969 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0152 ba20 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.516971 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.516978 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.516981 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.516985 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.516997 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.517003 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.517013 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.517016 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.517021 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.517024 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.517028 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.525170 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.525195 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.525217 LLDP, length 82 [|LLDP] 18:54:36.525219 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0159 06ed 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.525221 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.525228 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.525231 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.525237 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.525249 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.525251 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.525255 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.525267 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.525272 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.525275 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.525279 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.536183 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.536208 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.536230 LLDP, length 82 [|LLDP] 18:54:36.536231 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0161 6d53 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.536233 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.536240 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.536243 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.536247 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.536258 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.536264 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.536275 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.536277 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.536282 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.536284 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.536289 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.547191 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.547215 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.547236 LLDP, length 82 [|LLDP] 18:54:36.547238 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0169 d3ba 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.547249 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.547256 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.547268 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.547271 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.547277 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.547281 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.547284 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.547297 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.547301 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.547304 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.547308 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.555450 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.555475 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.555495 LLDP, length 82 [|LLDP] 18:54:36.555497 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0170 2086 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.555498 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.555504 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.555507 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.555511 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.555517 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.555533 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.555536 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.555549 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.555554 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.555556 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.555560 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.566463 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.566489 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.566511 LLDP, length 82 [|LLDP] 18:54:36.566513 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0178 86ec 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.566515 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.566521 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.566524 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.566533 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.566545 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.566550 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.566562 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.566565 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.566570 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.566572 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.566576 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.574720 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.574747 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.574770 LLDP, length 82 [|LLDP] 18:54:36.574772 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 017e d3ba 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.574774 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.574780 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.574785 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.574795 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.574799 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.574803 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.574807 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.574818 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.574823 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.574826 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.574830 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.585727 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.585755 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.585779 LLDP, length 82 [|LLDP] 18:54:36.585781 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0187 3a21 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.585783 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.585789 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.585792 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.585796 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.585808 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.585814 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.585825 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.585828 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.585832 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.585834 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.585839 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.596751 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.596779 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.596809 LLDP, length 82 [|LLDP] 18:54:36.596811 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 018f a086 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.596813 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.596820 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.596824 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.596827 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.596839 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.596845 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.596857 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.596860 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.596865 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.596868 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.596872 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.605001 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.605029 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.605059 LLDP, length 82 [|LLDP] 18:54:36.605061 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0195 ed5a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.605063 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.605069 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.605072 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.605078 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.605090 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.605094 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.605097 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.605110 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.605115 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.605117 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.605122 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.616008 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.616033 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.616055 LLDP, length 82 [|LLDP] 18:54:36.616057 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 019e 53bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.616059 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.616069 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.616073 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.616076 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.616089 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.616095 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.616106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.616109 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.616113 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.616115 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.616120 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.627018 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.627036 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.627058 LLDP, length 82 [|LLDP] 18:54:36.627060 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01a6 ba20 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.627063 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.627068 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.627078 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.627082 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.627092 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.627096 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.627099 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.627112 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.627117 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.627119 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.627124 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.635270 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.635295 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.635317 LLDP, length 82 [|LLDP] 18:54:36.635319 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01ad 06ed 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.635321 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.635327 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.635331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.635334 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.635339 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.635350 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.635353 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.635364 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.635370 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.635372 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.635377 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.646279 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.646305 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.646328 LLDP, length 82 [|LLDP] 18:54:36.646330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01b5 6d54 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.646332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.646337 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.646341 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.646345 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.646356 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.646361 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.646372 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.646375 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.646379 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.646382 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.646386 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.657305 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.657336 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.657366 LLDP, length 82 [|LLDP] 18:54:36.657368 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01bd d3ba 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.657370 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.657379 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.657394 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.657406 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.657410 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.657413 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.657417 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.657430 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.657436 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.657438 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.657443 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.665559 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.665591 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.665618 LLDP, length 82 [|LLDP] 18:54:36.665619 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01c4 2087 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.665621 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.665629 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.665633 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.665636 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.665649 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.665655 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.665667 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.665670 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.665675 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.665677 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.665681 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.676574 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.676611 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.676641 LLDP, length 82 [|LLDP] 18:54:36.676644 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01cc 86ed 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.676646 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.676653 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.676657 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.676660 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.676672 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.676679 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.676692 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.676695 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.676700 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.676703 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.676707 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.684819 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.684846 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.684872 LLDP, length 82 [|LLDP] 18:54:36.684874 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01d2 d3ba 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.684876 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.684881 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.684885 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.684891 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.684906 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.684909 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.684913 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.684925 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.684930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.684932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.684937 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.695830 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.695857 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.695883 LLDP, length 82 [|LLDP] 18:54:36.695884 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01db 3a20 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.695887 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.695893 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.695897 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.695900 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.695917 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.695923 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.695934 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.695937 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.695941 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.695943 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.695948 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.706839 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.706866 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.706890 LLDP, length 82 [|LLDP] 18:54:36.706892 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01e3 a086 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.706894 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.706900 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.706910 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.706913 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.706919 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.706923 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.706926 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.706938 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.706948 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.706951 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.706955 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.715101 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.715126 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.715149 LLDP, length 82 [|LLDP] 18:54:36.715151 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01e9 ed53 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.715153 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.715158 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.715162 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.715165 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.715171 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.715181 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.715184 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.715197 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.715202 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.715205 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.715209 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.726101 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.726124 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.726146 LLDP, length 82 [|LLDP] 18:54:36.726148 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01f2 53b9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.726150 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.726156 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.726159 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.726163 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.726174 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.726181 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.726191 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.726194 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.726198 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.726201 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.726205 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.737129 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.737151 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.737177 LLDP, length 82 [|LLDP] 18:54:36.737179 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01fa ba27 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.737181 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.737189 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.737194 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.737205 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.737209 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.737213 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.737216 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.737228 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.737234 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.737236 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.737241 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.745377 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.745403 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.745425 LLDP, length 82 [|LLDP] 18:54:36.745426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0201 06ed 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.745428 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.745435 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.745439 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.745443 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.745455 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.745460 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.745471 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.745474 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.745478 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.745481 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.745485 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.756397 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.756423 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.756451 LLDP, length 82 [|LLDP] 18:54:36.756453 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0209 6d53 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.756455 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.756462 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.756466 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.756469 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.756481 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.756488 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.756499 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.756503 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.767424 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.767463 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.767495 LLDP, length 82 [|LLDP] 18:54:36.767498 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0211 d3b9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.767500 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.767509 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.767513 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.767520 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.767534 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.767538 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.767542 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.767546 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.767558 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.767561 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.767566 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.775682 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.775712 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.775743 LLDP, length 82 [|LLDP] 18:54:36.775745 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0218 2086 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.775747 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.775754 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.775758 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.775761 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.775773 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.775780 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.775793 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.775798 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.775801 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.775803 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.775809 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.786670 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.786704 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.786733 LLDP, length 82 [|LLDP] 18:54:36.786735 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0220 86ec 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.786737 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.786744 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.786756 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.786762 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.786765 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.786770 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.786774 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.786778 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.786790 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.786793 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.786798 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.794932 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.794962 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.794987 LLDP, length 82 [|LLDP] 18:54:36.794988 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0226 d3b9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.794990 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.794997 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.795001 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.795009 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.795014 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.795026 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.795031 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.795034 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.795046 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.795049 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.795055 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.805947 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.805973 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.806000 LLDP, length 82 [|LLDP] 18:54:36.806002 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 022f 3a20 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.806004 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.806011 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.806015 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.806019 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.806030 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.806036 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.806049 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.806055 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.806058 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.806061 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.806065 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.816954 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.816981 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.817009 LLDP, length 82 [|LLDP] 18:54:36.817011 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0237 a087 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.817013 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.817020 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.817026 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.817038 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.817043 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.817046 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.817051 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.817054 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.817066 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.817069 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.817074 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.825208 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.825229 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.825253 LLDP, length 82 [|LLDP] 18:54:36.825255 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 023d ed53 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.825257 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.825263 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.825267 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.825270 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.825283 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.825288 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.825299 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.825304 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.825307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.825309 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.825314 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.836204 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.836230 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.836253 LLDP, length 82 [|LLDP] 18:54:36.836255 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0246 53ba 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.836257 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.836263 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.836267 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.836270 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.836282 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.836288 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.836298 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.836303 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.836305 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.836307 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.836312 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.847214 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.847240 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.847261 LLDP, length 82 [|LLDP] 18:54:36.847263 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 024e ba20 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.847265 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.847271 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.847274 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.847279 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.847290 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.847294 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.847297 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.847301 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.847313 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.847315 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.847320 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.855483 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.855502 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.855524 LLDP, length 82 [|LLDP] 18:54:36.855526 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0255 06f3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.855527 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.855534 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.855537 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.855549 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.855559 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.855570 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.855575 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.855578 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.855579 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.866487 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.866505 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.866526 LLDP, length 82 [|LLDP] 18:54:36.866528 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 025d 6d54 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.866530 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.866536 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.866542 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.866552 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.866557 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.866560 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.866562 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.866565 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.866574 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.866586 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.866592 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.874738 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.874767 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.874787 LLDP, length 82 [|LLDP] 18:54:36.874789 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0263 ba21 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.874791 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.874797 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.874801 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.874805 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.874816 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.874822 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.874832 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.874837 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.874840 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.874842 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.874850 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.885753 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.885780 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.885805 LLDP, length 82 [|LLDP] 18:54:36.885807 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 026c 2087 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.885808 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.885815 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.885818 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.885822 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.885834 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.885840 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.885852 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.885856 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.885859 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.885861 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.885867 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.896758 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.896783 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.896804 LLDP, length 82 [|LLDP] 18:54:36.896806 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0274 86ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.896808 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.896814 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.896818 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.896823 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.896834 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.896838 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.896841 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.896843 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.896847 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.896858 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.896864 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.905014 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.905039 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.905059 LLDP, length 82 [|LLDP] 18:54:36.905060 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 027a d3bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.905062 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.905068 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.905072 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.905075 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.905087 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.905093 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.905103 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.905108 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.905111 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.905113 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.905118 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.916027 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.916051 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.916071 LLDP, length 82 [|LLDP] 18:54:36.916072 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0283 3a21 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.916074 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.916080 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.916090 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.916094 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.916098 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.916100 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.916105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.916108 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.916112 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.916123 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.916128 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.927039 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.927056 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.927077 LLDP, length 82 [|LLDP] 18:54:36.927079 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 028b a087 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.927081 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.927087 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.927091 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.927094 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.927100 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.927110 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.927114 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.927117 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.927119 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.927130 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.927136 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.935291 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.935314 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.935345 LLDP, length 82 [|LLDP] 18:54:36.935347 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0291 ed55 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.935349 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.935355 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.935358 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.935362 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.935374 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.935380 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.935390 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.935394 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.935397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.935399 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.935404 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.946301 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.946328 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.946348 LLDP, length 82 [|LLDP] 18:54:36.946349 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 029a 53bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.946352 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.946357 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.946363 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.946373 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.946378 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.946381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.946383 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.946387 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.946390 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.946403 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.946408 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.957308 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.957332 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.957352 LLDP, length 82 [|LLDP] 18:54:36.957354 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02a2 ba20 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.957356 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.957361 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.957365 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.957368 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.957381 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.957386 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.957396 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.957401 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.957404 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.957406 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.957410 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.965568 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.965591 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.965610 LLDP, length 82 [|LLDP] 18:54:36.965612 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02a9 06ee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.965614 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.965619 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.965623 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.965626 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.965638 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.965643 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.965654 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.965658 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.965661 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.965663 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.965667 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.976578 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.976602 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.976621 LLDP, length 82 [|LLDP] 18:54:36.976623 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02b1 6d54 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.976625 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.976630 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.976634 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.976639 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.976650 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.976654 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.976657 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.976659 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.976663 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.976674 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.976680 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.984836 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.984860 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.984881 LLDP, length 82 [|LLDP] 18:54:36.984883 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02b7 ba21 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.984884 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.984890 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.984894 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.984897 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.984908 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.984914 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.984925 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.984929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.984932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.984934 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.984939 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:36.995846 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:36.995870 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.995892 LLDP, length 82 [|LLDP] 18:54:36.995894 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02c0 2086 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:36.995895 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:36.995901 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:36.995911 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:36.995916 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.995919 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:36.995921 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:36.995926 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:36.995929 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:36.995933 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:36.995945 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:36.995950 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.006854 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.006877 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.006897 LLDP, length 82 [|LLDP] 18:54:37.006899 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02c8 86ed 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.006901 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.006906 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.006910 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.006914 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.006919 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.006929 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.006934 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.006937 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.006939 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.006950 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.006956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.015173 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.015224 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.015274 LLDP, length 82 [|LLDP] 18:54:37.015277 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02ce d3ba 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.015280 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.015290 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.015294 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.015298 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.015310 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.015319 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.015337 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.015342 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.015346 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.015348 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.015354 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.026180 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.026230 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.026282 LLDP, length 82 [|LLDP] 18:54:37.026284 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02d7 3a25 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.026287 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.026299 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.026307 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.026325 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.026331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.026335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.026337 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.026341 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.026345 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.026358 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.026365 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.037201 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.037252 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.037303 LLDP, length 82 [|LLDP] 18:54:37.037306 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02df a087 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.037308 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.037319 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.037323 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.037327 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.037340 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.037348 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.037366 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.037372 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.037376 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.037378 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.037384 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.045455 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.045507 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.045558 LLDP, length 82 [|LLDP] 18:54:37.045560 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02e5 ed53 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.045563 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.045574 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.045578 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.045582 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.045595 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.045602 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.045620 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.045626 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.045630 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.045632 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.045638 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.056474 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.056526 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.056578 LLDP, length 82 [|LLDP] 18:54:37.056580 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02ee 53ba 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.056583 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.056594 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.056598 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.056606 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.056624 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.056631 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.056634 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.056637 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.056641 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.056654 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.056661 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.064717 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.064767 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.064818 LLDP, length 82 [|LLDP] 18:54:37.064820 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02f4 a086 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.064823 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.064835 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.064839 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.064843 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.064856 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.064865 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.064883 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.064888 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.064892 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.064895 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.064900 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.075757 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.075811 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.075864 LLDP, length 82 [|LLDP] 18:54:37.075867 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02fd 06ed 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.075870 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.075879 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.075897 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.075906 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.075910 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.075912 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.075922 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.075925 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.075929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.075942 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.075950 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.086735 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.086787 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.086839 LLDP, length 82 [|LLDP] 18:54:37.086842 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0305 6d53 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.086844 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.086855 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.086859 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.086862 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.086871 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.086889 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.086894 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.086899 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.086901 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.086914 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.086921 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.094996 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.095045 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.095094 LLDP, length 82 [|LLDP] 18:54:37.095096 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 030b ba20 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.095098 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.095109 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.095113 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.095117 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.095130 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.095138 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.095155 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.095161 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.095164 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.095166 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.095172 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.105948 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.105975 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.106000 LLDP, length 82 [|LLDP] 18:54:37.106002 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0314 208c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.106004 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.106010 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.106016 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.106026 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.106031 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.106034 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.106036 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.106040 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.106043 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.106055 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.106061 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.116959 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.116982 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.117003 LLDP, length 82 [|LLDP] 18:54:37.117005 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 031c 86ec 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.117006 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.117012 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.117016 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.117020 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.117031 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.117037 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.117048 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.117052 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.117056 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.117058 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.117063 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.125212 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.125234 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.125255 LLDP, length 82 [|LLDP] 18:54:37.125257 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0322 d3b9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.125259 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.125264 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.125268 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.125272 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.125283 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.125290 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.125299 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.125304 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.125307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.125309 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.125313 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.136220 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.136243 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.136263 LLDP, length 82 [|LLDP] 18:54:37.136264 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 032b 3a20 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.136266 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.136272 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.136275 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.136281 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.136291 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.136311 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.136315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.136318 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.136321 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.136335 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.136341 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.147268 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.147309 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.147343 LLDP, length 82 [|LLDP] 18:54:37.147345 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0333 a086 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.147347 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.147359 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.147363 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.147366 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.147379 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.147386 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.147401 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.147407 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.147411 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.147413 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.147418 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.155515 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.155543 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.155578 LLDP, length 82 [|LLDP] 18:54:37.155580 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0339 ed53 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.155581 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.155587 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.155599 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.155606 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.155609 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.155611 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.155618 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.155622 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.155626 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.155638 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.155643 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.166508 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.166538 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.166564 LLDP, length 82 [|LLDP] 18:54:37.166566 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0342 53db 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.166568 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.166575 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.166579 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.166583 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.166589 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.166600 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.166604 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.166608 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.166610 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.166622 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.166628 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.174767 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.174794 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.174819 LLDP, length 82 [|LLDP] 18:54:37.174821 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0348 a0a8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.174823 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.174829 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.174833 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.174837 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.174848 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.174855 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.174866 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.174870 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.174874 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.174876 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.174881 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.185777 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.185805 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.185827 LLDP, length 82 [|LLDP] 18:54:37.185829 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0351 070f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.185831 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.185838 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.185843 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.185854 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.185859 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.185862 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.185864 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.185868 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.185871 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.185883 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.185889 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.196789 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.196809 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.196833 LLDP, length 82 [|LLDP] 18:54:37.196835 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0359 6d7c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.196837 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.196844 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.196848 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.196852 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.196864 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.196870 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.196881 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.196885 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.196889 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.196891 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.196896 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.205040 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.205067 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.205088 LLDP, length 82 [|LLDP] 18:54:37.205090 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 035f ba42 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.205092 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.205099 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.205102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.205106 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.205118 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.205128 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.205138 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.205143 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.205146 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.205148 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.205153 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.216054 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.216080 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.216104 LLDP, length 82 [|LLDP] 18:54:37.216106 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0368 20a9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.216108 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.216115 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.216119 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.216125 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.216136 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.216140 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.216144 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.216146 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.216149 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.216165 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.216171 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.227072 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.227103 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.227128 LLDP, length 82 [|LLDP] 18:54:37.227130 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0370 8710 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.227132 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.227139 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.227144 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.227147 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.227168 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.227175 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.227192 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.227196 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.227200 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.227202 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.227207 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.235318 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.235348 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.235372 LLDP, length 82 [|LLDP] 18:54:37.235374 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0376 d3dd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.235376 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.235382 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.235393 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.235398 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.235401 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.235404 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.235409 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.235412 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.235416 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.235428 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.235433 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.246325 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.246356 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.246378 LLDP, length 82 [|LLDP] 18:54:37.246380 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 037f 3a42 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.246382 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.246388 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.246392 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.246395 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.246401 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.246412 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.246416 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.246419 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.246422 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.246434 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.246439 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.257340 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.257367 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.257389 LLDP, length 82 [|LLDP] 18:54:37.257391 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0387 a0a9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.257393 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.257399 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.257403 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.257407 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.257419 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.257425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.257435 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.257440 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.257443 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.257445 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.257450 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.265594 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.265610 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.265629 LLDP, length 82 [|LLDP] 18:54:37.265631 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 038d ed76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.265633 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.265639 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.265644 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.265654 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.265658 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.265661 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.265663 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.265668 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.265671 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.265683 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.265689 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.276603 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.276620 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.276636 LLDP, length 82 [|LLDP] 18:54:37.276639 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0396 53df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.276640 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.276646 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.276650 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.276654 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.276666 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.276671 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.276695 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.276700 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.276703 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.276705 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.276710 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.284857 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.284878 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.284898 LLDP, length 82 [|LLDP] 18:54:37.284899 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 039c a0a8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.284901 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.284906 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.284910 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.284914 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.284926 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.284932 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.284941 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.284946 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.284949 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.284951 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.284956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.295875 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.295893 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.295913 LLDP, length 82 [|LLDP] 18:54:37.295915 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03a5 070f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.295917 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.295923 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.295926 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.295932 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.295941 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.295946 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.295949 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.295951 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.295955 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.295967 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.295972 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.306877 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.306901 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.306922 LLDP, length 82 [|LLDP] 18:54:37.306923 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03ad 6d76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.306926 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.306932 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.306935 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.306939 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.306951 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.306956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.306965 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.306970 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.306973 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.306975 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.306979 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.315135 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.315157 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.315175 LLDP, length 82 [|LLDP] 18:54:37.315177 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03b3 ba42 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.315179 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.315185 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.315194 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.315199 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.315202 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.315204 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.315208 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.315212 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.315215 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.315228 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.315233 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.326146 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.326163 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.326182 LLDP, length 82 [|LLDP] 18:54:37.326183 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03bc 20a8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.326185 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.326191 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.326194 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.326198 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.326203 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.326213 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.326218 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.326221 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.326224 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.326235 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.326240 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.337152 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.337175 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.337195 LLDP, length 82 [|LLDP] 18:54:37.337196 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03c4 870f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.337198 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.337203 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.337207 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.337211 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.337222 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.337227 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.337237 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.337241 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.337244 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.337246 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.337251 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.345409 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.345431 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.345451 LLDP, length 82 [|LLDP] 18:54:37.345452 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03ca d3dc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.345454 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.345459 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.345464 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.345474 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.345478 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.345481 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.345483 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.345487 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.345490 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.345501 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.345507 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.356421 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.356443 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.356463 LLDP, length 82 [|LLDP] 18:54:37.356464 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03d3 3a42 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.356466 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.356472 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.356475 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.356479 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.356491 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.356497 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.356507 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.356511 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.356513 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.356515 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.356520 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.364678 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.364698 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.364717 LLDP, length 82 [|LLDP] 18:54:37.364718 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03d9 870e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.364720 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.364725 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.364729 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.364733 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.364745 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.364750 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.364759 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.364764 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.364767 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.364769 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.364773 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.375698 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.375713 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.375733 LLDP, length 82 [|LLDP] 18:54:37.375734 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03e1 ed74 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.375736 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.375742 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.375745 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.375750 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.375760 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.375765 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.375768 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.375770 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.375773 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.375784 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.375789 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.386698 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.386719 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.386737 LLDP, length 82 [|LLDP] 18:54:37.386739 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03ea 53db 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.386741 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.386746 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.386750 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.386753 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.386764 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.386770 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.386779 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.386784 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.386787 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.386789 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.386793 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.394954 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.394974 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.394992 LLDP, length 82 [|LLDP] 18:54:37.394994 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03f0 a0af 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.394996 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.395002 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.395011 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.395016 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.395019 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.395021 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.395026 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.395029 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.395033 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.395044 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.395050 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.405964 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.405987 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.406008 LLDP, length 82 [|LLDP] 18:54:37.406010 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03f9 070e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.406012 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.406017 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.406021 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.406025 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.406030 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.406040 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.406045 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.406047 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.406049 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.406061 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.406066 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.416975 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.416997 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.417016 LLDP, length 82 [|LLDP] 18:54:37.417017 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0401 6d75 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.417019 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.417025 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.417028 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.417032 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.417044 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.417049 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.417058 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.417063 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.417066 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.417068 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.417072 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.425230 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.425252 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.425271 LLDP, length 82 [|LLDP] 18:54:37.425272 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0407 ba41 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.425274 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.425280 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.425285 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.425295 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.425299 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.425302 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.425304 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.425308 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.425311 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.425323 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.425328 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.436245 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.436260 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.436279 LLDP, length 82 [|LLDP] 18:54:37.436280 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0410 20a8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.436283 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.436288 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.436291 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.436295 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.436306 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.436312 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.436321 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.436326 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.436329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.436331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.436335 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.447254 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.447276 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.447294 LLDP, length 82 [|LLDP] 18:54:37.447296 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0418 8714 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.447298 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.447304 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.447307 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.447311 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.447322 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.447328 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.447337 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.447342 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.447344 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.447346 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.447351 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.455510 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.455531 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.455549 LLDP, length 82 [|LLDP] 18:54:37.455551 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 041e d3db 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.455553 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.455558 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.455562 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.455567 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.455577 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.455582 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.455584 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.455587 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.455590 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.455602 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.455607 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.466520 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.466542 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.466560 LLDP, length 82 [|LLDP] 18:54:37.466561 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0427 3a42 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.466563 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.466569 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.466573 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.466577 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.466588 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.466594 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.466603 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.466608 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.466611 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.466613 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.466618 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.474778 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.474800 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.474818 LLDP, length 82 [|LLDP] 18:54:37.474820 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 042d 870f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.474822 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.474827 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.474837 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.474842 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.474845 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.474847 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.474851 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.474855 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.474859 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.474871 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.474876 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.485788 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.485808 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.485827 LLDP, length 82 [|LLDP] 18:54:37.485829 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0435 ed75 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.485831 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.485836 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.485840 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.485844 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.485849 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.485858 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.485863 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.485866 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.485868 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.485880 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.485885 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.496799 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.496822 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.496843 LLDP, length 82 [|LLDP] 18:54:37.496844 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 043e 53dc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.496846 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.496852 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.496855 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.496859 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.496871 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.496877 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.496887 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.496892 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.496894 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.496896 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.496901 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.505056 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.505078 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.505098 LLDP, length 82 [|LLDP] 18:54:37.505099 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0444 a0a8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.505101 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.505108 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.505113 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.505123 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.505128 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.505130 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.505132 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.505137 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.505140 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.505152 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.505157 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.516064 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.516087 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.516105 LLDP, length 82 [|LLDP] 18:54:37.516107 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 044d 070f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.516109 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.516115 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.516118 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.516122 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.516134 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.516139 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.516149 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.516154 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.516156 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.516159 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.516163 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.527074 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.527095 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.527113 LLDP, length 82 [|LLDP] 18:54:37.527115 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0455 6d78 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.527117 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.527123 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.527126 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.527130 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.527141 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.527146 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.527156 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.527161 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.527164 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.527166 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.527170 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.535331 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.535353 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.535373 LLDP, length 82 [|LLDP] 18:54:37.535375 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 045b ba42 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.535377 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.535382 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.535385 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.535392 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.535401 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.535406 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.535408 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.535410 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.535414 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.535426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.535432 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.546345 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.546366 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.546386 LLDP, length 82 [|LLDP] 18:54:37.546387 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0464 20a8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.546390 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.546395 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.546399 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.546402 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.546414 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.546420 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.546429 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.546433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.546437 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.546439 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.546443 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.557353 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.557376 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.557396 LLDP, length 82 [|LLDP] 18:54:37.557398 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 046c 870f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.557400 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.557405 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.557415 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.557420 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.557423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.557425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.557430 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.557433 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.557436 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.557448 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.557454 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.565611 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.565632 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.565651 LLDP, length 82 [|LLDP] 18:54:37.565653 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0472 d3dc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.565654 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.565660 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.565664 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.565667 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.565672 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.565682 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.565687 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.565689 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.565691 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.565703 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.565709 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.576618 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.576640 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.576659 LLDP, length 82 [|LLDP] 18:54:37.576661 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 047b 3a41 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.576662 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.576668 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.576671 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.576675 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.576687 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.576693 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.576702 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.576707 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.576709 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.576711 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.576716 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.584875 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.584895 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.584913 LLDP, length 82 [|LLDP] 18:54:37.584915 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0481 870e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.584916 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.584922 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.584927 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.584936 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.584941 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.584944 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.584946 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.584949 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.584953 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.584965 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.584970 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.595885 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.595910 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.595928 LLDP, length 82 [|LLDP] 18:54:37.595930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0489 ed75 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.595932 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.595937 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.595941 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.595944 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.595955 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.595961 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.595970 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.595975 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.595978 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.595980 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.595985 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.606899 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.606916 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.606936 LLDP, length 82 [|LLDP] 18:54:37.606938 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0492 53db 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.606940 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.606946 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.606949 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.606953 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.606965 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.606971 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.606981 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.606985 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.606988 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.606990 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.606994 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.615155 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.615171 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.615190 LLDP, length 82 [|LLDP] 18:54:37.615192 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0498 a0a7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.615194 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.615199 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.615203 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.615208 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.615217 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.615222 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.615225 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.615227 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.615230 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.615242 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.615247 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.626163 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.626185 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.626204 LLDP, length 82 [|LLDP] 18:54:37.626206 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04a1 070e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.626208 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.626214 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.626218 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.626221 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.626232 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.626238 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.626248 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.626252 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.626255 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.626257 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.626261 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.637173 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.637196 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.637215 LLDP, length 82 [|LLDP] 18:54:37.637216 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04a9 6d74 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.637218 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.637223 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.637234 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.637239 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.637241 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.637244 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.637249 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.637252 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.637256 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.637268 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.637273 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.645431 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.645453 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.645473 LLDP, length 82 [|LLDP] 18:54:37.645475 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04af ba48 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.645477 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.645482 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.645486 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.645490 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.645495 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.645505 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.645509 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.645512 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.645514 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.645526 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.645531 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.656442 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.656466 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.656486 LLDP, length 82 [|LLDP] 18:54:37.656487 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04b8 20a8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.656489 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.656495 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.656498 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.656502 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.656513 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.656519 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.656529 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.656534 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.656536 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.656538 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.656543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.664703 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.664719 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.664739 LLDP, length 82 [|LLDP] 18:54:37.664741 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04be 6d75 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.664743 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.664749 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.664754 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.664763 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.664767 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.664770 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.664772 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.664776 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.664779 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.664791 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.664796 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.675732 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.675759 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.675777 LLDP, length 82 [|LLDP] 18:54:37.675779 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04c6 d3dc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.675781 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.675786 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.675790 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.675793 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.675804 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.675810 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.675819 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.675824 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.675827 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.675829 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.675833 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.686722 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.686737 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.686755 LLDP, length 82 [|LLDP] 18:54:37.686757 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04cf 3a42 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.686759 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.686764 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.686768 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.686771 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.686782 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.686788 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.686798 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.686803 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.686806 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.686808 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.686812 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.694974 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.694995 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.695014 LLDP, length 82 [|LLDP] 18:54:37.695016 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04d5 870f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.695017 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.695023 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.695027 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.695032 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.695041 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.695046 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.695049 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.695051 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.695054 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.695066 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.695071 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.705985 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.706005 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.706024 LLDP, length 82 [|LLDP] 18:54:37.706026 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04dd ed75 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.706027 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.706033 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.706036 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.706040 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.706052 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.706057 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.706066 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.706071 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.706074 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.706076 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.706081 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.716997 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.717022 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.717041 LLDP, length 82 [|LLDP] 18:54:37.717043 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04e6 53dc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.717044 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.717050 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.717059 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.717064 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.717066 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.717069 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.717073 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.717077 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.717080 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.717093 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.717098 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.725255 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.725279 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.725301 LLDP, length 82 [|LLDP] 18:54:37.725303 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04ec a0a9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.725305 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.725311 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.725314 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.725318 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.725323 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.725335 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.725339 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.725342 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.725344 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.725355 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.725361 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.736265 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.736289 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.736309 LLDP, length 82 [|LLDP] 18:54:37.736310 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04f5 070f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.736312 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.736317 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.736321 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.736325 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.736336 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.736342 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.736351 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.736356 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.736359 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.736361 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.736365 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.747274 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.747295 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.747314 LLDP, length 82 [|LLDP] 18:54:37.747316 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04fd 6d76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.747318 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.747324 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.747329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.747339 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.747343 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.747346 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.747348 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.747351 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.747355 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.747367 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.747372 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.755529 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.755552 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.755571 LLDP, length 82 [|LLDP] 18:54:37.755572 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0503 ba42 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.755574 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.755580 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.755583 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.755587 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.755598 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.755604 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.755614 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.755618 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.755621 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.755623 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.755627 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.766559 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.766588 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.766612 LLDP, length 82 [|LLDP] 18:54:37.766614 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 050c 20a8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.766616 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.766623 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.766627 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.766630 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.766643 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.766649 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.766660 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.766665 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.766668 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.766670 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.766675 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.774811 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.774829 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.774850 LLDP, length 82 [|LLDP] 18:54:37.774852 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0512 6d75 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.774854 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.774860 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.774864 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.774869 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.774879 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.774884 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.774887 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.774889 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.774892 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.774905 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.774910 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.785810 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.785832 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.785851 LLDP, length 82 [|LLDP] 18:54:37.785853 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 051a d3db 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.785855 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.785860 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.785864 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.785867 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.785879 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.785885 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.785894 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.785898 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.785901 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.785904 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.785909 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.796826 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.796853 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.796876 LLDP, length 82 [|LLDP] 18:54:37.796877 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0523 3a42 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.796879 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.796885 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.796896 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.796901 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.796904 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.796907 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.796912 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.796915 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.796919 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.796930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.796936 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.805081 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.805103 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.805123 LLDP, length 82 [|LLDP] 18:54:37.805125 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0529 870e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.805127 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.805132 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.805136 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.805140 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.805145 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.805155 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.805159 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.805162 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.805164 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.805176 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.805181 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.816095 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.816124 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.816147 LLDP, length 82 [|LLDP] 18:54:37.816149 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0531 ed75 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.816151 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.816157 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.816160 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.816164 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.816176 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.816183 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.816193 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.816197 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.816200 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.816202 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.816206 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.827103 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.827131 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.827153 LLDP, length 82 [|LLDP] 18:54:37.827155 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 053a 53db 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.827157 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.827163 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.827169 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.827179 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.827183 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.827186 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.827188 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.827192 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.827195 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.827207 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.827213 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.835354 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.835377 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.835396 LLDP, length 82 [|LLDP] 18:54:37.835398 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0540 a0a8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.835400 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.835405 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.835408 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.835412 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.835424 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.835430 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.835439 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.835444 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.835447 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.835449 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.835454 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.846363 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.846386 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.846406 LLDP, length 82 [|LLDP] 18:54:37.846408 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0549 070e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.846410 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.846416 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.846419 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.846423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.846434 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.846440 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.846449 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.846454 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.846457 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.846459 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.846464 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.854622 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.854644 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.854664 LLDP, length 82 [|LLDP] 18:54:37.854666 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 054f 53db 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.854667 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.854673 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.854677 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.854682 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.854691 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.854696 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.854699 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.854701 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.854705 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.854716 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.854722 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.865629 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.865651 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.865669 LLDP, length 82 [|LLDP] 18:54:37.865671 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0557 ba41 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.865673 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.865678 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.865682 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.865685 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.865697 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.865703 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.865712 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.865716 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.865719 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.865722 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.865726 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.876641 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.876663 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.876682 LLDP, length 82 [|LLDP] 18:54:37.876684 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0560 20a7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.876685 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.876691 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.876701 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.876705 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.876708 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.876710 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.876715 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.876718 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.876722 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.876733 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.876739 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.884900 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.884920 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.884939 LLDP, length 82 [|LLDP] 18:54:37.884940 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0566 6d74 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.884942 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.884948 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.884951 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.884955 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.884960 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.884970 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.884974 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.884977 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.884979 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.884990 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.884996 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.895907 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.895929 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.895947 LLDP, length 82 [|LLDP] 18:54:37.895948 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 056e d3e2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.895950 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.895956 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.895959 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.895963 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.895975 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.895980 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.895990 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.895994 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.895997 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.895999 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.896004 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.906918 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.906939 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.906957 LLDP, length 82 [|LLDP] 18:54:37.906959 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0577 3a42 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.906961 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.906966 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.906971 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.906980 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.906985 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.906988 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.906990 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.906993 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.906997 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.907008 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.907013 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.915176 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.915198 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.915216 LLDP, length 82 [|LLDP] 18:54:37.915217 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 057d 870e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.915219 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.915224 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.915228 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.915232 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.915244 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.915249 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.915258 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.915263 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.915266 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.915268 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.915272 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.926186 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.926208 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.926228 LLDP, length 82 [|LLDP] 18:54:37.926229 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0585 ed75 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.926231 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.926237 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.926241 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.926244 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.926256 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.926262 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.926271 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.926276 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.926278 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.926281 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.926285 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.937195 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.937219 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.937237 LLDP, length 82 [|LLDP] 18:54:37.937239 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 058e 53dc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.937241 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.937247 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.937250 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.937256 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.937265 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.937270 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.937273 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.937275 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.937279 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.937290 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.937295 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.945456 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.945473 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.945492 LLDP, length 82 [|LLDP] 18:54:37.945494 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0594 a0a8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.945496 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.945502 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.945505 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.945509 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.945520 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.945526 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.945535 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.945540 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.945542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.945545 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.945549 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.956461 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.956484 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.956503 LLDP, length 82 [|LLDP] 18:54:37.956504 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 059d 070f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.956506 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.956512 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.956521 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.956525 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.956528 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.956530 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.956535 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.956538 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.956542 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.956554 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.956559 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.964717 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.964739 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.964758 LLDP, length 82 [|LLDP] 18:54:37.964760 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05a3 53dc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.964761 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.964767 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.964771 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.964774 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.964779 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.964788 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.964793 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.964795 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.964798 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.964810 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.964815 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.975730 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.975752 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.975771 LLDP, length 82 [|LLDP] 18:54:37.975773 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05ab ba43 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.975775 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.975781 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.975784 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.975788 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.975799 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.975805 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.975815 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.975819 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.975822 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.975824 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.975828 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.986740 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.986760 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.986779 LLDP, length 82 [|LLDP] 18:54:37.986780 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05b4 20a9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.986782 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.986788 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.986793 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.986802 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.986806 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.986809 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.986811 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.986815 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.986818 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.986830 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.986835 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:37.994996 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:37.995017 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.995035 LLDP, length 82 [|LLDP] 18:54:37.995037 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05ba 6d76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:37.995038 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:37.995044 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:37.995047 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:37.995051 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:37.995062 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:37.995068 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:37.995077 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:37.995081 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.995100 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:37.995103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:37.995109 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.006042 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.006078 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.006107 LLDP, length 82 [|LLDP] 18:54:38.006109 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05c2 d3dc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.006112 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.006122 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.006126 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.006130 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.006142 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.006151 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.006165 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.006171 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.006175 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.006177 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.006182 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.017022 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.017048 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.017071 LLDP, length 82 [|LLDP] 18:54:38.017073 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05cb 3a43 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.017075 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.017081 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.017084 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.017090 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.017101 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.017105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.017108 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.017111 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.017114 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.017126 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.017132 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.025274 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.025297 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.025315 LLDP, length 82 [|LLDP] 18:54:38.025317 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05d1 870f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.025319 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.025324 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.025328 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.025331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.025343 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.025349 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.025359 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.025363 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.025366 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.025369 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.025374 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.036282 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.036303 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.036321 LLDP, length 82 [|LLDP] 18:54:38.036323 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05d9 ed76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.036325 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.036331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.036340 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.036345 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.036348 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.036350 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.036355 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.036358 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.036362 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.036374 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.036380 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.047292 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.047312 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.047329 LLDP, length 82 [|LLDP] 18:54:38.047331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05e2 53dc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.047333 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.047338 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.047342 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.047345 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.047350 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.047360 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.047365 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.047367 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.047370 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.047382 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.047387 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.055552 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.055572 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.055590 LLDP, length 82 [|LLDP] 18:54:38.055592 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05e8 a0a9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.055594 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.055599 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.055603 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.055607 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.055618 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.055624 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.055633 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.055638 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.055641 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.055643 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.055659 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.066558 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.066578 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.066596 LLDP, length 82 [|LLDP] 18:54:38.066598 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05f1 070f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.066600 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.066605 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.066610 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.066620 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.066624 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.066627 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.066629 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.066633 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.066636 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.066648 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.066654 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.074815 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.074836 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.074853 LLDP, length 82 [|LLDP] 18:54:38.074854 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05f7 53dc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.074856 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.074862 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.074865 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.074869 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.074880 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.074886 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.074896 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.074900 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.074903 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.074905 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.074911 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.085828 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.085847 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.085865 LLDP, length 82 [|LLDP] 18:54:38.085866 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05ff ba42 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.085868 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.085873 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.085877 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.085881 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.085893 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.085898 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.085907 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.085912 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.085915 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.085917 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.085921 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.096908 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.096960 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.097012 LLDP, length 82 [|LLDP] 18:54:38.097014 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0608 20a8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.097017 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.097029 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.097033 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.097040 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.097057 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.097064 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.097068 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.097070 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.097074 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.097087 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.097093 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.105190 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.105243 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.105294 LLDP, length 82 [|LLDP] 18:54:38.105296 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 060e 6d75 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.105299 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.105309 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.105313 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.105317 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.105330 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.105338 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.105355 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.105361 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.105365 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.105367 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.105373 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.116163 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.116213 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.116263 LLDP, length 82 [|LLDP] 18:54:38.116265 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0616 d3db 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.116268 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.116275 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.116292 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.116300 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.116304 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.116306 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.116315 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.116318 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.116322 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.116335 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.116342 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.127116 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.127136 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.127154 LLDP, length 82 [|LLDP] 18:54:38.127155 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 061f 3a41 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.127157 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.127162 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.127166 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.127170 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.127175 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.127184 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.127189 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.127191 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.127194 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.127206 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.127211 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.135378 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.135400 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.135418 LLDP, length 82 [|LLDP] 18:54:38.135419 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0625 870e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.135421 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.135427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.135431 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.135435 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.135446 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.135452 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.135461 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.135466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.135469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.135471 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.135476 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.146395 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.146424 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.146449 LLDP, length 82 [|LLDP] 18:54:38.146450 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 062d ed7b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.146453 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.146460 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.146465 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.146476 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.146481 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.146484 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.146487 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.146490 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.146494 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.146506 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.146512 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.154647 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.154673 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.154693 LLDP, length 82 [|LLDP] 18:54:38.154695 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0634 3a41 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.154697 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.154702 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.154706 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.154709 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.154721 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.154727 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.154736 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.154741 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.154744 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.154746 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.154751 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.165657 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.165678 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.165697 LLDP, length 82 [|LLDP] 18:54:38.165698 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 063c a0a7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.165700 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.165706 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.165710 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.165713 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.165725 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.165731 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.165741 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.165745 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.165748 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.165750 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.165755 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.176665 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.176688 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.176708 LLDP, length 82 [|LLDP] 18:54:38.176709 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0645 070d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.176711 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.176717 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.176721 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.176726 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.176735 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.176740 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.176743 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.176745 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.176749 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.176761 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.176766 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.184918 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.184940 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.184958 LLDP, length 82 [|LLDP] 18:54:38.184960 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 064b 53df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.184962 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.184967 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.184971 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.184974 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.184986 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.184991 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.185001 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.185005 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.185008 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.185010 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.185014 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.195930 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.195951 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.195970 LLDP, length 82 [|LLDP] 18:54:38.195971 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0653 ba41 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.195973 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.195979 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.195989 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.195994 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.195996 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.195998 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.196003 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.196006 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.196010 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.196021 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.196027 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.206939 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.206960 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.206978 LLDP, length 82 [|LLDP] 18:54:38.206979 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 065c 20a8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.206981 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.206987 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.206991 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.206995 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.207000 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.207010 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.207014 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.207017 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.207019 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.207031 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.207036 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.215198 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.215219 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.215237 LLDP, length 82 [|LLDP] 18:54:38.215239 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0662 6d75 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.215241 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.215246 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.215250 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.215253 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.215264 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.215270 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.215279 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.215284 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.215287 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.215289 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.215293 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.226232 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.226268 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.226298 LLDP, length 82 [|LLDP] 18:54:38.226300 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 066a d3db 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.226302 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.226310 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.226316 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.226330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.226334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.226338 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.226340 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.226344 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.226347 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.226359 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.226365 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.237229 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.237260 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.237285 LLDP, length 82 [|LLDP] 18:54:38.237286 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0673 3a42 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.237288 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.237295 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.237299 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.237302 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.237314 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.237321 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.237331 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.237336 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.237339 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.237342 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.237346 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.245495 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.245524 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.245547 LLDP, length 82 [|LLDP] 18:54:38.245548 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0679 870f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.245550 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.245556 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.245560 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.245563 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.245575 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.245581 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.245591 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.245596 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.245599 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.245601 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.245606 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.256496 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.256526 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.256549 LLDP, length 82 [|LLDP] 18:54:38.256551 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0681 ed75 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.256553 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.256560 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.256563 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.256569 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.256580 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.256588 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.256592 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.256594 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.256598 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.256611 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.256616 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.264761 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.264783 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.264807 LLDP, length 82 [|LLDP] 18:54:38.264809 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0688 3a49 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.264811 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.264817 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.264821 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.264824 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.264836 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.264843 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.264854 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.264859 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.264863 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.264865 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.264869 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.275765 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.275792 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.275816 LLDP, length 82 [|LLDP] 18:54:38.275818 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0690 a0a9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.275820 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.275826 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.275851 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.275857 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.275860 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.275862 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.275868 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.275871 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.275875 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.275887 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.275892 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.286777 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.286807 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.286833 LLDP, length 82 [|LLDP] 18:54:38.286835 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0699 070f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.286837 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.286844 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.286848 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.286852 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.286858 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.286869 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.286874 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.286877 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.286880 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.286892 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.286898 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.295028 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.295054 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.295076 LLDP, length 82 [|LLDP] 18:54:38.295078 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 069f 53dc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.295080 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.295086 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.295090 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.295098 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.295110 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.295117 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.295127 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.295132 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.295135 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.295137 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.295142 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.306041 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.306075 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.306104 LLDP, length 82 [|LLDP] 18:54:38.306106 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06a7 ba42 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.306108 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.306115 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.306121 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.306134 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.306139 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.306143 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.306145 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.306149 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.306153 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.306170 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.306176 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.317049 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.317084 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.317109 LLDP, length 82 [|LLDP] 18:54:38.317112 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06b0 20a9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.317113 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.317121 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.317124 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.317128 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.317139 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.317145 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.317157 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.317166 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.317169 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.317172 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.317177 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.325306 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.325333 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.325357 LLDP, length 82 [|LLDP] 18:54:38.325359 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06b6 6d76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.325361 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.325367 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.325371 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.325375 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.325388 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.325394 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.325404 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.325409 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.325412 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.325414 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.325419 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.336315 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.336341 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.336363 LLDP, length 82 [|LLDP] 18:54:38.336365 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06be d3dc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.336367 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.336374 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.336378 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.336383 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.336393 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.336398 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.336401 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.336403 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.336407 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.336419 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.336425 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.344566 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.344591 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.344612 LLDP, length 82 [|LLDP] 18:54:38.344613 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06c5 20a8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.344615 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.344621 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.344625 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.344628 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.344640 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.344646 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.344657 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.344662 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.344664 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.344666 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.344671 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.355578 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.355601 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.355621 LLDP, length 82 [|LLDP] 18:54:38.355623 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06cd 870f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.355625 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.355631 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.355641 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.355657 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.355660 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.355662 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.355669 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.355673 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.355676 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.355690 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.355696 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.366585 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.366609 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.366629 LLDP, length 82 [|LLDP] 18:54:38.366631 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06d5 ed76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.366634 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.366639 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.366643 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.366646 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.366652 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.366663 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.366667 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.366670 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.366672 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.366683 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.366689 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.374844 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.374867 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.374885 LLDP, length 82 [|LLDP] 18:54:38.374887 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06dc 3a42 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.374889 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.374895 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.374898 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.374902 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.374914 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.374919 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.374929 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.374934 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.374936 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.374939 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.374943 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.385853 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.385877 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.385898 LLDP, length 82 [|LLDP] 18:54:38.385900 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06e4 a0a8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.385901 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.385907 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.385912 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.385922 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.385926 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.385929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.385932 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.385935 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.385939 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.385950 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.385955 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.396867 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.396884 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.396903 LLDP, length 82 [|LLDP] 18:54:38.396904 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06ed 0716 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.396906 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.396912 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.396916 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.396919 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.396930 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.396936 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.396946 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.396950 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.396953 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.396955 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.396960 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.405120 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.405142 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.405162 LLDP, length 82 [|LLDP] 18:54:38.405163 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06f3 53dc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.405166 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.405171 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.405175 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.405179 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.405190 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.405196 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.405205 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.405210 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.405213 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.405215 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.405219 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.416129 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.416151 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.416168 LLDP, length 82 [|LLDP] 18:54:38.416170 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06fb ba41 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.416172 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.416178 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.416181 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.416187 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.416197 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.416201 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.416204 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.416206 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.416210 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.416222 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.416227 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.427138 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.427160 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.427179 LLDP, length 82 [|LLDP] 18:54:38.427180 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0704 20a8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.427182 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.427187 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.427191 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.427195 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.427208 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.427213 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.427223 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.427227 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.427230 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.427232 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.427236 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.435400 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.435423 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.435458 LLDP, length 82 [|LLDP] 18:54:38.435460 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 070a 6d78 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.435462 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.435469 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.435479 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.435484 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.435487 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.435489 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.435494 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.435497 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.435501 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.435514 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.435519 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.446409 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.446432 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.446453 LLDP, length 82 [|LLDP] 18:54:38.446455 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0712 d3db 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.446457 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.446463 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.446466 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.446469 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.446475 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.446486 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.446491 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.446493 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.446496 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.446507 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.446513 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.454670 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.454687 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.454707 LLDP, length 82 [|LLDP] 18:54:38.454709 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0719 20a8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.454711 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.454717 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.454720 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.454724 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.454735 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.454741 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.454751 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.454755 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.454758 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.454760 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.454765 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.465677 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.465700 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.465720 LLDP, length 82 [|LLDP] 18:54:38.465722 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0721 870e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.465723 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.465729 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.465734 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.465744 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.465749 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.465751 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.465753 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.465757 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.465760 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.465772 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.465778 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.476687 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.476710 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.476730 LLDP, length 82 [|LLDP] 18:54:38.476732 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0729 ed75 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.476733 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.476739 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.476743 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.476746 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.476758 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.476764 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.476774 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.476779 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.476782 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.476784 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.476789 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.484940 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.484964 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.484983 LLDP, length 82 [|LLDP] 18:54:38.484985 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0730 3a41 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.484987 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.484992 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.484996 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.484999 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.485011 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.485017 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.485027 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.485031 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.485034 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.485036 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.485040 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.495953 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.495976 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.495996 LLDP, length 82 [|LLDP] 18:54:38.495998 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0738 a0a8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.496000 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.496005 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.496010 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.496015 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.496025 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.496029 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.496032 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.496034 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.496038 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.496050 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.496055 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.506963 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.506979 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.506999 LLDP, length 82 [|LLDP] 18:54:38.507000 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0741 070e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.507002 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.507008 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.507011 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.507015 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.507027 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.507033 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.507043 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.507047 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.507050 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.507052 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.507057 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.515218 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.515239 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.515257 LLDP, length 82 [|LLDP] 18:54:38.515259 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0747 53e3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.515261 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.515267 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.515277 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.515281 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.515284 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.515286 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.515292 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.515295 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.515299 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.515310 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.515316 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.526229 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.526251 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.526270 LLDP, length 82 [|LLDP] 18:54:38.526272 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 074f ba43 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.526274 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.526279 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.526283 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.526286 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.526291 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.526301 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.526305 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.526308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.526310 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.526322 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.526327 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.537240 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.537263 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.537282 LLDP, length 82 [|LLDP] 18:54:38.537283 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0758 20a8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.537285 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.537291 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.537294 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.537298 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.537309 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.537315 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.537324 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.537329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.537332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.537334 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.537338 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.545494 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.545516 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.545535 LLDP, length 82 [|LLDP] 18:54:38.545536 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 075e 6d76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.545538 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.545544 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.545549 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.545559 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.545563 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.545566 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.545568 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.545572 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.545575 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.545587 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.545592 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.556506 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.556529 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.556549 LLDP, length 82 [|LLDP] 18:54:38.556551 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0766 d3dc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.556553 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.556559 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.556563 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.556566 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.556577 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.556583 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.556593 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.556597 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.556600 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.556602 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.556607 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.564768 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.564785 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.564804 LLDP, length 82 [|LLDP] 18:54:38.564806 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 076d 20a8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.564808 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.564814 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.564818 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.564821 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.564832 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.564838 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.564848 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.564852 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.564855 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.564857 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.564861 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.575775 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.575798 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.575819 LLDP, length 82 [|LLDP] 18:54:38.575821 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0775 870f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.575823 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.575829 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.575832 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.575838 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.575848 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.575852 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.575854 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.575857 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.575861 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.575873 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.575879 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.586783 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.586806 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.586825 LLDP, length 82 [|LLDP] 18:54:38.586827 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 077d ed76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.586829 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.586834 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.586838 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.586842 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.586853 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.586859 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.586869 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.586873 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.586876 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.586877 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.586882 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.595040 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.595063 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.595082 LLDP, length 82 [|LLDP] 18:54:38.595084 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0784 3a42 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.595086 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.595091 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.595101 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.595106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.595108 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.595110 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.595115 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.595119 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.595123 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.595135 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.595140 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.606049 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.606072 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.606091 LLDP, length 82 [|LLDP] 18:54:38.606093 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 078c a0a8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.606095 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.606101 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.606104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.606108 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.606113 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.606123 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.606127 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.606130 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.606132 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.606144 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.606149 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.617064 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.617081 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.617101 LLDP, length 82 [|LLDP] 18:54:38.617103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0795 070f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.617105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.617111 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.617115 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.617119 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.617131 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.617136 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.617146 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.617151 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.617154 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.617156 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.617160 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.625318 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.625340 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.625359 LLDP, length 82 [|LLDP] 18:54:38.625361 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 079b 53db 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.625363 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.625368 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.625373 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.625383 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.625388 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.625391 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.625393 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.625397 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.625400 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.625412 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.625417 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.636329 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.636350 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.636369 LLDP, length 82 [|LLDP] 18:54:38.636371 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07a3 ba41 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.636373 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.636379 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.636383 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.636386 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.636397 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.636403 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.636412 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.636417 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.636420 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.636422 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.636426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.644587 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.644609 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.644628 LLDP, length 82 [|LLDP] 18:54:38.644630 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07aa 070e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.644631 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.644637 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.644641 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.644645 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.644657 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.644663 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.644672 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.644677 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.644679 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.644681 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.644686 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.655598 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.655624 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.655655 LLDP, length 82 [|LLDP] 18:54:38.655657 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07b2 6d75 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.655659 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.655667 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.655671 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.655677 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.655687 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.655692 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.655695 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.655697 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.655701 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.655714 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.655719 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.666611 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.666636 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.666657 LLDP, length 82 [|LLDP] 18:54:38.666659 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07ba d3db 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.666661 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.666667 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.666670 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.666673 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.666685 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.666691 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.666701 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.666705 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.666708 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.666710 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.666714 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.674868 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.674890 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.674909 LLDP, length 82 [|LLDP] 18:54:38.674911 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07c1 20a8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.674913 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.674919 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.674929 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.674933 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.674936 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.674938 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.674943 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.674946 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.674950 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.674962 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.674967 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.685882 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.685902 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.685925 LLDP, length 82 [|LLDP] 18:54:38.685926 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07c9 8710 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.685928 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.685934 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.685938 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.685942 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.685948 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.685958 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.685962 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.685965 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.685967 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.685978 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.685983 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.696886 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.696911 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.696933 LLDP, length 82 [|LLDP] 18:54:38.696935 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07d1 ed74 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.696937 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.696943 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.696947 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.696950 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.696962 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.696968 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.696979 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.696983 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.696986 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.696988 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.696992 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.705141 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.705164 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.705184 LLDP, length 82 [|LLDP] 18:54:38.705186 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07d8 3a41 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.705188 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.705194 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.705199 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.705209 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.705213 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.705217 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.705219 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.705222 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.705226 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.705237 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.705243 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.716149 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.716171 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.716190 LLDP, length 82 [|LLDP] 18:54:38.716192 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07e0 a0a7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.716194 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.716199 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.716203 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.716206 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.716218 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.716224 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.716234 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.716238 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.716241 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.716243 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.716248 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.727158 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.727180 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.727199 LLDP, length 82 [|LLDP] 18:54:38.727201 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07e9 070e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.727203 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.727209 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.727213 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.727217 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.727228 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.727234 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.727244 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.727248 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.727251 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.727253 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.727257 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.735418 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.735433 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.735452 LLDP, length 82 [|LLDP] 18:54:38.735454 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07ef 53db 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.735456 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.735461 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.735465 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.735471 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.735480 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.735485 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.735487 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.735489 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.735493 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.735505 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.735510 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.746429 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.746451 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.746471 LLDP, length 82 [|LLDP] 18:54:38.746473 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07f7 ba41 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.746475 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.746480 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.746484 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.746488 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.746501 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.746507 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.746516 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.746521 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.746524 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.746526 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.746530 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.754686 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.754709 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.754728 LLDP, length 82 [|LLDP] 18:54:38.754730 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07fe 070e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.754732 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.754737 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.754747 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.754751 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.754754 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.754756 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.754761 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.754765 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.754769 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.754781 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.754787 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.765725 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.765757 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.765784 LLDP, length 82 [|LLDP] 18:54:38.765786 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0806 6d7c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.765788 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.765796 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.765800 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.765803 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.765810 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.765821 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.765826 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.765829 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.765831 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.765843 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.765849 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.776718 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.776747 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.776773 LLDP, length 82 [|LLDP] 18:54:38.776775 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 080e d3db 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.776778 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.776785 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.776789 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.776792 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.776805 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.776811 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.776822 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.776827 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.776830 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.776832 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.776837 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.784970 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.784999 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.785023 LLDP, length 82 [|LLDP] 18:54:38.785025 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0815 20a9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.785027 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.785033 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.785039 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.785050 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.785055 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.785058 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.785061 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.785065 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.785068 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.785090 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.785096 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.795989 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.796012 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.796038 LLDP, length 82 [|LLDP] 18:54:38.796040 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 081d 870f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.796042 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.796049 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.796053 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.796056 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.796068 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.796075 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.796087 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.796092 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.796095 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.796098 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.796103 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.806994 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.807025 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.807050 LLDP, length 82 [|LLDP] 18:54:38.807052 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0825 ed76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.807054 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.807061 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.807065 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.807069 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.807081 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.807087 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.807100 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.807104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.807107 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.807109 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.807114 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.815248 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.815277 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.815302 LLDP, length 82 [|LLDP] 18:54:38.815303 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 082c 3a42 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.815305 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.815312 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.815315 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.815321 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.815332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.815337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.815339 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.815342 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.815345 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.815358 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.815363 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.826255 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.826281 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.826304 LLDP, length 82 [|LLDP] 18:54:38.826306 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0834 a0a9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.826308 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.826315 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.826319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.826323 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.826335 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.826341 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.826352 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.826356 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.826359 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.826361 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.826375 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.837266 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.837290 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.837313 LLDP, length 82 [|LLDP] 18:54:38.837315 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 083d 0710 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.837317 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.837324 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.837334 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.837339 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.837342 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.837344 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.837348 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.837352 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.837356 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.837368 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.837373 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.845524 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.845548 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.845568 LLDP, length 82 [|LLDP] 18:54:38.845570 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0843 53dc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.845572 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.845578 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.845581 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.845585 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.845590 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.845606 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.845611 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.845613 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.845615 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.845627 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.845633 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.856537 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.856564 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.856587 LLDP, length 82 [|LLDP] 18:54:38.856589 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 084b ba43 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.856591 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.856597 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.856601 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.856604 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.856620 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.856627 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.856638 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.856643 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.856646 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.856648 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.856669 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.864850 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.864894 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.864923 LLDP, length 82 [|LLDP] 18:54:38.864925 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0852 070f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.864928 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.864939 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.864945 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.864961 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.864967 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.864971 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.864973 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.864977 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.864980 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.864993 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.864999 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.875803 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.875825 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.875847 LLDP, length 82 [|LLDP] 18:54:38.875850 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 085a 6d76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.875852 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.875858 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.875861 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.875865 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.875877 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.875883 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.875893 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.875898 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.875901 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.875903 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.875908 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.886807 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.886829 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.886849 LLDP, length 82 [|LLDP] 18:54:38.886851 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0862 d3dc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.886852 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.886859 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.886863 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.886866 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.886878 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.886884 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.886894 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.886898 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.886902 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.886904 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.886908 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.895059 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.895079 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.895095 LLDP, length 82 [|LLDP] 18:54:38.895097 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0869 20a9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.895099 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.895104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.895108 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.895112 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.895121 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.895125 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.895128 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.895130 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.895134 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.895146 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.895152 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.906068 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.906088 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.906108 LLDP, length 82 [|LLDP] 18:54:38.906110 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0871 870f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.906112 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.906117 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.906121 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.906125 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.906136 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.906143 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.906151 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.906156 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.906159 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.906161 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.906166 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.917080 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.917099 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.917115 LLDP, length 82 [|LLDP] 18:54:38.917117 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0879 ed75 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.917119 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.917124 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.917132 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.917137 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.917140 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.917142 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.917146 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.917150 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.917153 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.917166 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.917171 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.925334 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.925352 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.925369 LLDP, length 82 [|LLDP] 18:54:38.925370 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0880 3a42 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.925372 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.925377 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.925380 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.925384 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.925388 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.925397 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.925402 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.925404 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.925406 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.925418 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.925423 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.936344 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.936362 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.936378 LLDP, length 82 [|LLDP] 18:54:38.936380 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0888 a0a8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.936382 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.936387 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.936390 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.936394 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.936406 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.936411 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.936420 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.936424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.936427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.936429 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.936433 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.944602 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.944619 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.944635 LLDP, length 82 [|LLDP] 18:54:38.944636 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 088e ed75 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.944639 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.944644 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.944649 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.944657 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.944662 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.944665 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.944667 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.944670 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.944674 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.944685 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.944690 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.955613 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.955632 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.955656 LLDP, length 82 [|LLDP] 18:54:38.955659 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0897 53db 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.955660 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.955666 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.955670 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.955674 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.955687 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.955693 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.955702 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.955706 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.955709 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.955711 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.955716 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.966623 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.966643 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.966660 LLDP, length 82 [|LLDP] 18:54:38.966661 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 089f ba41 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.966663 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.966668 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.966672 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.966676 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.966688 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.966693 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.966703 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.966707 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.966710 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.966712 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.966716 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.974880 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.974899 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.974917 LLDP, length 82 [|LLDP] 18:54:38.974918 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08a6 070e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.974921 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.974926 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.974929 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.974934 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.974943 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.974948 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.974951 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.974953 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.974957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.974968 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.974974 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.985892 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.985910 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.985926 LLDP, length 82 [|LLDP] 18:54:38.985927 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08ae 6d74 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.985929 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.985935 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.985938 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.985941 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.985953 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.985959 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.985968 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.985972 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.985975 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.985977 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.985981 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:38.996900 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:38.996920 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.996937 LLDP, length 82 [|LLDP] 18:54:38.996938 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08b6 d3db 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:38.996940 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:38.996946 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:38.996955 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:38.996960 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.996962 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:38.996964 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:38.996968 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:38.996972 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:38.996976 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:38.996988 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:38.996993 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.005156 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.005175 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.005191 LLDP, length 82 [|LLDP] 18:54:39.005192 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08bd 20a7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.005194 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.005199 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.005203 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.005206 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.005211 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.005221 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.005225 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.005228 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.005230 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.005242 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.005247 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.016169 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.016187 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.016203 LLDP, length 82 [|LLDP] 18:54:39.016205 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08c5 8715 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.016207 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.016212 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.016216 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.016219 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.016231 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.016237 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.016245 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.016249 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.016252 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.016254 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.016258 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.027177 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.027195 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.027211 LLDP, length 82 [|LLDP] 18:54:39.027213 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08cd ed74 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.027215 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.027220 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.027224 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.027233 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.027237 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.027240 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.027242 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.027245 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.027249 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.027260 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.027266 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.035434 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.035451 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.035466 LLDP, length 82 [|LLDP] 18:54:39.035468 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08d4 3a41 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.035470 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.035475 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.035479 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.035484 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.035495 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.035501 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.035510 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.035514 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.035517 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.035519 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.035523 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.046445 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.046465 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.046482 LLDP, length 82 [|LLDP] 18:54:39.046484 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08dc a0a8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.046486 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.046491 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.046494 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.046498 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.046510 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.046516 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.046525 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.046529 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.046532 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.046534 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.046538 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.054699 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.054718 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.054733 LLDP, length 82 [|LLDP] 18:54:39.054735 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08e2 ed74 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.054736 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.054741 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.054745 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.054750 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.054759 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.054763 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.054766 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.054768 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.054772 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.054784 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.054789 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.065714 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.065732 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.065748 LLDP, length 82 [|LLDP] 18:54:39.065750 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08eb 53db 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.065752 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.065757 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.065760 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.065764 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.065775 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.065781 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.065789 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.065794 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.065797 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.065799 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.065804 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.076724 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.076743 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.076760 LLDP, length 82 [|LLDP] 18:54:39.076762 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08f3 ba41 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.076764 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.076770 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.076779 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.076783 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.076786 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.076788 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.076792 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.076796 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.076800 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.076812 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.076817 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.084980 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.084999 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.085015 LLDP, length 82 [|LLDP] 18:54:39.085017 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08fa 070f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.085019 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.085024 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.085027 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.085031 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.085036 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.085045 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.085049 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.085053 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.085055 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.085066 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.085071 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.095991 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.096010 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.096028 LLDP, length 82 [|LLDP] 18:54:39.096030 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0902 6d76 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.096032 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.096037 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.096041 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.096044 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.096056 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.096061 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.096070 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.096075 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.096077 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.096080 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.096084 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.107000 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.107019 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.107035 LLDP, length 82 [|LLDP] 18:54:39.107036 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 090a d3dc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.107038 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.107044 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.107049 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.107057 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.107061 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.107064 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.107066 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.107070 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.107074 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.107085 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.107090 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.115257 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.115276 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.115292 LLDP, length 82 [|LLDP] 18:54:39.115294 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0911 20cb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.115296 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.115301 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.115305 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.115309 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.115321 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.115326 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.115335 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.115339 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.115342 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.115344 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.115348 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.126269 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.126287 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.126303 LLDP, length 82 [|LLDP] 18:54:39.126305 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0919 8730 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.126306 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.126311 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.126315 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.126319 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.126331 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.126336 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.126345 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.126350 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.126353 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.126355 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.126359 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.134525 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.134542 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.134558 LLDP, length 82 [|LLDP] 18:54:39.134560 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 091f d3fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.134562 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.134567 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.134571 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.134576 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.134585 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.134589 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.134592 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.134594 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.134598 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.134609 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.134615 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.145534 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.145552 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.145568 LLDP, length 82 [|LLDP] 18:54:39.145569 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0928 3a65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.145571 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.145576 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.145580 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.145584 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.145595 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.145601 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.145609 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.145614 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.145617 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.145619 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.145623 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.156546 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.156564 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.156579 LLDP, length 82 [|LLDP] 18:54:39.156581 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0930 a0ca 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.156583 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.156588 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.156597 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.156602 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.156605 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.156607 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.156611 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.156615 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.156619 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.156630 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.156636 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.164802 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.164820 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.164835 LLDP, length 82 [|LLDP] 18:54:39.164837 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0936 ed98 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.164839 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.164844 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.164848 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.164851 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.164856 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.164865 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.164869 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.164872 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.164874 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.164886 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.164892 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.175812 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.175831 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.175847 LLDP, length 82 [|LLDP] 18:54:39.175849 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 093f 53fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.175851 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.175857 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.175860 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.175864 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.175876 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.175882 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.175890 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.175895 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.175898 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.175900 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.175905 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.186824 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.186844 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.186860 LLDP, length 82 [|LLDP] 18:54:39.186861 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0947 ba64 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.186864 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.186869 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.186874 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.186884 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.186888 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.186891 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.186894 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.186897 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.186901 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.186913 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.186919 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.195080 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.195098 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.195113 LLDP, length 82 [|LLDP] 18:54:39.195115 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 094e 0730 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.195117 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.195123 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.195126 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.195130 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.195141 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.195147 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.195156 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.195161 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.195163 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.195166 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.195170 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.206090 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.206109 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.206128 LLDP, length 82 [|LLDP] 18:54:39.206130 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0956 6d97 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.206131 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.206137 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.206140 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.206144 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.206156 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.206162 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.206170 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.206175 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.206178 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.206180 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.206184 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.217101 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.217121 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.217138 LLDP, length 82 [|LLDP] 18:54:39.217140 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 095e d3fd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.217142 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.217147 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.217150 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.217156 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.217164 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.217169 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.217172 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.217174 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.217178 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.217189 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.217195 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.225357 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.225375 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.225391 LLDP, length 82 [|LLDP] 18:54:39.225393 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0965 20ca 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.225395 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.225400 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.225403 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.225407 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.225418 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.225424 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.225432 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.225437 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.225440 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.225442 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.225446 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.236367 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.236384 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.236400 LLDP, length 82 [|LLDP] 18:54:39.236401 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 096d 8730 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.236403 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.236408 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.236417 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.236421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.236425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.236427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.236431 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.236435 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.236438 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.236450 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.236455 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.244627 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.244644 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.244659 LLDP, length 82 [|LLDP] 18:54:39.244661 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0973 d3fd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.244663 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.244667 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.244671 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.244675 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.244680 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.244689 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.244694 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.244696 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.244698 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.244710 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.244715 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.255633 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.255659 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.255677 LLDP, length 82 [|LLDP] 18:54:39.255678 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 097c 3a64 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.255680 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.255686 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.255690 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.255693 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.255705 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.255711 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.255719 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.255723 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.255726 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.255729 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.255733 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.266646 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.266666 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.266683 LLDP, length 82 [|LLDP] 18:54:39.266684 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0984 a0c9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.266686 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.266691 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.266696 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.266705 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.266709 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.266712 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.266715 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.266719 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.266722 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.266734 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.266740 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.274902 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.274919 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.274935 LLDP, length 82 [|LLDP] 18:54:39.274937 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 098a ed96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.274938 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.274944 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.274948 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.274951 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.274963 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.274968 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.274977 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.274982 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.274984 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.274986 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.274991 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.285912 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.285931 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.285948 LLDP, length 82 [|LLDP] 18:54:39.285949 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0993 53fd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.285951 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.285956 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.285960 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.285963 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.285974 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.285980 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.286002 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.286007 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.286010 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.286012 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.286017 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.296928 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.296943 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.296962 LLDP, length 82 [|LLDP] 18:54:39.296965 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 099b ba63 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.296967 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.296973 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.296977 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.296982 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.296992 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.296996 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.296999 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.297002 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.297006 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.297018 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.297024 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.305210 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.305239 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.305267 LLDP, length 82 [|LLDP] 18:54:39.305269 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09a2 0737 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.305271 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.305278 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.305282 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.305286 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.305298 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.305304 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.305316 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.305321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.305325 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.305327 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.305331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.316202 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.316233 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.316257 LLDP, length 82 [|LLDP] 18:54:39.316259 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09aa 6d97 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.316261 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.316268 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.316279 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.316284 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.316288 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.316290 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.316296 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.316299 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.316303 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.316315 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.316321 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.327216 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.327247 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.327274 LLDP, length 82 [|LLDP] 18:54:39.327276 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09b2 d3fd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.327278 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.327285 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.327288 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.327291 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.327298 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.327309 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.327314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.327318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.327320 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.327332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.327338 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.335471 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.335496 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.335518 LLDP, length 82 [|LLDP] 18:54:39.335520 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09b9 20c9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.335522 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.335532 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.335536 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.335540 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.335552 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.335558 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.335569 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.335574 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.335577 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.335579 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.335584 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.346478 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.346504 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.346527 LLDP, length 82 [|LLDP] 18:54:39.346528 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09c1 8730 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.346530 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.346536 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.346541 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.346552 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.346556 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.346559 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.346561 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.346565 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.346573 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.346585 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.346591 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.354736 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.354754 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.354774 LLDP, length 82 [|LLDP] 18:54:39.354775 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09c7 d3fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.354778 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.354784 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.354792 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.354796 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.354809 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.354815 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.354825 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.354829 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.354833 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.354835 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.354840 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.365748 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.365771 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.365793 LLDP, length 82 [|LLDP] 18:54:39.365795 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09d0 3a64 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.365797 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.365802 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.365806 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.365814 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.365826 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.365832 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.365842 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.365847 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.365849 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.365851 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.365856 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.376760 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.376785 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.376808 LLDP, length 82 [|LLDP] 18:54:39.376810 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09d8 a0ca 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.376812 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.376819 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.376822 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.376828 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.376838 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.376842 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.376846 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.376848 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.376851 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.376863 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.376868 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.385011 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.385037 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.385060 LLDP, length 82 [|LLDP] 18:54:39.385062 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09de ed97 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.385064 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.385070 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.385074 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.385077 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.385088 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.385094 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.385105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.385110 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.385113 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.385115 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.385120 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.396033 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.396065 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.396091 LLDP, length 82 [|LLDP] 18:54:39.396093 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09e7 53fd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.396095 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.396102 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.396114 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.396120 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.396123 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.396125 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.396130 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.396134 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.396137 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.396150 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.396155 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.407035 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.407056 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.407080 LLDP, length 82 [|LLDP] 18:54:39.407081 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09ef ba64 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.407084 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.407089 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.407093 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.407096 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.407102 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.407113 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.407117 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.407120 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.407123 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.407134 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.407140 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.415285 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.415309 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.415329 LLDP, length 82 [|LLDP] 18:54:39.415331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09f6 0731 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.415333 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.415339 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.415343 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.415347 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.415359 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.415365 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.415374 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.415379 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.415382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.415384 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.415388 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.426295 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.426319 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.426340 LLDP, length 82 [|LLDP] 18:54:39.426341 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09fe 6d97 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.426343 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.426349 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.426354 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.426364 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.426370 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.426372 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.426374 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.426378 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.426382 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.426394 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.426399 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.434553 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.434575 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.434595 LLDP, length 82 [|LLDP] 18:54:39.434596 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a04 ba64 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.434598 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.434604 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.434608 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.434612 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.434623 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.434629 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.434638 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.434643 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.434646 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.434648 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.434654 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.445561 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.445582 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.445602 LLDP, length 82 [|LLDP] 18:54:39.445603 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a0d 20ca 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.445605 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.445611 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.445614 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.445618 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.445630 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.445636 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.445645 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.445649 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.445652 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.445654 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.445659 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.456573 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.456595 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.456614 LLDP, length 82 [|LLDP] 18:54:39.456616 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a15 8730 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.456617 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.456623 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.456626 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.456631 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.456641 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.456646 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.456649 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.456650 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.456654 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.456666 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.456671 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.464832 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.464848 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.464867 LLDP, length 82 [|LLDP] 18:54:39.464869 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a1b d3fd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.464871 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.464876 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.464880 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.464883 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.464895 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.464901 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.464910 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.464915 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.464918 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.464920 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.464924 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.475842 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.475858 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.475876 LLDP, length 82 [|LLDP] 18:54:39.475878 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a24 3a64 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.475880 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.475886 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.475895 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.475900 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.475903 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.475905 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.475909 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.475913 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.475917 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.475928 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.475933 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.486849 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.486864 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.486882 LLDP, length 82 [|LLDP] 18:54:39.486884 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a2c a0ca 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.486886 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.486891 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.486895 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.486898 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.486903 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.486913 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.486917 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.486920 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.486922 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.486934 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.486939 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.495109 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.495132 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.495152 LLDP, length 82 [|LLDP] 18:54:39.495154 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a32 ed96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.495156 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.495162 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.495166 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.495169 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.495181 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.495187 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.495197 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.495202 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.495205 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.495207 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.495212 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.506120 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.506143 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.506164 LLDP, length 82 [|LLDP] 18:54:39.506166 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a3b 53fd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.506167 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.506173 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.506178 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.506189 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.506193 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.506196 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.506198 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.506202 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.506206 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.506218 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.506223 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.517128 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.517152 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.517171 LLDP, length 82 [|LLDP] 18:54:39.517173 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a43 ba63 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.517175 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.517181 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.517184 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.517188 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.517200 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.517206 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.517216 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.517221 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.517224 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.517226 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.517231 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.525388 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.525405 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.525425 LLDP, length 82 [|LLDP] 18:54:39.525427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a4a 072f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.525429 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.525435 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.525438 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.525442 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.525453 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.525459 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.525469 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.525473 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.525476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.525478 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.525483 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.536394 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.536416 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.536435 LLDP, length 82 [|LLDP] 18:54:39.536437 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a52 6d96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.536439 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.536445 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.536448 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.536454 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.536463 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.536468 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.536471 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.536473 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.536477 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.536488 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.536494 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.544650 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.544673 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.544692 LLDP, length 82 [|LLDP] 18:54:39.544694 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a58 ba63 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.544696 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.544701 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.544705 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.544708 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.544719 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.544725 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.544735 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.544739 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.544742 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.544744 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.544748 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.555667 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.555688 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.555707 LLDP, length 82 [|LLDP] 18:54:39.555709 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a61 20d0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.555710 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.555716 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.555727 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.555731 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.555735 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.555737 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.555741 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.555744 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.555748 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.555759 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.555765 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.566668 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.566691 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.566710 LLDP, length 82 [|LLDP] 18:54:39.566712 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a69 8730 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.566714 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.566720 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.566723 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.566727 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.566732 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.566742 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.566746 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.566750 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.566752 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.566763 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.566769 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.574931 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.574952 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.574972 LLDP, length 82 [|LLDP] 18:54:39.574973 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a6f d3fd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.574975 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.574981 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.574984 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.574988 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.575000 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.575005 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.575015 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.575019 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.575022 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.575024 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.575029 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.585939 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.585960 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.585979 LLDP, length 82 [|LLDP] 18:54:39.585980 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a78 3a63 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.585982 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.585988 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.585993 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.586003 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.586008 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.586011 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.586013 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.586017 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.586021 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.586032 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.586038 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.596954 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.596981 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.597004 LLDP, length 82 [|LLDP] 18:54:39.597006 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a80 a0ca 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.597008 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.597014 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.597018 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.597022 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.597034 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.597040 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.597050 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.597055 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.597057 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.597059 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.597064 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.605208 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.605232 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.605253 LLDP, length 82 [|LLDP] 18:54:39.605255 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a86 ed97 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.605257 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.605263 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.605266 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.605270 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.605282 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.605287 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.605297 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.605302 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.605306 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.605307 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.605312 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.616220 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.616246 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.616266 LLDP, length 82 [|LLDP] 18:54:39.616268 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a8f 53fd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.616270 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.616276 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.616280 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.616286 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.616296 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.616300 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.616303 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.616305 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.616309 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.616320 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.616326 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.624476 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.624500 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.624522 LLDP, length 82 [|LLDP] 18:54:39.624523 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a95 a0ca 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.624526 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.624531 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.624535 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.624539 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.624551 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.624556 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.624566 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.624571 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.624574 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.624576 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.624580 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.635489 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.635513 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.635536 LLDP, length 82 [|LLDP] 18:54:39.635538 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a9e 0731 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.635540 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.635546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.635557 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.635562 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.635565 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.635567 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.635573 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.635576 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.635580 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.635592 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.635598 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.646513 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.646540 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.646568 LLDP, length 82 [|LLDP] 18:54:39.646570 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0aa6 6d97 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.646572 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.646580 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.646584 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.646587 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.646593 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.646605 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.646610 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.646614 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.646616 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.646628 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.646634 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.654763 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.654791 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.654814 LLDP, length 82 [|LLDP] 18:54:39.654816 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0aac ba64 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.654818 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.654824 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.654828 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.654832 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.654844 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.654850 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.654862 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.654867 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.654871 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.654873 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.654877 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.665765 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.665789 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.665811 LLDP, length 82 [|LLDP] 18:54:39.665813 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ab5 20ca 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.665815 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.665820 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.665826 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.665836 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.665840 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.665843 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.665845 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.665849 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.665853 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.665864 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.665869 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.676774 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.676800 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.676822 LLDP, length 82 [|LLDP] 18:54:39.676824 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0abd 8730 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.676826 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.676831 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.676835 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.676839 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.676851 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.676857 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.676867 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.676872 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.676875 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.676877 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.676882 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.685029 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.685054 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.685075 LLDP, length 82 [|LLDP] 18:54:39.685077 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ac3 d3fd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.685079 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.685085 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.685089 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.685092 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.685103 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.685109 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.685119 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.685123 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.685126 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.685128 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.685133 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.696045 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.696063 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.696084 LLDP, length 82 [|LLDP] 18:54:39.696086 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0acc 3a64 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.696087 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.696093 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.696097 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.696112 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.696124 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.696129 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.696132 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.696134 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.696138 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.696151 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.696156 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.707054 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.707077 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.707098 LLDP, length 82 [|LLDP] 18:54:39.707100 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ad4 a0ca 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.707102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.707108 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.707112 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.707115 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.707127 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.707133 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.707143 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.707147 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.707151 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.707153 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.707158 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.715308 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.715332 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.715355 LLDP, length 82 [|LLDP] 18:54:39.715357 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ada ed96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.715359 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.715365 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.715376 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.715381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.715384 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.715386 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.715391 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.715395 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.715399 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.715410 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.715416 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.726322 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.726365 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.726394 LLDP, length 82 [|LLDP] 18:54:39.726397 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ae3 5403 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.726399 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.726407 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.726411 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.726415 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.726420 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.726432 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.726436 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.726439 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.726441 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.726454 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.726459 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.734598 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.734633 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.734658 LLDP, length 82 [|LLDP] 18:54:39.734660 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ae9 a0c9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.734662 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.734670 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.734674 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.734678 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.734690 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.734697 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.734711 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.734716 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.734720 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.734721 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.734727 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.745593 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.745619 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.745649 LLDP, length 82 [|LLDP] 18:54:39.745651 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0af2 072f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.745653 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.745659 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.745664 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.745675 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.745679 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.745682 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.745685 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.745688 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.745692 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.745703 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.745709 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.756614 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.756636 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.756661 LLDP, length 82 [|LLDP] 18:54:39.756663 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0afa 6d96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.756665 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.756672 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.756676 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.756679 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.756692 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.756698 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.756709 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.756714 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.756717 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.756719 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.756724 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.764855 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.764880 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.764901 LLDP, length 82 [|LLDP] 18:54:39.764903 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b00 ba63 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.764906 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.764912 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.764915 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.764919 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.764931 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.764936 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.764946 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.764951 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.764954 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.764956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.764961 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.775860 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.775883 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.775902 LLDP, length 82 [|LLDP] 18:54:39.775904 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b09 20c9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.775906 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.775911 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.775915 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.775920 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.775929 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.775933 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.775936 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.775938 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.775942 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.775953 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.775959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.786870 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.786892 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.786910 LLDP, length 82 [|LLDP] 18:54:39.786912 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b11 872f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.786914 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.786920 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.786924 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.786928 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.786939 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.786945 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.786954 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.786959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.786962 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.786964 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.786969 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.795127 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.795148 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.795166 LLDP, length 82 [|LLDP] 18:54:39.795168 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b17 d3fd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.795170 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.795175 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.795185 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.795189 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.795193 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.795195 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.795200 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.795204 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.795208 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.795219 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.795225 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.806144 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.806160 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.806181 LLDP, length 82 [|LLDP] 18:54:39.806183 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b20 3a67 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.806185 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.806191 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.806195 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.806198 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.806203 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.806213 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.806217 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.806220 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.806222 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.806234 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.806239 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.817153 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.817180 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.817206 LLDP, length 82 [|LLDP] 18:54:39.817208 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b28 a0c9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.817210 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.817216 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.817220 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.817224 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.817236 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.817243 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.817253 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.817258 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.817261 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.817263 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.817268 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.825407 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.825431 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.825450 LLDP, length 82 [|LLDP] 18:54:39.825452 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b2e ed96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.825454 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.825460 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.825465 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.825475 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.825480 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.825483 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.825485 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.825489 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.825492 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.825504 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.825509 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.836414 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.836438 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.836458 LLDP, length 82 [|LLDP] 18:54:39.836460 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b37 53fd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.836462 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.836467 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.836471 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.836475 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.836486 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.836492 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.836501 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.836506 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.836508 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.836510 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.836515 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.844673 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.844697 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.844717 LLDP, length 82 [|LLDP] 18:54:39.844719 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b3d a0ca 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.844721 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.844726 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.844730 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.844734 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.844746 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.844752 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.844761 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.844766 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.844769 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.844771 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.844775 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.855691 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.855714 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.855732 LLDP, length 82 [|LLDP] 18:54:39.855734 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b46 0730 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.855736 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.855741 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.855745 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.855750 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.855760 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.855764 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.855767 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.855769 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.855773 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.855785 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.855790 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.866693 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.866716 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.866734 LLDP, length 82 [|LLDP] 18:54:39.866736 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b4e 6d97 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.866738 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.866744 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.866748 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.866751 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.866763 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.866769 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.866778 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.866782 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.866785 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.866788 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.866793 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.874949 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.874970 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.874990 LLDP, length 82 [|LLDP] 18:54:39.874991 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b54 ba64 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.874993 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.874999 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.875008 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.875013 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.875016 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.875018 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.875023 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.875026 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.875030 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.875042 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.875047 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.885958 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.885980 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.885998 LLDP, length 82 [|LLDP] 18:54:39.886000 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b5d 20ca 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.886001 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.886007 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.886011 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.886015 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.886020 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.886029 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.886034 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.886036 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.886039 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.886050 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.886056 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.896972 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.896988 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.897006 LLDP, length 82 [|LLDP] 18:54:39.897008 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b65 8731 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.897010 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.897015 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.897019 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.897022 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.897034 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.897040 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.897050 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.897054 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.897057 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.897059 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.897063 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.905227 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.905248 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.905267 LLDP, length 82 [|LLDP] 18:54:39.905269 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b6b d3fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.905271 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.905276 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.905282 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.905291 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.905295 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.905298 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.905300 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.905305 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.905308 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.905320 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.905326 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.916239 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.916262 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.916280 LLDP, length 82 [|LLDP] 18:54:39.916282 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b74 3a64 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.916284 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.916290 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.916293 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.916296 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.916308 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.916314 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.916324 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.916328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.916331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.916333 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.916338 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.924494 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.924524 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.924544 LLDP, length 82 [|LLDP] 18:54:39.924545 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b7a 8738 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.924548 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.924554 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.924557 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.924560 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.924572 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.924577 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.924587 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.924591 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.924594 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.924596 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.924601 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.935506 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.935528 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.935547 LLDP, length 82 [|LLDP] 18:54:39.935549 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b82 ed97 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.935551 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.935556 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.935560 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.935565 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.935575 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.935579 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.935582 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.935584 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.935588 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.935600 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.935605 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.946514 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.946536 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.946555 LLDP, length 82 [|LLDP] 18:54:39.946557 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b8b 53fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.946559 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.946564 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.946568 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.946571 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.946583 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.946589 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.946598 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.946602 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.946605 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.946607 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.946612 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.954769 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.954791 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.954809 LLDP, length 82 [|LLDP] 18:54:39.954811 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b91 a0ca 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.954813 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.954819 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.954828 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.954833 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.954836 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.954838 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.954843 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.954846 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.954850 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.954861 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.954867 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.965781 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.965804 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.965822 LLDP, length 82 [|LLDP] 18:54:39.965823 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b9a 0731 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.965825 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.965831 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.965834 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.965838 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.965842 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.965851 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.965856 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.965859 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.965861 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.965872 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.965878 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.976795 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.976810 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.976833 LLDP, length 82 [|LLDP] 18:54:39.976834 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ba2 6d9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.976836 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.976842 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.976846 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.976850 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.976862 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.976868 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.976876 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.976881 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.976884 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.976886 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.976891 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.985050 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.985072 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.985090 LLDP, length 82 [|LLDP] 18:54:39.985091 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ba8 ba63 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.985093 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.985099 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.985104 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.985113 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.985118 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.985121 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.985123 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.985127 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.985130 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.985142 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.985148 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:39.996059 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:39.996082 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.996101 LLDP, length 82 [|LLDP] 18:54:39.996102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bb1 20ca 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:39.996104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:39.996109 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:39.996113 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:39.996116 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:39.996128 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:39.996134 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:39.996143 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:39.996148 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.996151 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:39.996153 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:39.996157 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.007069 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.007091 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.007111 LLDP, length 82 [|LLDP] 18:54:40.007112 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bb9 8730 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.007115 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.007120 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.007124 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.007128 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.007139 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.007145 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.007154 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.007159 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.007162 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.007164 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.007169 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.015328 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.015350 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.015369 LLDP, length 82 [|LLDP] 18:54:40.015371 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bbf d3fd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.015373 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.015379 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.015382 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.015387 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.015396 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.015401 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.015404 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.015406 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.015410 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.015422 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.015427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.026337 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.026359 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.026379 LLDP, length 82 [|LLDP] 18:54:40.026381 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bc8 3a64 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.026383 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.026389 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.026392 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.026396 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.026407 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.026414 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.026423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.026427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.026430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.026433 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.026437 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.034594 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.034616 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.034636 LLDP, length 82 [|LLDP] 18:54:40.034638 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bce 8730 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.034640 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.034646 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.034655 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.034660 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.034663 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.034665 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.034670 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.034673 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.034677 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.034688 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.034693 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.045604 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.045629 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.045649 LLDP, length 82 [|LLDP] 18:54:40.045651 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bd6 ed96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.045652 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.045658 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.045662 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.045666 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.045671 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.045680 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.045685 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.045688 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.045690 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.045702 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.045707 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.056616 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.056638 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.056657 LLDP, length 82 [|LLDP] 18:54:40.056658 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bdf 5400 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.056660 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.056666 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.056669 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.056673 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.056685 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.056690 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.056700 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.056705 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.056708 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.056710 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.056714 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.064870 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.064892 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.064910 LLDP, length 82 [|LLDP] 18:54:40.064912 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0be5 a0c9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.064914 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.064920 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.064925 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.064934 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.064939 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.064941 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.064944 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.064947 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.064951 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.064963 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.064968 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.075882 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.075903 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.075921 LLDP, length 82 [|LLDP] 18:54:40.075923 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bee 0730 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.075924 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.075930 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.075934 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.075937 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.075949 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.075955 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.075964 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.075969 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.075971 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.075973 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.075978 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.086892 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.086914 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.086932 LLDP, length 82 [|LLDP] 18:54:40.086934 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bf6 6d96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.086936 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.086941 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.086945 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.086949 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.086961 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.086966 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.086975 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.086980 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.086983 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.086985 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.086989 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.095148 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.095169 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.095187 LLDP, length 82 [|LLDP] 18:54:40.095188 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bfc ba63 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.095190 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.095196 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.095199 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.095205 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.095214 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.095218 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.095222 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.095224 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.095227 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.095239 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.095244 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.106158 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.106179 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.106197 LLDP, length 82 [|LLDP] 18:54:40.106199 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c05 20c9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.106201 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.106207 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.106211 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.106214 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.106225 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.106231 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.106240 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.106245 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.106248 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.106250 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.106255 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.117170 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.117194 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.117213 LLDP, length 82 [|LLDP] 18:54:40.117215 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c0d 8730 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.117217 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.117223 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.117232 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.117238 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.117241 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.117243 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.117248 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.117251 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.117255 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.117267 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.117272 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.125424 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.125446 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.125466 LLDP, length 82 [|LLDP] 18:54:40.125468 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c13 d3fc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.125470 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.125476 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.125480 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.125484 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.125490 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.125499 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.125504 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.125507 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.125509 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.125520 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.125526 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.136436 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.136459 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.136480 LLDP, length 82 [|LLDP] 18:54:40.136481 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c1c 3a63 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.136483 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.136489 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.136493 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.136497 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.136508 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.136515 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.136524 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.136529 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.136532 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.136534 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.136539 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.144696 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.144718 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.144737 LLDP, length 82 [|LLDP] 18:54:40.144739 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c22 8730 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.144741 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.144746 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.144752 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.144761 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.144765 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.144768 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.144771 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.144774 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.144778 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.144789 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.144795 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.155725 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.155751 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.155771 LLDP, length 82 [|LLDP] 18:54:40.155773 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c2a ed96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.155775 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.155782 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.155786 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.155790 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.155802 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.155808 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.155817 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.155822 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.155825 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.155827 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.155831 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.166714 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.166736 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.166754 LLDP, length 82 [|LLDP] 18:54:40.166756 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c33 53fd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.166758 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.166764 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.166768 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.166772 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.166783 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.166789 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.166798 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.166803 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.166805 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.166808 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.166812 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.174973 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.174994 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.175014 LLDP, length 82 [|LLDP] 18:54:40.175015 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c39 a0d1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.175017 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.175023 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.175026 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.175031 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.175041 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.175045 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.175048 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.175050 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.175054 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.175065 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.175071 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.185980 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.186000 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.186018 LLDP, length 82 [|LLDP] 18:54:40.186020 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c42 0731 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.186022 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.186027 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.186031 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.186035 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.186046 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.186052 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.186060 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.186065 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.186067 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.186069 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.186074 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.197044 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.197059 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.197078 LLDP, length 82 [|LLDP] 18:54:40.197080 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c4a 6d97 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.197082 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.197087 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.197096 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.197101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.197104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.197106 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.197111 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.197115 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.197119 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.197130 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.197135 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.205247 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.205268 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.205286 LLDP, length 82 [|LLDP] 18:54:40.205288 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c50 ba64 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.205290 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.205295 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.205299 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.205302 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.205307 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.205317 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.205322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.205324 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.205326 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.205338 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.205344 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.216259 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.216279 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.216297 LLDP, length 82 [|LLDP] 18:54:40.216299 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c59 20cb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.216301 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.216307 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.216310 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.216314 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.216326 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.216331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.216340 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.216345 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.216348 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.216350 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.216354 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.224517 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.224539 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.224559 LLDP, length 82 [|LLDP] 18:54:40.224561 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c5f 6d98 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.224563 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.224569 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.224574 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.224583 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.224588 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.224590 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.224592 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.224596 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.224600 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.224611 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.224617 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.235527 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.235549 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.235567 LLDP, length 82 [|LLDP] 18:54:40.235569 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c67 d3fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.235571 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.235577 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.235580 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.235583 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.235594 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.235601 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.235610 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.235615 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.235618 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.235620 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.235624 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.246536 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.246558 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.246576 LLDP, length 82 [|LLDP] 18:54:40.246578 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c70 3a65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.246580 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.246586 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.246590 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.246594 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.246605 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.246611 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.246620 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.246624 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.246627 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.246630 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.246634 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.254797 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.254813 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.254831 LLDP, length 82 [|LLDP] 18:54:40.254833 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c76 8731 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.254835 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.254840 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.254844 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.254849 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.254858 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.254863 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.254866 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.254868 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.254872 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.254883 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.254888 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.265802 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.265825 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.265842 LLDP, length 82 [|LLDP] 18:54:40.265845 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c7e ed97 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.265847 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.265852 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.265856 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.265860 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.265871 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.265877 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.265886 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.265891 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.265894 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.265896 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.265901 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.276816 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.276838 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.276857 LLDP, length 82 [|LLDP] 18:54:40.276858 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c87 53fd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.276860 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.276866 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.276889 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.276895 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.276898 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.276900 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.276905 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.276908 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.276912 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.276923 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.276929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.285072 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.285095 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.285113 LLDP, length 82 [|LLDP] 18:54:40.285115 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c8d a0ca 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.285117 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.285123 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.285127 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.285131 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.285136 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.285146 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.285150 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.285153 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.285155 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.285167 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.285173 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.296083 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.296103 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.296121 LLDP, length 82 [|LLDP] 18:54:40.296123 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c96 0731 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.296125 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.296131 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.296134 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.296138 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.296149 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.296155 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.296164 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.296169 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.296171 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.296173 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.296178 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.307095 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.307118 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.307136 LLDP, length 82 [|LLDP] 18:54:40.307138 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c9e 6d97 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.307140 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.307146 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.307151 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.307161 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.307165 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.307168 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.307170 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.307174 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.307178 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.307189 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.307195 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.315352 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.315373 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.315393 LLDP, length 82 [|LLDP] 18:54:40.315395 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ca4 ba63 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.315397 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.315403 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.315407 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.315410 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.315422 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.315428 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.315438 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.315443 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.315446 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.315448 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.315452 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.326360 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.326383 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.326402 LLDP, length 82 [|LLDP] 18:54:40.326404 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cad 20ca 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.326406 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.326412 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.326415 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.326419 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.326431 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.326437 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.326446 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.326451 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.326453 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.326455 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.326460 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.334618 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.334640 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.334658 LLDP, length 82 [|LLDP] 18:54:40.334660 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cb3 6d97 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.334662 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.334667 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.334671 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.334676 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.334685 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.334690 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.334693 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.334695 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.334699 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.334711 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.334717 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.345624 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.345645 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.345664 LLDP, length 82 [|LLDP] 18:54:40.345666 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cbb d3fd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.345669 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.345675 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.345679 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.345682 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.345693 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.345699 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.345708 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.345713 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.345715 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.345718 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.345722 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.356638 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.356660 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.356680 LLDP, length 82 [|LLDP] 18:54:40.356681 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cc4 3a63 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.356683 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.356689 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.356698 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.356703 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.356706 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.356708 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.356713 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.356716 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.356720 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.356731 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.356737 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.364893 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.364914 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.364932 LLDP, length 82 [|LLDP] 18:54:40.364934 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cca 8730 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.364936 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.364941 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.364945 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.364948 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.364954 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.364963 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.364968 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.364970 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.364973 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.364984 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.364990 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.375926 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.375950 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.375976 LLDP, length 82 [|LLDP] 18:54:40.375978 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cd2 ed96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.375980 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.375987 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.375990 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.375994 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.376016 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.376023 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.376035 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.376040 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.376043 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.376045 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.376049 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.386927 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.386948 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.386971 LLDP, length 82 [|LLDP] 18:54:40.386973 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cdb 53fd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.386975 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.386981 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.386986 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.386997 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.387001 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.387004 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.387006 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.387010 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.387014 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.387026 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.387031 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.395181 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.395199 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.395223 LLDP, length 82 [|LLDP] 18:54:40.395224 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ce1 a0c9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.395226 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.395233 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.395236 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.395240 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.395251 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.395257 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.395268 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.395272 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.395280 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.395282 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.395287 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.406198 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.406227 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.406250 LLDP, length 82 [|LLDP] 18:54:40.406252 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cea 0730 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.406254 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.406260 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.406264 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.406268 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.406280 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.406286 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.406300 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.406305 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.406309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.406311 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.406316 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.414445 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.414472 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.414495 LLDP, length 82 [|LLDP] 18:54:40.414497 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cf0 53fc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.414499 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.414505 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.414509 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.414514 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.414524 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.414529 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.414533 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.414535 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.414539 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.414551 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.414556 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.425463 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.425483 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.425506 LLDP, length 82 [|LLDP] 18:54:40.425508 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cf8 ba69 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.425511 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.425517 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.425522 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.425525 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.425537 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.425543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.425553 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.425559 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.425562 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.425565 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.425569 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.436470 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.436492 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.436516 LLDP, length 82 [|LLDP] 18:54:40.436518 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d01 20c9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.436520 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.436526 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.436536 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.436542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.436545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.436548 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.436553 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.436557 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.436560 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.436573 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.436579 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.444721 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.444750 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.444772 LLDP, length 82 [|LLDP] 18:54:40.444773 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d07 6d96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.444775 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.444782 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.444786 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.444789 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.444795 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.444805 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.444809 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.444813 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.444815 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.444827 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.444832 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.455741 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.455771 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.455801 LLDP, length 82 [|LLDP] 18:54:40.455803 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d0f d3fd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.455806 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.455813 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.455817 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.455821 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.455834 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.455840 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.455852 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.455857 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.455860 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.455862 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.455867 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.466742 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.466768 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.466789 LLDP, length 82 [|LLDP] 18:54:40.466791 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d18 3a63 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.466793 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.466799 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.466805 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.466816 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.466820 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.466823 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.466825 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.466829 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.466832 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.466849 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.466855 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.475000 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.475017 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.475036 LLDP, length 82 [|LLDP] 18:54:40.475038 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d1e 8730 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.475040 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.475046 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.475049 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.475053 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.475064 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.475070 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.475080 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.475084 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.475087 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.475089 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.475094 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.486000 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.486018 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.486035 LLDP, length 82 [|LLDP] 18:54:40.486036 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d26 ed97 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.486038 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.486044 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.486047 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.486051 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.486062 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.486067 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.486076 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.486080 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.486083 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.486085 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.486090 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.497009 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.497027 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.497044 LLDP, length 82 [|LLDP] 18:54:40.497045 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d2f 53fd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.497047 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.497052 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.497056 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.497061 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.497070 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.497074 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.497077 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.497079 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.497082 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.497094 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.497100 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.505268 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.505286 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.505302 LLDP, length 82 [|LLDP] 18:54:40.505304 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d35 a0ca 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.505306 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.505311 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.505314 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.505317 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.505329 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.505334 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.505344 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.505348 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.505351 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.505353 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.505358 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.516277 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.516293 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.516309 LLDP, length 82 [|LLDP] 18:54:40.516311 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d3e 0731 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.516313 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.516318 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.516326 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.516331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.516334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.516336 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.516340 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.516344 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.516347 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.516359 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.516365 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.524531 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.524548 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.524564 LLDP, length 82 [|LLDP] 18:54:40.524566 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d44 53fd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.524567 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.524572 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.524576 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.524580 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.524584 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.524593 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.524598 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.524600 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.524603 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.524614 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.524619 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.535670 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.535682 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.535700 LLDP, length 82 [|LLDP] 18:54:40.535701 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d4c ba64 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.535703 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.535709 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.535713 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.535716 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.535728 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.535734 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.535743 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.535747 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.535750 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.535752 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.535757 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.546554 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.546574 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.546591 LLDP, length 82 [|LLDP] 18:54:40.546592 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d55 20cb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.546594 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.546600 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.546605 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.546614 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.546619 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.546622 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.546624 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.546628 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.546632 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.546644 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.546650 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.554812 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.554831 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.554847 LLDP, length 82 [|LLDP] 18:54:40.554848 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d5b 6d98 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.554851 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.554856 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.554860 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.554863 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.554874 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.554880 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.554889 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.554894 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.554896 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.554898 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.554903 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.565819 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.565838 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.565855 LLDP, length 82 [|LLDP] 18:54:40.565856 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d63 d3fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.565858 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.565863 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.565867 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.565871 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.565883 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.565888 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.565897 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.565901 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.565904 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.565906 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.565911 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.576829 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.576848 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.576863 LLDP, length 82 [|LLDP] 18:54:40.576865 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d6c 3a64 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.576867 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.576872 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.576875 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.576881 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.576889 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.576894 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.576897 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.576899 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.576903 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.576914 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.576919 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.585086 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.585104 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.585120 LLDP, length 82 [|LLDP] 18:54:40.585121 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d72 8731 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.585138 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.585145 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.585150 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.585153 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.585167 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.585173 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.585182 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.585188 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.585191 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.585194 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.585198 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.596149 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.596181 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.596206 LLDP, length 82 [|LLDP] 18:54:40.596208 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d7a ed97 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.596211 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.596218 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.596233 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.596240 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.596244 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.596246 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.596254 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.596258 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.596262 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.596274 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.596280 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.607116 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.607139 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.607160 LLDP, length 82 [|LLDP] 18:54:40.607161 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d83 53fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.607163 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.607169 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.607173 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.607177 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.607183 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.607193 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.607198 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.607201 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.607203 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.607215 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.607220 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.615367 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.615387 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.615404 LLDP, length 82 [|LLDP] 18:54:40.615406 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d89 a0ca 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.615407 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.615413 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.615417 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.615421 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.615432 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.615439 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.615448 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.615452 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.615455 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.615457 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.615462 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.626375 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.626395 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.626411 LLDP, length 82 [|LLDP] 18:54:40.626412 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d92 0731 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.626414 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.626420 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.626425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.626434 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.626439 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.626441 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.626443 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.626447 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.626451 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.626462 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.626468 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.634633 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.634650 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.634666 LLDP, length 82 [|LLDP] 18:54:40.634668 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d98 53fd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.634669 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.634674 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.634678 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.634682 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.634693 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.634699 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.634708 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.634713 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.634715 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.634717 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.634722 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.645635 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.645649 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.645667 LLDP, length 82 [|LLDP] 18:54:40.645669 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0da0 ba64 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.645671 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.645676 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.645680 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.645692 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.645697 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.645706 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.656660 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.656676 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.656679 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.656687 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.656701 LLDP, length 82 [|LLDP] 18:54:40.656703 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0da9 20c9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.656706 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.656712 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.656715 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.656719 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.656724 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.656728 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.656730 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.656735 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.656747 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.664909 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.664928 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.664944 LLDP, length 82 [|LLDP] 18:54:40.664945 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0daf 6d97 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.664947 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.664952 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.664956 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.664959 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.664971 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.664976 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.664985 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.664988 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.664992 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.664994 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.664998 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.675926 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.675951 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.675971 LLDP, length 82 [|LLDP] 18:54:40.675973 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0db7 d404 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.675974 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.675980 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.675985 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.675995 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.675998 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.676002 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.676005 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.676017 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.676023 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.676025 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.676029 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.686933 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.686953 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.686971 LLDP, length 82 [|LLDP] 18:54:40.686972 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dc0 3a63 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.686974 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.686979 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.686983 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.686987 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.686998 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.687004 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.687013 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.687017 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.687021 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.687023 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.687027 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.695188 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.695205 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.695221 LLDP, length 82 [|LLDP] 18:54:40.695223 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dc6 872f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.695225 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.695230 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.695234 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.695238 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.695250 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.695256 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.695265 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.695268 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.695272 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.695274 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.695278 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.706202 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.706215 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.706231 LLDP, length 82 [|LLDP] 18:54:40.706233 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dce ed96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.706235 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.706240 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.706244 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.706249 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.706258 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.706260 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.706264 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.706276 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.706281 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.706283 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.706287 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.714457 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.714475 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.714490 LLDP, length 82 [|LLDP] 18:54:40.714492 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dd5 3a68 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.714494 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.714499 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.714503 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.714506 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.714518 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.714523 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.714532 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.714535 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.714540 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.714542 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.714546 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.725468 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.725490 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.725509 LLDP, length 82 [|LLDP] 18:54:40.725511 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ddd a0c9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.725513 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.725518 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.725527 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.725531 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.725535 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.725539 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.725543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.725554 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.725560 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.725562 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.725566 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.736477 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.736497 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.736515 LLDP, length 82 [|LLDP] 18:54:40.736516 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0de6 072f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.736518 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.736523 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.736527 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.736531 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.736536 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.736546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.736548 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.736560 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.736565 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.736567 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.736572 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.744732 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.744750 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.744767 LLDP, length 82 [|LLDP] 18:54:40.744768 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dec 53fd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.744770 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.744776 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.744780 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.744783 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.744795 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.744801 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.744810 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.744812 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.744817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.744819 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.744823 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.755744 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.755764 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.755781 LLDP, length 82 [|LLDP] 18:54:40.755783 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0df4 ba63 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.755784 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.755790 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.755796 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.755805 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.755808 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.755811 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.755815 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.755827 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.755832 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.755835 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.755839 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.766772 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.766791 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.766815 LLDP, length 82 [|LLDP] 18:54:40.766817 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dfd 20c9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.766819 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.766825 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.766829 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.766832 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.766845 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.766851 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.766861 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.766865 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.766869 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.766872 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.766876 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.775013 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.775033 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.775053 LLDP, length 82 [|LLDP] 18:54:40.775054 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e03 6d96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.775056 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.775061 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.775065 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.775069 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.775080 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.775086 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.775096 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.775098 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.775102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.775105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.775109 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.786020 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.786038 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.786055 LLDP, length 82 [|LLDP] 18:54:40.786056 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e0b d3fc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.786058 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.786063 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.786067 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.786072 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.786081 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.786084 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.786089 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.786100 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.786105 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.786108 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.786113 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.797031 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.797050 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.797067 LLDP, length 82 [|LLDP] 18:54:40.797068 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e14 3a63 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.797070 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.797075 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.797079 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.797083 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.797094 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.797101 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.797110 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.797113 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.797117 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.797119 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.797123 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.805289 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.805307 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.805323 LLDP, length 82 [|LLDP] 18:54:40.805324 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e1a 8731 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.805326 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.805332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.805341 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.805344 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.805348 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.805352 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.805356 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.805368 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.805373 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.805375 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.805379 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.816298 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.816317 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.816334 LLDP, length 82 [|LLDP] 18:54:40.816336 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e22 ed96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.816338 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.816343 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.816347 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.816350 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.816355 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.816365 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.816367 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.816380 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.816384 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.816387 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.816391 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.824554 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.824571 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.824588 LLDP, length 82 [|LLDP] 18:54:40.824590 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e29 3a64 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.824592 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.824596 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.824600 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.824603 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.824614 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.824620 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.824629 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.824632 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.824636 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.824638 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.824643 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.835564 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.835581 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.835597 LLDP, length 82 [|LLDP] 18:54:40.835598 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e31 a0ca 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.835600 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.835605 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.835611 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.835620 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.835623 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.835627 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.835631 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.835643 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.835657 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.835660 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.835664 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.846573 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.846591 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.846606 LLDP, length 82 [|LLDP] 18:54:40.846608 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e3a 0731 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.846610 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.846615 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.846618 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.846621 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.846633 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.846639 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.846647 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.846650 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.846654 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.846657 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.846661 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.854831 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.854851 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.854869 LLDP, length 82 [|LLDP] 18:54:40.854870 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e40 53fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.854872 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.854878 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.854882 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.854885 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.854897 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.854903 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.854912 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.854915 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.854919 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.854921 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.854925 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.865861 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.865891 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.865916 LLDP, length 82 [|LLDP] 18:54:40.865918 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e48 ba65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.865920 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.865926 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.865929 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.865935 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.865945 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.865949 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.865953 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.865965 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.865970 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.865973 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.865977 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.876868 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.876889 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.876911 LLDP, length 82 [|LLDP] 18:54:40.876913 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e51 20ca 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.876915 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.876922 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.876926 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.876929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.876942 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.876948 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.876958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.876961 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.876965 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.876968 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.876972 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.885119 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.885144 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.885165 LLDP, length 82 [|LLDP] 18:54:40.885166 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e57 6d97 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.885169 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.885175 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.885185 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.885188 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.885193 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.885197 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.885200 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.885221 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.885227 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.885229 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.885234 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.897760 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.897780 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.897805 LLDP, length 82 [|LLDP] 18:54:40.897806 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e5f d3fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.897808 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.897815 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.897819 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.897822 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.897828 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.897840 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.897843 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.897863 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.897869 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.897871 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.897876 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.904384 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.904398 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.904415 LLDP, length 82 [|LLDP] 18:54:40.904417 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e66 20ca 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.904419 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.904424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.904428 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.904431 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.904443 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.904448 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.904459 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.904462 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.904470 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.904473 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.904478 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.915397 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.915420 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.915440 LLDP, length 82 [|LLDP] 18:54:40.915442 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e6e 8730 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.915444 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.915450 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.915456 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.915466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.915468 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.915472 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.915475 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.915492 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.915497 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.915500 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.915504 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.926424 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.926446 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.926470 LLDP, length 82 [|LLDP] 18:54:40.926472 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e76 ed9f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.926474 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.926480 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.926484 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.926488 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.926500 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.926507 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.926522 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.926526 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.926530 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.926533 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.926537 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.934671 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.934691 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.934713 LLDP, length 82 [|LLDP] 18:54:40.934715 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e7d 3a64 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.934717 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.934723 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.934727 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.934730 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.934742 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.934749 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.934758 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.934761 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.934766 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.934768 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.934773 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.945686 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.945708 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.945732 LLDP, length 82 [|LLDP] 18:54:40.945734 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e85 a0ca 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.945736 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.945743 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.945746 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.945752 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.945763 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.945766 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.945770 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.945782 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.945787 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.945790 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.945795 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.956684 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.956710 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.956731 LLDP, length 82 [|LLDP] 18:54:40.956733 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e8e 0731 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.956735 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.956741 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.956745 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.956749 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.956760 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.956766 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.956776 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.956779 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.956783 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.956785 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.956790 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.964944 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.964969 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.964989 LLDP, length 82 [|LLDP] 18:54:40.964991 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e94 53ff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.964993 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.965000 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.965009 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.965013 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.965018 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.965022 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.965026 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.965038 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.965043 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.965045 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.965049 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.975953 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.975979 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.976001 LLDP, length 82 [|LLDP] 18:54:40.976003 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e9c ba63 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.976005 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.976011 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.976015 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.976019 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.976024 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.976034 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.976037 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.976049 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.976054 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.976056 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.976061 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.986967 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.986982 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.987002 LLDP, length 82 [|LLDP] 18:54:40.987003 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ea5 20ca 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.987005 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.987011 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.987014 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.987018 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.987030 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.987036 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.987045 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.987048 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.987052 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.987054 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.987059 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:40.995211 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:40.995231 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.995249 LLDP, length 82 [|LLDP] 18:54:40.995251 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0eab 6d96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:40.995253 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:40.995259 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:40.995264 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:40.995273 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.995276 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:40.995279 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:40.995283 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:40.995295 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:40.995300 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:40.995302 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:40.995307 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.006221 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.006241 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.006257 LLDP, length 82 [|LLDP] 18:54:41.006259 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0eb3 d3fc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.006261 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.006266 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.006270 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.006274 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.006286 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.006292 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.006301 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.006304 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.006308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.006310 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.006314 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.014479 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.014499 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.014516 LLDP, length 82 [|LLDP] 18:54:41.014517 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0eba 20ca 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.014520 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.014525 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.014529 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.014533 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.014545 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.014550 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.014559 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.014562 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.014566 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.014568 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.014573 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.025487 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.025506 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.025524 LLDP, length 82 [|LLDP] 18:54:41.025526 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ec2 8730 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.025528 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.025533 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.025536 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.025541 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.025550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.025553 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.025557 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.025569 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.025574 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.025577 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.025581 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.036496 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.036516 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.036536 LLDP, length 82 [|LLDP] 18:54:41.036537 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0eca ed96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.036539 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.036545 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.036548 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.036552 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.036563 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.036569 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.036578 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.036581 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.036585 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.036587 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.036592 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.044746 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.044758 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.044775 LLDP, length 82 [|LLDP] 18:54:41.044776 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ed1 3a6a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.044778 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.044784 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.044792 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.044795 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.044800 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.044803 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.055766 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.055785 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.055802 LLDP, length 82 [|LLDP] 18:54:41.055804 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ed9 a0c9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.055806 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.055811 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.055815 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.055818 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.055830 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.055835 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.055844 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.055849 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.055852 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.055854 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.055859 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.066784 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.066810 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.066834 LLDP, length 82 [|LLDP] 18:54:41.066836 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ee2 072f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.066838 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.066843 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.066847 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.066851 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.066862 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.066868 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.066879 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.066883 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.066886 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.066888 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.066893 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.075035 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.075058 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.075077 LLDP, length 82 [|LLDP] 18:54:41.075079 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ee8 53fc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.075081 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.075087 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.075091 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.075097 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.075106 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.075111 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.075114 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.075116 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.075119 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.075132 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.075137 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.086046 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.086066 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.086085 LLDP, length 82 [|LLDP] 18:54:41.086086 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ef0 ba63 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.086089 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.086094 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.086097 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.086101 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.086113 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.086119 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.086128 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.086132 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.086135 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.086137 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.086142 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.097053 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.097074 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.097093 LLDP, length 82 [|LLDP] 18:54:41.097095 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ef9 20c9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.097096 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.097102 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.097111 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.097116 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.097119 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.097121 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.097126 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.097130 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.097134 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.097145 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.097151 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.105314 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.105333 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.105351 LLDP, length 82 [|LLDP] 18:54:41.105353 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0eff 6d96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.105355 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.105360 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.105363 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.105367 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.105372 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.105382 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.105386 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.105388 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.105391 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.105402 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.105408 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.116320 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.116339 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.116356 LLDP, length 82 [|LLDP] 18:54:41.116358 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f07 d3fd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.116360 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.116365 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.116368 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.116372 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.116383 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.116389 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.116397 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.116402 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.116404 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.116406 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.116411 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.124579 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.124598 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.124615 LLDP, length 82 [|LLDP] 18:54:41.124617 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f0e 20ca 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.124619 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.124624 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.124630 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.124639 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.124643 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.124646 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.124648 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.124652 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.124655 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.124667 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.124672 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.135587 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.135606 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.135623 LLDP, length 82 [|LLDP] 18:54:41.135624 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f16 8730 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.135626 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.135632 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.135635 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.135639 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.135660 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.135666 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.135675 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.135680 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.135682 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.135685 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.135690 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.146598 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.146617 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.146635 LLDP, length 82 [|LLDP] 18:54:41.146636 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f1e ed97 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.146638 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.146644 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.146648 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.146651 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.146663 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.146668 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.146677 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.146681 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.146684 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.146686 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.146691 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.154852 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.154872 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.154889 LLDP, length 82 [|LLDP] 18:54:41.154891 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f25 3a64 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.154892 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.154898 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.154901 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.154906 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.154915 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.154920 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.154922 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.154925 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.154928 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.154941 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.154947 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.165866 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.165888 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.165905 LLDP, length 82 [|LLDP] 18:54:41.165907 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f2d a0cb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.165909 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.165915 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.165919 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.165922 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.165933 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.165939 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.165949 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.165953 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.165955 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.165957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.165962 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.176876 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.176897 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.176916 LLDP, length 82 [|LLDP] 18:54:41.176917 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f36 0735 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.176919 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.176925 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.176934 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.176939 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.176942 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.176944 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.176948 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.176952 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.176956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.176968 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.176973 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.185134 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.185153 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.185170 LLDP, length 82 [|LLDP] 18:54:41.185172 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f3c 53fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.185174 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.185179 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.185183 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.185187 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.185192 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.185201 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.185205 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.185208 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.185210 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.185222 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.185227 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.196143 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.196162 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.196180 LLDP, length 82 [|LLDP] 18:54:41.196182 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f44 ba65 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.196184 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.196189 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.196193 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.196197 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.196208 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.196214 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.196223 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.196228 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.196231 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.196233 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.196237 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.204399 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.204418 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.204435 LLDP, length 82 [|LLDP] 18:54:41.204437 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f4b 0731 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.204438 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.204444 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.204449 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.204458 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.204462 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.204465 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.204467 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.204471 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.204474 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.204486 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.204491 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.215409 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.215430 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.215447 LLDP, length 82 [|LLDP] 18:54:41.215449 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f53 6d98 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.215451 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.215457 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.215460 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.215464 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.215475 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.215481 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.215489 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.215494 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.215497 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.215499 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.215503 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.226420 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.226441 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.226459 LLDP, length 82 [|LLDP] 18:54:41.226461 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f5b d3fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.226463 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.226468 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.226472 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.226475 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.226487 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.226493 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.226501 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.226506 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.226509 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.226511 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.226515 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.234677 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.234697 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.234714 LLDP, length 82 [|LLDP] 18:54:41.234715 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f62 20ca 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.234717 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.234723 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.234726 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.234731 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.234740 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.234745 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.234748 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.234750 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.234753 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.234765 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.234770 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.245689 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.245702 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.245717 LLDP, length 82 [|LLDP] 18:54:41.245719 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f6a 8730 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.245721 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.245726 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.245729 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.245733 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.245745 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.245750 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.245759 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.245763 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.245766 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.245768 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.245772 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.256698 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.256716 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.256733 LLDP, length 82 [|LLDP] 18:54:41.256735 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f72 ed97 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.256737 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.256742 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.256751 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.256756 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.256758 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.256760 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.256765 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.256769 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.256772 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.256784 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.256789 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.264954 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.264974 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.264990 LLDP, length 82 [|LLDP] 18:54:41.264992 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f79 3a64 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.264994 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.264999 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.265003 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.265006 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.265011 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.265020 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.265024 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.265027 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.265029 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.265040 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.265046 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.275977 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.275993 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.276011 LLDP, length 82 [|LLDP] 18:54:41.276013 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f81 a0ca 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.276015 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.276020 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.276024 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.276027 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.276039 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.276045 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.276068 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.276081 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.276084 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.276087 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.276092 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.286976 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.286996 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.287015 LLDP, length 82 [|LLDP] 18:54:41.287017 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f8a 0730 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.287019 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.287024 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.287029 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.287038 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.287043 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.287046 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.287048 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.287052 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.287056 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.287067 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.287073 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.295235 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.295254 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.295272 LLDP, length 82 [|LLDP] 18:54:41.295273 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f90 5404 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.295275 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.295280 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.295284 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.295288 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.295300 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.295306 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.295315 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.295320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.295323 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.295325 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.295330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.306248 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.306269 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.306288 LLDP, length 82 [|LLDP] 18:54:41.306290 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f98 ba63 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.306292 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.306298 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.306302 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.306306 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.306317 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.306324 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.306334 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.306338 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.306341 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.306343 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.306348 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.314501 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.314524 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.314542 LLDP, length 82 [|LLDP] 18:54:41.314544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f9f 0730 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.314546 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.314552 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.314555 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.314561 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.314570 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.314575 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.314578 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.314580 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.314583 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.314595 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.314600 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.325517 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.325530 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.325547 LLDP, length 82 [|LLDP] 18:54:41.325549 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fa7 6d97 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.325551 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.325556 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.325560 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.325564 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.325576 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.325581 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.325591 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.325596 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.325598 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.325600 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.325605 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.336525 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.336544 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.336561 LLDP, length 82 [|LLDP] 18:54:41.336563 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0faf d3fd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.336566 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.336571 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.336580 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.336585 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.336588 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.336590 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.336595 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.336598 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.336602 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.336613 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.336619 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.344776 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.344796 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.344813 LLDP, length 82 [|LLDP] 18:54:41.344815 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fb6 20c9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.344817 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.344822 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.344826 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.344829 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.344835 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.344844 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.344848 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.344851 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.344853 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.344864 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.344870 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.355786 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.355805 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.355822 LLDP, length 82 [|LLDP] 18:54:41.355823 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fbe 872f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.355825 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.355830 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.355834 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.355837 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.355849 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.355855 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.355863 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.355868 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.355871 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.355873 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.355878 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.366797 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.366815 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.366831 LLDP, length 82 [|LLDP] 18:54:41.366833 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fc6 ed96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.366835 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.366840 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.366845 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.366854 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.366859 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.366862 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.366864 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.366867 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.366871 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.366882 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.366888 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.375055 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.375076 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.375094 LLDP, length 82 [|LLDP] 18:54:41.375096 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fcd 3a63 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.375098 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.375104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.375108 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.375111 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.375122 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.375128 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.375137 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.375142 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.375145 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.375147 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.375152 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.386067 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.386088 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.386108 LLDP, length 82 [|LLDP] 18:54:41.386109 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fd5 a0c9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.386112 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.386117 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.386121 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.386124 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.386136 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.386141 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.386151 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.386155 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.386158 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.386160 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.386164 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.397076 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.397095 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.397113 LLDP, length 82 [|LLDP] 18:54:41.397114 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fde 072f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.397116 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.397122 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.397125 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.397131 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.397140 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.397144 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.397147 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.397149 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.397153 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.397165 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.397170 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.405332 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.405353 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.405370 LLDP, length 82 [|LLDP] 18:54:41.405372 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fe4 53fc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.405374 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.405379 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.405383 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.405386 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.405397 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.405403 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.405412 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.405417 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.405419 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.405422 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.405426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.416347 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.416369 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.416389 LLDP, length 82 [|LLDP] 18:54:41.416390 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fec ba63 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.416393 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.416399 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.416408 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.416412 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.416415 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.416417 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.416423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.416427 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.416430 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.416442 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.416447 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.427740 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.427765 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.427791 LLDP, length 82 [|LLDP] 18:54:41.427792 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ff3 0730 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.427795 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.427802 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.427806 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.427810 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.427816 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.427828 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.427833 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.427836 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.427838 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.427850 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.427855 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.435620 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.435644 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.435680 LLDP, length 82 [|LLDP] 18:54:41.435682 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ffb 6d96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.435684 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.435691 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.435694 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.435698 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.435710 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.435716 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.435726 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.435731 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.435734 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.435736 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.435741 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.446641 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.446660 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.446681 LLDP, length 82 [|LLDP] 18:54:41.446683 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1003 d3fd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.446685 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.446691 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.446696 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.446706 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.446711 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.446718 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.446721 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.446725 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.446728 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.446741 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.446747 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.454901 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.454934 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.454964 LLDP, length 82 [|LLDP] 18:54:41.454984 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 100a 20ca 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.454987 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.454996 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.455002 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.455006 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.455020 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.455027 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.455040 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.455046 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.455049 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.455052 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.455057 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.465923 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.465961 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.465990 LLDP, length 82 [|LLDP] 18:54:41.465992 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1012 8731 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.465994 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.466004 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.466008 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.466012 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.466024 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.466031 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.466054 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.466061 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.466065 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.466067 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.466072 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.476935 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.476964 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.476999 LLDP, length 82 [|LLDP] 18:54:41.477001 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 101a ed97 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.477003 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.477011 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.477015 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.477021 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.477033 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.477038 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.477041 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.477044 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.477047 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.477059 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.477066 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.488368 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.488393 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.488417 LLDP, length 82 [|LLDP] 18:54:41.488418 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1021 3a64 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.488420 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.488427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.488430 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.488434 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.488445 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.488451 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.488462 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.488467 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.488471 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.488473 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.488477 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.496183 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.496207 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.496232 LLDP, length 82 [|LLDP] 18:54:41.496234 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1029 a0cb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.496236 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.496242 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.496253 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.496259 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.496262 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.496264 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.496270 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.496274 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.496278 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.496290 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.496296 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.504448 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.504478 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.504503 LLDP, length 82 [|LLDP] 18:54:41.504505 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 102f ed98 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.504507 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.504514 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.504518 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.504521 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.504527 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.504539 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.504544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.504547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.504549 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.504560 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.504566 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.515441 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.515465 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.515485 LLDP, length 82 [|LLDP] 18:54:41.515487 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1038 53fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.515489 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.515494 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.515498 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.515502 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.515526 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.515533 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.515543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.515547 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.515550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.515553 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.515558 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.526463 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.526484 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.526507 LLDP, length 82 [|LLDP] 18:54:41.526509 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1040 ba64 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.526511 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.526517 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.526523 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.526534 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.526539 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.526542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.526544 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.526548 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.526552 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.526563 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.526568 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.534717 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.534744 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.534768 LLDP, length 82 [|LLDP] 18:54:41.534769 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1047 0731 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.534771 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.534782 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.534786 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.534789 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.534801 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.534807 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.534818 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.534823 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.534826 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.534828 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.534833 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.548976 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.548999 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.549029 LLDP, length 82 [|LLDP] 18:54:41.549031 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 104f 6d9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.549033 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.549039 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.549043 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.549046 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.549059 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.549065 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.549077 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.549081 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.549085 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.549087 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.549091 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.556745 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.556768 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.556797 LLDP, length 82 [|LLDP] 18:54:41.556799 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1057 d3fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.556801 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.556808 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.556812 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.556817 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.556828 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.556833 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.556836 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.556838 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.556842 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.556854 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.556860 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.564989 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.565016 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.565039 LLDP, length 82 [|LLDP] 18:54:41.565041 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 105e 20ca 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.565043 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.565049 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.565053 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.565056 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.565068 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.565074 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.565084 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.565088 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.565091 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.565093 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.565098 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.576003 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.576034 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.576060 LLDP, length 82 [|LLDP] 18:54:41.576062 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1066 8730 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.576064 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.576071 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.576082 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.576087 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.576091 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.576093 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.576099 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.576102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.576106 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.576118 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.576123 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.587008 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.587036 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.587068 LLDP, length 82 [|LLDP] 18:54:41.587070 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 106e ed97 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.587072 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.587079 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.587083 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.587087 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.587093 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.587103 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.587108 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.587112 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.587114 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.587126 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.587132 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.595270 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.595296 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.595318 LLDP, length 82 [|LLDP] 18:54:41.595320 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1075 3a64 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.595322 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.595337 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.595340 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.595344 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.595360 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.595367 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.595378 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.595383 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.595386 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.595388 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.595392 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.607975 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.607993 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.608019 LLDP, length 82 [|LLDP] 18:54:41.608021 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 107d a0ca 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.608023 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.608030 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.608036 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.608045 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.608050 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.608053 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.608055 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.608059 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.608062 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.608075 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.608081 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.614523 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.614545 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.614563 LLDP, length 82 [|LLDP] 18:54:41.614565 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1083 ed96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.614567 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.614572 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.614575 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.614579 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.614591 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.614597 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.614607 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.614611 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.614614 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.614617 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.614621 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.625540 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.625567 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.625589 LLDP, length 82 [|LLDP] 18:54:41.625591 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 108c 53fd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.625593 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.625600 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.625603 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.625607 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.625619 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.625625 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.625635 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.625640 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.625643 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.625645 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.625650 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.636573 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.636598 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.636627 LLDP, length 82 [|LLDP] 18:54:41.636628 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1094 ba63 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.636630 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.636637 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.636641 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.636647 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.636659 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.636664 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.636667 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.636669 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.636673 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.636685 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.636690 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.644812 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.644840 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.644865 LLDP, length 82 [|LLDP] 18:54:41.644866 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 109b 0730 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.644869 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.644875 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.644882 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.644886 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.644899 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.644905 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.644916 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.644921 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.644924 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.644926 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.644932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.655820 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.655852 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.655876 LLDP, length 82 [|LLDP] 18:54:41.655878 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10a3 6d96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.655880 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.655886 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.655897 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.655903 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.655906 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.655908 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.655913 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.655917 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.655920 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.655932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.655941 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.666834 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.666862 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.666890 LLDP, length 82 [|LLDP] 18:54:41.666892 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10ab d3fd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.666894 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.666901 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.666905 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.666908 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.666914 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.666924 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.666929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.666932 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.666935 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.666947 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.666953 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.675090 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.675117 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.675140 LLDP, length 82 [|LLDP] 18:54:41.675141 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10b2 20c9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.675143 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.675149 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.675153 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.675157 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.675169 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.675180 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.675191 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.675196 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.675199 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.675201 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.675206 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.686107 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.686137 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.686166 LLDP, length 82 [|LLDP] 18:54:41.686167 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10ba 872f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.686169 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.686177 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.686182 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.686195 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.686200 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.686203 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.686205 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.686209 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.686212 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.686225 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.686231 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.694356 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.694386 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.694410 LLDP, length 82 [|LLDP] 18:54:41.694412 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10c0 d3fc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.694414 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.694420 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.694424 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.694427 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.694439 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.694445 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.694457 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.694462 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.694465 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.694467 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.694472 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.705374 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.705405 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.705431 LLDP, length 82 [|LLDP] 18:54:41.705433 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10c9 3a63 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.705435 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.705443 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.705447 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.705450 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.705462 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.705469 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.705480 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.705484 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.705487 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.705490 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.705495 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.716374 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.716400 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.716426 LLDP, length 82 [|LLDP] 18:54:41.716428 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10d1 a0c9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.716430 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.716436 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.716440 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.716446 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.716456 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.716460 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.716463 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.716465 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.716469 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.716481 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.716487 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.724630 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.724656 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.724677 LLDP, length 82 [|LLDP] 18:54:41.724680 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10d7 ed96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.724681 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.724687 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.724691 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.724694 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.724706 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.724716 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.724727 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.724731 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.724735 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.724737 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.724741 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.735638 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.735673 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.735695 LLDP, length 82 [|LLDP] 18:54:41.735697 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10e0 53fc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.735698 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.735704 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.735714 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.735720 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.735723 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.735725 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.735730 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.735734 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.735738 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.735749 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.735759 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.746647 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.746671 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.746695 LLDP, length 82 [|LLDP] 18:54:41.746697 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10e8 ba63 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.746699 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.746706 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.746710 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.746714 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.746719 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.746731 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.746735 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.746739 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.746741 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.746754 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.746759 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.754906 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.754933 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.754957 LLDP, length 82 [|LLDP] 18:54:41.754958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10ef 0730 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.754960 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.754966 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.754970 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.754974 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.754986 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.754992 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.755003 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.755007 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.755010 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.755013 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.755018 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.765938 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.765972 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.766006 LLDP, length 82 [|LLDP] 18:54:41.766008 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10f7 6d97 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.766011 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.766019 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.766024 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.766036 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.766041 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.766045 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.766047 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.766051 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.766054 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.766067 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.766073 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.776941 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.776966 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.776993 LLDP, length 82 [|LLDP] 18:54:41.776995 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10ff d3fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.776997 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.777004 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.777007 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.777011 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.777027 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.777033 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.777045 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.777050 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.777053 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.777055 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.777060 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.785189 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.785211 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.785236 LLDP, length 82 [|LLDP] 18:54:41.785237 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1106 20ca 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.785239 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.785246 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.785249 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.785253 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.785264 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.785270 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.785281 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.785286 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.785290 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.785292 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.785297 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.796205 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.796234 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.796259 LLDP, length 82 [|LLDP] 18:54:41.796261 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 110e 8737 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.796263 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.796269 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.796273 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.796279 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.796290 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.796295 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.796298 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.796300 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.796304 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.796315 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.796321 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.804453 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.804481 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.804506 LLDP, length 82 [|LLDP] 18:54:41.804508 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1114 d3fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.804510 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.804516 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.804520 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.804523 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.804535 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.804540 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.804551 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.804556 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.804559 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.804561 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.804566 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.815475 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.815506 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.815532 LLDP, length 82 [|LLDP] 18:54:41.815534 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 111d 3a64 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.815536 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.815543 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.815560 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.815565 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.815569 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.815571 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.815576 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.815580 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.815584 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.815596 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.815602 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.826482 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.826513 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.826546 LLDP, length 82 [|LLDP] 18:54:41.826548 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1125 a0cb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.826550 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.826558 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.826562 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.826565 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.826571 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.826582 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.826588 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.826591 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.826593 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.826606 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.826611 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.834731 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.834751 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.834774 LLDP, length 82 [|LLDP] 18:54:41.834775 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 112b ed9c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.834777 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.834783 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.834787 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.834791 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.834803 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.834809 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.834820 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.834824 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.834827 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.834830 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.834834 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.845745 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.845770 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.845793 LLDP, length 82 [|LLDP] 18:54:41.845795 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1134 53fe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.845797 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.845804 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.845809 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.845820 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.845824 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.845828 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.845830 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.845833 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.845837 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.845849 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.845854 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.856751 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.856776 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.856798 LLDP, length 82 [|LLDP] 18:54:41.856800 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 113c ba64 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.856802 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.856808 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.856812 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.856815 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.856826 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.856832 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.856843 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.856847 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.856850 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.856852 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.856857 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.865009 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.865034 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.865056 LLDP, length 82 [|LLDP] 18:54:41.865058 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1143 0731 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.865060 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.865066 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.865070 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.865073 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.865085 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.865091 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.865102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.865106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.865109 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.865112 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.865116 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.876019 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.876045 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.876068 LLDP, length 82 [|LLDP] 18:54:41.876070 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 114b 6d98 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.876073 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.876079 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.876083 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.876088 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.876098 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.876103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.876106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.876108 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.876112 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.876123 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.876129 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.887025 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.887051 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.887072 LLDP, length 82 [|LLDP] 18:54:41.887073 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1153 d3fd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.887076 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.887082 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.887086 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.887089 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.887101 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.887107 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.887118 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.887123 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.887126 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.887128 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.887133 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.895286 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.895303 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.895325 LLDP, length 82 [|LLDP] 18:54:41.895326 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 115a 20ca 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.895328 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.895334 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.895344 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.895350 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.895353 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.895355 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.895360 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.895363 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.895367 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.895378 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.895383 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.906296 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.906321 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.906344 LLDP, length 82 [|LLDP] 18:54:41.906345 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1162 8730 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.906347 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.906353 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.906357 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.906360 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.906366 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.906376 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.906380 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.906383 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.906386 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.906397 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.906404 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.914552 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.914571 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.914592 LLDP, length 82 [|LLDP] 18:54:41.914593 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1168 d404 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.914595 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.914602 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.914605 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.914609 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.914621 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.914627 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.914637 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.914641 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.914644 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.914646 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.914651 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.925560 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.925585 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.925606 LLDP, length 82 [|LLDP] 18:54:41.925608 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1171 3a63 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.925610 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.925616 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.925620 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.925630 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.925635 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.925638 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.925640 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.925644 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.925647 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.925659 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.925665 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.936569 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.936592 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.936613 LLDP, length 82 [|LLDP] 18:54:41.936615 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1179 a0ca 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.936618 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.936623 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.936628 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.936631 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.936643 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.936649 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.936659 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.936663 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.936666 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.936668 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.936672 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.944825 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.944849 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.944870 LLDP, length 82 [|LLDP] 18:54:41.944871 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 117f ed96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.944873 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.944879 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.944882 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.944886 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.944897 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.944904 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.944914 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.944919 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.944922 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.944924 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.944929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.955836 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.955861 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.955881 LLDP, length 82 [|LLDP] 18:54:41.955883 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1188 53fd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.955885 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.955891 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.955895 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.955900 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.955910 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.955915 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.955918 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.955920 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.955923 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.955935 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.955940 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.966847 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.966870 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.966891 LLDP, length 82 [|LLDP] 18:54:41.966893 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1190 ba63 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.966895 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.966901 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.966904 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.966908 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.966919 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.966925 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.966935 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.966940 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.966943 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.966945 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.966949 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.975102 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.975126 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.975146 LLDP, length 82 [|LLDP] 18:54:41.975148 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1197 0730 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.975150 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.975156 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.975165 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.975170 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.975173 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.975175 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.975180 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.975184 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.975187 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.975199 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.975204 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.986113 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.986136 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.986157 LLDP, length 82 [|LLDP] 18:54:41.986158 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 119f 6d96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.986160 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.986166 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.986170 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.986173 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.986179 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.986190 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.986194 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.986197 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.986199 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.986211 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.986216 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:41.994371 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:41.994394 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.994414 LLDP, length 82 [|LLDP] 18:54:41.994416 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11a5 ba63 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:41.994418 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:41.994424 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:41.994427 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:41.994431 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:41.994443 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:41.994449 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:41.994460 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:41.994464 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.994467 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:41.994469 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:41.994474 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:42.005382 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:42.005406 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:42.005427 LLDP, length 82 [|LLDP] 18:54:42.005429 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11ae 20c9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:42.005431 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:42.005437 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:42.005442 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:42.005453 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:42.005457 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:42.005460 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:42.005463 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:42.005466 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:42.005470 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:42.005482 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:42.005488 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:42.016483 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:42.016545 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:42.016610 LLDP, length 82 [|LLDP] 18:54:42.016613 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11b6 8730 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:42.016615 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:42.016628 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:42.016633 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:42.016637 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:42.016651 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:42.016661 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:42.016683 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:42.016689 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:42.016694 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:42.016697 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:42.016703 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:42.024717 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:42.024781 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:42.024838 LLDP, length 82 [|LLDP] 18:54:42.024840 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11bc d3fc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:42.024843 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:42.024854 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:42.024858 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:42.024862 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:42.024876 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:42.024885 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:42.024906 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:42.024912 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:42.024916 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:42.024918 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:42.024924 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:42.035744 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:42.035793 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:42.035850 LLDP, length 82 [|LLDP] 18:54:42.035853 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11c5 3a63 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:42.035856 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:42.035867 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:42.035871 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:42.035879 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:42.035896 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:42.035902 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:42.035906 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:42.035908 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:42.035912 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:42.035926 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:42.035934 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:42.046726 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:42.046771 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:42.046818 LLDP, length 82 [|LLDP] 18:54:42.046820 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11cd a0d1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:42.046823 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:42.046834 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:42.046838 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:42.046841 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:42.046855 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:42.046862 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:42.046878 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:42.046884 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:42.046888 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:42.046890 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:42.046896 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:42.054986 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:42.055044 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:42.055098 LLDP, length 82 [|LLDP] 18:54:42.055100 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11d3 ed96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:42.055103 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:42.055111 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:42.055130 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:42.055137 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:42.055142 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:42.055144 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:42.055153 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:42.055157 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:42.055161 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:42.055175 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:42.055183 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:42.065987 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:42.066035 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:42.066083 LLDP, length 82 [|LLDP] 18:54:42.066085 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11dc 53fd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:42.066088 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:42.066098 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:42.066102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:42.066106 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:42.066114 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:42.066131 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:42.066137 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:42.066141 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:42.066143 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:42.066156 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:42.066162 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:42.076994 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:42.077038 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:42.077084 LLDP, length 82 [|LLDP] 18:54:42.077086 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11e4 ba63 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:42.077089 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:42.077098 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:42.077102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:42.077106 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:42.077118 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:42.077125 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:42.077143 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:42.077148 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:42.077152 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:42.077154 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:42.077160 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:42.085280 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:42.085334 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:42.085386 LLDP, length 82 [|LLDP] 18:54:42.085388 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11eb 0734 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:42.085391 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:42.085403 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:42.085409 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:42.085427 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:42.085432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:42.085436 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:42.085438 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:42.085442 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:42.085445 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:42.085458 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:42.085465 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:42.096269 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:42.096318 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:42.096366 LLDP, length 82 [|LLDP] 18:54:42.096368 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11f3 6d96 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:42.096371 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:42.096382 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:42.096386 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:42.096389 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:42.096403 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:42.096410 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:42.096427 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:42.096433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:42.096436 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:42.096439 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:42.096444 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:42.104470 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:42.104493 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:42.104512 LLDP, length 82 [|LLDP] 18:54:42.104513 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11f9 ba64 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:42.104516 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:42.104521 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:42.104525 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:42.104528 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:42.104540 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:42.104546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:42.104556 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:42.104561 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:42.104564 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:42.104566 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:42.104571 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:42.115478 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:42.115499 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:42.115517 LLDP, length 82 [|LLDP] 18:54:42.115519 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1202 20ca 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:42.115521 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:42.115527 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:42.115530 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:42.115536 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:42.115545 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:42.115550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:42.115553 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:42.115554 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:42.115558 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:42.115569 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:42.115575 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:42.126487 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:42.126508 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:42.126526 LLDP, length 82 [|LLDP] 18:54:42.126528 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 120a 8731 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:42.126530 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:42.126536 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:42.126539 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:42.126542 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:42.126553 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:42.126559 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:42.126569 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:42.126574 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:42.126577 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:42.126579 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:42.126583 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:42.134740 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:42.134760 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:42.134776 LLDP, length 82 [|LLDP] 18:54:42.134778 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1210 d3fd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:42.134780 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:42.134785 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:42.134794 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:42.134799 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:42.134802 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:42.134804 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:42.134808 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:42.134812 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:42.134815 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:42.134827 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:42.134833 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:42.145750 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:42.145768 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:42.145784 LLDP, length 82 [|LLDP] 18:54:42.145785 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1219 3a64 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:42.145787 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:42.145793 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:42.145797 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:42.145800 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:42.145805 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:42.145814 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:42.145818 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:42.145821 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:42.145823 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:42.145834 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:42.145840 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:42.156760 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:42.156777 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:42.156793 LLDP, length 82 [|LLDP] 18:54:42.156795 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1221 a0cb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:42.156797 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:42.156802 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:42.156806 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:42.156810 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:42.156822 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:42.156828 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:42.156836 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:42.156840 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:42.156843 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:42.156845 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:42.156850 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:42.165020 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:42.165038 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:42.165055 LLDP, length 82 [|LLDP] 18:54:42.165056 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1227 ed9e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:42.165058 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:42.165064 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:42.165069 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:42.165077 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:42.165082 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:42.165084 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:42.165087 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:42.165091 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:42.165094 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:42.165106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:42.165111 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:42.176028 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:42.176046 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:42.176062 LLDP, length 82 [|LLDP] 18:54:42.176063 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1230 53fd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:42.176065 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:42.176070 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:42.176074 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:42.176077 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:42.176088 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:42.176094 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:42.176103 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:42.176107 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:42.176110 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:42.176112 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:42.176117 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:42.184285 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:42.184303 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:42.184318 LLDP, length 82 [|LLDP] 18:54:42.184320 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1236 a0ca 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:42.184322 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:42.184327 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:42.184330 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:42.184333 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:42.184345 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:42.184350 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:42.184358 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:42.184362 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:42.184365 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:42.184368 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:42.184372 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:42.195293 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:42.195310 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:42.195326 LLDP, length 82 [|LLDP] 18:54:42.195328 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 123f 0731 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:42.195329 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:42.195335 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:42.195339 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:42.195344 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:42.195353 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:42.195358 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:42.195360 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:42.195362 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:42.195366 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:42.195377 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:42.195383 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:42.206305 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:42.206324 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:42.206340 LLDP, length 82 [|LLDP] 18:54:42.206342 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1247 6d97 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:42.206344 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:42.206349 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:42.206353 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:42.206356 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:42.206367 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:42.206373 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:42.206382 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:42.206386 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:42.206389 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:42.206391 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:42.206395 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:42.214561 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:42.214580 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:42.214597 LLDP, length 82 [|LLDP] 18:54:42.214598 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 124d ba64 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:42.214600 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:42.214606 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:42.214615 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:42.214620 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:42.214622 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:42.214624 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:42.214629 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:42.214632 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:42.214636 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:42.214647 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:42.214653 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:42.225572 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:42.225592 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:42.225609 LLDP, length 82 [|LLDP] 18:54:42.225611 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1256 20ca 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:42.225612 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:42.225618 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:42.225622 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:42.225625 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:42.225630 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:42.225639 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:42.225644 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:42.225647 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:42.225649 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:42.225660 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:42.225666 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:42.236586 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:42.236606 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:42.236624 LLDP, length 82 [|LLDP] 18:54:42.236625 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 125e 8730 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:42.236628 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:42.236633 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:42.236637 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:42.236640 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:42.236651 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:42.236657 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:42.236667 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:42.236671 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:42.236674 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:42.236676 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:42.236680 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:42.244840 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:42.244858 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:42.244874 LLDP, length 82 [|LLDP] 18:54:42.244876 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1264 d3fd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:42.244877 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:42.244882 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:42.244888 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:42.244897 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:42.244901 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:42.244904 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:42.244906 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:42.244910 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:42.244913 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:42.244925 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:42.244930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:42.255848 IP 1.1.1.2.19499 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:54:42.255865 IP 1.1.1.2.27096 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:42.255881 LLDP, length 82 [|LLDP] 18:54:42.255883 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 126d 3a63 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:54:42.255885 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 18:54:42.255890 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 18:54:42.255893 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 18:54:42.255897 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:54:42.255909 IP 192.168.1.1.17699 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:54:42.255914 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:54:42.255923 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 18:54:42.255927 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:42.255930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:54:42.255932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:54:42.255937 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:54:44.984893 LLDP, length 230: dentlab-infra2 tcpdump: verbose output suppressed, use -v or -vv for full protocol decode listening on swp33, link-type EN10MB (Ethernet), capture size 262144 bytes 8971 packets captured 8972 packets received by filter 0 packets dropped by kernel 599 packets dropped by interface -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_bum_traffic_bridge_with_rif from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_bum_traffic_bridge.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=42, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=42, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=14] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 18:54:50 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=42, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 INFO asyncssh:logging.py:92 [conn=42, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=16] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 INFO asyncssh:logging.py:92 [conn=42, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=42, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=42, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=18] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=42, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=18] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"b2:b2:ed:f9:e0:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"f6:33:41:29:6d:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":95,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=42, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=42, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=20] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=42, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=42, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=21] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=42, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=22] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 18:54:51 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=42, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=23] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=42, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=24] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 18:54:51 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=42, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=25] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=42, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=26] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=42, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=26] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":95,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=42, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=42, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=27] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=42, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=42, chan=28] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=42, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=42, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=42, chan=28] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/bridging/test_bridging_bum_traffic_bridge.py::test_bridging_bum_traffic_bridge_without_rif | 248.01 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_bum_traffic_bridge_without_rif">Starting testcase:test_bridging_bum_traffic_bridge_without_rif from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_bum_traffic_bridge.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-2481' coro=<test_bridging_bum_traffic_bridge_without_rif() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_bum_traffic_bridge.py:173> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=42, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=43] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=43] Local address: 172.17.0.3, port 45174 INFO asyncssh:logging.py:92 [conn=43] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=43] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=43] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=43, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 18:54:52 UTC 2023 INFO asyncssh:logging.py:92 [conn=43, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=43, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=43, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=43, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=43, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=43, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=43, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=43, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=43, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=43, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip -j link show swp33 INFO asyncssh:logging.py:92 [conn=43, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=8] Command: ip -j link show swp33 INFO asyncssh:logging.py:92 [conn=43, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=8] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:2:7' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Bridged_UnknownL2UC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for BridgedLLDP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for LACPDU INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4ToMe INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ARP_Request_BC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ARP_Reply INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_Broadcast INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPV4_SSH INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPV4_Telnet INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Host_to_Host_IPv4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_ICMP_Request INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_DCHP_BC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_Reserved_MC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_All_Systems_on_this_Subnet INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_All_Routers_on_this_Subnet INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_OSPFIGP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_RIP2_Routers INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_EIGRP_Routers INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_DHCP_Server/Relay_Agent INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_VRRP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_IGMP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPV4_BGP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [DENT infrastructure 2] Starting timeout --preserve-status 15 tcpdump -i swp33 -n on infra2... INFO asyncssh:logging.py:92 [conn=43, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=9] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S timeout --preserve-status 15 tcpdump -i swp33 -n INFO asyncssh:logging.py:92 [conn=43, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=10] Command: echo onl | sudo -S timeout --preserve-status 15 tcpdump -i swp33 -n INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f75bba60>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI Bridged_UnknownL2UC SIP-DIP N/A Tx 597 Rx 597 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI BridgedLLDP SIP-DIP N/A Tx 597 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI LACPDU SIP-DIP N/A Tx 597 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPv4ToMe SIP-DIP N/A Tx 597 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI ARP_Request_BC SIP-DIP N/A Tx 597 Rx 597 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI ARP_Reply SIP-DIP N/A Tx 597 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPv4_Broadcast SIP-DIP N/A Tx 597 Rx 597 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPV4_SSH SIP-DIP N/A Tx 597 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPV4_Telnet SIP-DIP N/A Tx 597 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI Host_to_Host_IPv4 SIP-DIP N/A Tx 597 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPv4_ICMP_Request SIP-DIP N/A Tx 597 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPv4_DCHP_BC SIP-DIP N/A Tx 597 Rx 597 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPv4_Reserved_MC SIP-DIP N/A Tx 597 Rx 597 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPv4_All_Systems_on_this_Subnet SIP-DIP N/A Tx 597 Rx 597 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPv4_All_Routers_on_this_Subnet SIP-DIP N/A Tx 597 Rx 597 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPv4_OSPFIGP SIP-DIP N/A Tx 597 Rx 597 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPv4_RIP2_Routers SIP-DIP N/A Tx 597 Rx 597 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPv4_EIGRP_Routers SIP-DIP N/A Tx 597 Rx 597 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPv4_DHCP_Server/Relay_Agent SIP-DIP N/A Tx 597 Rx 597 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPv4_VRRP SIP-DIP N/A Tx 597 Rx 597 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPv4_IGMP SIP-DIP N/A Tx 597 Rx 597 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPV4_BGP SIP-DIP N/A Tx 597 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=43, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=10] Channel closed DEBUG infra2:Logger.py:156 18:58:44.533744 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:44.533821 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.533827 LLDP, length 82 [|LLDP] 18:58:44.533829 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00a4 a233 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:44.533831 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:44.533836 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:44.533841 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:44.533844 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:44.533848 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.533853 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:44.541963 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:44.541982 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.541986 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.541991 LLDP, length 82 [|LLDP] 18:58:44.541993 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00aa ef00 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:44.541995 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:44.541999 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:44.542003 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:44.542007 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:44.542011 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:44.552978 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:44.552996 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.553000 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.553004 LLDP, length 82 [|LLDP] 18:58:44.553006 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00b3 5566 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:44.553009 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:44.553017 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:44.553021 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:44.553024 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:44.553028 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:44.561230 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:44.561247 LLDP, length 82 [|LLDP] 18:58:44.561249 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00b9 a239 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:44.561251 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:44.561256 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:44.561260 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:44.561262 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.561267 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.561271 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:44.561276 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:44.572240 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:44.572256 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.572260 LLDP, length 82 [|LLDP] 18:58:44.572261 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00c2 0899 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:44.572263 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:44.572272 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:44.572276 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:44.572278 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:44.572282 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.572287 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:44.583239 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:44.583253 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.583257 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.583262 LLDP, length 82 [|LLDP] 18:58:44.583263 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00ca 6eff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:44.583265 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:44.583270 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:44.583274 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:44.583276 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:44.583281 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:44.591496 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:44.591509 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.591513 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.591517 LLDP, length 82 [|LLDP] 18:58:44.591519 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00d0 bbcd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:44.591521 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:44.591525 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:44.591529 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:44.591532 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:44.591536 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:44.602504 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:44.602514 LLDP, length 82 [|LLDP] 18:58:44.602515 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00d9 2233 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:44.602517 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:44.602521 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:44.602525 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:44.602527 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.602531 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.602535 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:44.602540 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:44.613516 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:44.613527 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.613531 LLDP, length 82 [|LLDP] 18:58:44.613532 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00e1 8899 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:44.613534 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:44.613538 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:44.613543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:44.613545 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:44.613549 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.613553 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:44.621769 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:44.621778 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.621782 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.621786 LLDP, length 82 [|LLDP] 18:58:44.621788 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00e7 d566 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:44.621790 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:44.621794 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:44.621798 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:44.621800 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:44.621804 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:44.632778 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:44.632789 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.632793 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.632797 LLDP, length 82 [|LLDP] 18:58:44.632798 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00f0 3bcd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:44.632801 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:44.632805 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:44.632809 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:44.632812 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:44.632816 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:44.641040 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:44.641050 LLDP, length 82 [|LLDP] 18:58:44.641051 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00f6 8899 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:44.641053 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:44.641057 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:44.641061 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:44.641063 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.641067 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.641071 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:44.641076 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:44.652048 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:44.652058 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.652062 LLDP, length 82 [|LLDP] 18:58:44.652063 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00fe eeff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:44.652065 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:44.652069 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:44.652073 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:44.652076 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:44.652079 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.652083 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:44.663072 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:44.663081 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.663085 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.663089 LLDP, length 82 [|LLDP] 18:58:44.663090 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0107 5566 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:44.663092 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:44.663096 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:44.663100 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:44.663103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:44.663107 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:44.671321 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:44.671333 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.671337 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.671341 LLDP, length 82 [|LLDP] 18:58:44.671342 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 010d a233 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:44.671344 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:44.671349 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:44.671353 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:44.671355 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:44.671359 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:44.682331 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:44.682343 LLDP, length 82 [|LLDP] 18:58:44.682344 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0116 0899 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:44.682346 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:44.682350 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:44.682354 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:44.682357 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.682361 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.682365 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:44.682369 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:44.693339 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:44.693349 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.693353 LLDP, length 82 [|LLDP] 18:58:44.693354 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 011e 6f06 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:44.693356 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:44.693360 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:44.693364 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:44.693367 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:44.693371 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.693375 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:44.701594 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:44.701603 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.701607 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.701611 LLDP, length 82 [|LLDP] 18:58:44.701612 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0124 bbcc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:44.701614 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:44.701618 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:44.701622 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:44.701624 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:44.701629 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:44.712602 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:44.712611 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.712615 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.712619 LLDP, length 82 [|LLDP] 18:58:44.712620 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 012d 2233 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:44.712622 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:44.712626 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:44.712630 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:44.712633 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:44.712637 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:44.723612 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:44.723623 LLDP, length 82 [|LLDP] 18:58:44.723624 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0135 889a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:44.723626 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:44.723630 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:44.723634 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:44.723636 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.723640 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.723644 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:44.723658 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:44.731874 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:44.731885 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.731889 LLDP, length 82 [|LLDP] 18:58:44.731890 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 013b d567 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:44.731892 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:44.731896 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:44.731900 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:44.731903 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:44.731907 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.731911 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:44.742882 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:44.742891 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.742895 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.742899 LLDP, length 82 [|LLDP] 18:58:44.742901 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0144 3bcd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:44.742902 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:44.742906 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:44.742910 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:44.742912 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:44.742917 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:44.751136 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:44.751145 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.751149 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.751153 LLDP, length 82 [|LLDP] 18:58:44.751154 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 014a 889a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:44.751156 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:44.751160 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:44.751164 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:44.751167 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:44.751171 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:44.762149 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:44.762158 LLDP, length 82 [|LLDP] 18:58:44.762160 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0152 ef01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:44.762162 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:44.762166 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:44.762169 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:44.762172 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.762176 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.762180 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:44.762184 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:44.773156 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:44.773165 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.773169 LLDP, length 82 [|LLDP] 18:58:44.773170 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 015b 5568 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:44.773172 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:44.773176 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:44.773180 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:44.773182 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:44.773186 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.773190 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:44.781432 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:44.781448 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.781452 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.781457 LLDP, length 82 [|LLDP] 18:58:44.781458 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0161 a235 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:44.781460 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:44.781465 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:44.781469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:44.781472 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:44.781476 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:44.792426 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:44.792437 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.792441 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.792445 LLDP, length 82 [|LLDP] 18:58:44.792446 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 016a 089b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:44.792448 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:44.792453 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:44.792456 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:44.792459 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:44.792464 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:44.803433 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:44.803442 LLDP, length 82 [|LLDP] 18:58:44.803443 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0172 6f01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:44.803445 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:44.803449 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:44.803453 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:44.803456 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.803460 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.803464 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:44.803468 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:44.811691 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:44.811699 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.811704 LLDP, length 82 [|LLDP] 18:58:44.811705 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0178 bbd4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:44.811707 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:44.811711 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:44.811715 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:44.811718 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:44.811722 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.811726 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:44.822700 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:44.822710 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.822714 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.822718 LLDP, length 82 [|LLDP] 18:58:44.822720 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0181 2234 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:44.822721 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:44.822725 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:44.822729 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:44.822732 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:44.822736 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:44.830960 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:44.830969 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.830973 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.830977 LLDP, length 82 [|LLDP] 18:58:44.830978 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0187 6f01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:44.830980 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:44.830984 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:44.830988 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:44.830991 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:44.830995 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:44.841970 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:44.841980 LLDP, length 82 [|LLDP] 18:58:44.841981 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 018f d568 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:44.841983 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:44.841987 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:44.841991 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:44.841994 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.841998 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.842002 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:44.842006 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:44.852983 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:44.852992 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.852996 LLDP, length 82 [|LLDP] 18:58:44.852998 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0198 3bce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:44.852999 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:44.853004 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:44.853008 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:44.853010 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:44.853014 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.853018 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:44.861236 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:44.861244 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.861248 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.861252 LLDP, length 82 [|LLDP] 18:58:44.861254 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 019e 889b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:44.861256 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:44.861260 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:44.861264 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:44.861266 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:44.861271 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:44.872245 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:44.872254 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.872258 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.872262 LLDP, length 82 [|LLDP] 18:58:44.872263 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01a6 ef01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:44.872265 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:44.872270 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:44.872274 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:44.872276 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:44.872281 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:44.883255 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:44.883263 LLDP, length 82 [|LLDP] 18:58:44.883264 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01af 5567 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:44.883266 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:44.883270 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:44.883274 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:44.883277 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.883281 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.883285 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:44.883289 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:44.891512 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:44.891521 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.891525 LLDP, length 82 [|LLDP] 18:58:44.891527 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01b5 a235 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:44.891528 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:44.891532 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:44.891536 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:44.891539 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:44.891543 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.891548 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:44.902524 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:44.902533 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.902537 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.902541 LLDP, length 82 [|LLDP] 18:58:44.902543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01be 089b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:44.902545 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:44.902549 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:44.902553 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:44.902556 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:44.902560 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:44.913552 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:44.913569 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.913573 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.913577 LLDP, length 82 [|LLDP] 18:58:44.913579 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01c6 6f01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:44.913581 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:44.913586 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:44.913590 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:44.913593 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:44.913597 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:44.921797 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:44.921812 LLDP, length 82 [|LLDP] 18:58:44.921813 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01cc bbce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:44.921815 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:44.921819 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:44.921823 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:44.921826 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.921830 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.921835 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:44.921839 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:44.932808 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:44.932821 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.932825 LLDP, length 82 [|LLDP] 18:58:44.932826 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01d5 2235 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:44.932829 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:44.932833 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:44.932837 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:44.932840 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:44.932844 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.932848 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:44.941061 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:44.941072 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.941077 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.941081 LLDP, length 82 [|LLDP] 18:58:44.941082 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01db 6f01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:44.941084 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:44.941088 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:44.941092 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:44.941095 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:44.941099 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:44.952073 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:44.952087 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.952091 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.952095 LLDP, length 82 [|LLDP] 18:58:44.952096 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01e3 d567 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:44.952099 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:44.952103 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:44.952107 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:44.952109 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:44.952117 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:44.963110 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:44.963123 LLDP, length 82 [|LLDP] 18:58:44.963125 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01ec 3bce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:44.963127 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:44.963131 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:44.963135 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:44.963138 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.963142 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.963146 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:44.963151 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:44.971339 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:44.971352 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.971356 LLDP, length 82 [|LLDP] 18:58:44.971357 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01f2 889b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:44.971359 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:44.971363 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:44.971368 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:44.971370 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:44.971374 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.971379 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:44.982360 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:44.982375 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.982380 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.982383 LLDP, length 82 [|LLDP] 18:58:44.982385 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01fa ef04 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:44.982387 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:44.982391 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:44.982395 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:44.982398 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:44.982402 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:44.993363 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:44.993378 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.993382 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.993386 LLDP, length 82 [|LLDP] 18:58:44.993387 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0203 5567 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:44.993390 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:44.993394 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:44.993397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:44.993400 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:44.993411 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.001620 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.001631 LLDP, length 82 [|LLDP] 18:58:45.001633 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0209 a234 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.001635 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.001638 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.001642 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.001644 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.001649 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.001653 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.001657 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.012629 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.012648 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.012652 LLDP, length 82 [|LLDP] 18:58:45.012653 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0212 089a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.012655 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.012659 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.012664 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.012666 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.012670 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.012674 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.023637 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.023656 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.023661 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.023665 LLDP, length 82 [|LLDP] 18:58:45.023666 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 021a 6f01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.023668 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.023672 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.023676 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.023679 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.023683 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.031891 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.031901 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.031905 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.031909 LLDP, length 82 [|LLDP] 18:58:45.031910 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0220 bbce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.031912 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.031916 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.031920 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.031923 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.031927 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.042899 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.042909 LLDP, length 82 [|LLDP] 18:58:45.042910 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0229 2234 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.042912 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.042916 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.042920 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.042922 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.042926 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.042930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.042935 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.051158 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.051167 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.051171 LLDP, length 82 [|LLDP] 18:58:45.051172 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 022f 6f01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.051174 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.051178 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.051182 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.051185 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.051189 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.051194 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.062167 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.062176 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.062180 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.062185 LLDP, length 82 [|LLDP] 18:58:45.062186 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0237 d56e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.062188 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.062192 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.062196 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.062198 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.062203 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.073177 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.073185 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.073190 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.073194 LLDP, length 82 [|LLDP] 18:58:45.073195 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0240 3bce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.073197 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.073201 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.073205 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.073207 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.073211 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.081435 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.081444 LLDP, length 82 [|LLDP] 18:58:45.081445 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0246 889a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.081447 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.081451 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.081455 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.081457 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.081462 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.081466 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.081470 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.092447 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.092457 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.092461 LLDP, length 82 [|LLDP] 18:58:45.092462 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 024e ef01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.092464 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.092468 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.092472 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.092474 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.092478 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.092483 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.103454 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.103464 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.103468 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.103473 LLDP, length 82 [|LLDP] 18:58:45.103474 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0257 5567 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.103476 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.103481 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.103484 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.103487 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.103491 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.111713 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.111722 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.111726 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.111730 LLDP, length 82 [|LLDP] 18:58:45.111732 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 025d a234 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.111734 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.111738 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.111742 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.111745 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.111749 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.122722 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.122731 LLDP, length 82 [|LLDP] 18:58:45.122732 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0266 089a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.122734 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.122739 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.122743 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.122745 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.122749 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.122753 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.122758 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.130981 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.130990 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.130994 LLDP, length 82 [|LLDP] 18:58:45.130995 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 026c 5567 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.130997 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.131000 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.131004 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.131007 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.131011 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.131015 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.141989 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.141999 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.142003 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.142007 LLDP, length 82 [|LLDP] 18:58:45.142009 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0274 bbce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.142011 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.142015 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.142018 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.142021 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.142025 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.153000 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.153009 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.153013 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.153017 LLDP, length 82 [|LLDP] 18:58:45.153018 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 027d 2234 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.153020 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.153024 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.153028 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.153030 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.153035 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.161257 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.161266 LLDP, length 82 [|LLDP] 18:58:45.161267 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0283 6f01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.161269 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.161273 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.161276 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.161279 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.161283 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.161287 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.161291 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.172268 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.172277 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.172280 LLDP, length 82 [|LLDP] 18:58:45.172282 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 028b d567 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.172284 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.172288 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.172292 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.172294 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.172298 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.172302 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.183276 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.183284 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.183288 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.183292 LLDP, length 82 [|LLDP] 18:58:45.183293 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0294 3bcd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.183295 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.183300 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.183303 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.183306 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.183310 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.191533 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.191541 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.191545 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.191549 LLDP, length 82 [|LLDP] 18:58:45.191550 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 029a 889b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.191552 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.191557 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.191561 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.191563 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.191567 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.202546 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.202555 LLDP, length 82 [|LLDP] 18:58:45.202557 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02a2 ef01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.202558 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.202562 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.202566 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.202569 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.202573 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.202577 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.202581 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.213555 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.213564 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.213568 LLDP, length 82 [|LLDP] 18:58:45.213570 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02ab 5567 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.213571 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.213575 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.213579 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.213582 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.213586 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.213590 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.221811 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.221820 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.221824 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.221827 LLDP, length 82 [|LLDP] 18:58:45.221829 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02b1 a234 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.221831 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.221835 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.221839 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.221841 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.221845 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.232820 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.232829 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.232833 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.232837 LLDP, length 82 [|LLDP] 18:58:45.232838 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02ba 089d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.232840 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.232844 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.232848 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.232851 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.232855 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.241080 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.241089 LLDP, length 82 [|LLDP] 18:58:45.241090 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02c0 5567 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.241092 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.241096 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.241100 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.241103 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.241106 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.241110 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.241114 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.252096 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.252106 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.252110 LLDP, length 82 [|LLDP] 18:58:45.252112 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02c8 bbce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.252114 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.252118 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.252121 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.252124 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.252128 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.252133 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.263123 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.263135 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.263139 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.263143 LLDP, length 82 [|LLDP] 18:58:45.263145 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02d1 2234 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.263147 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.263151 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.263155 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.263158 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.263162 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.271359 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.271370 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.271374 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.271378 LLDP, length 82 [|LLDP] 18:58:45.271379 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02d7 6f00 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.271381 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.271385 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.271389 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.271392 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.271396 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.282367 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.282376 LLDP, length 82 [|LLDP] 18:58:45.282377 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02df d567 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.282379 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.282383 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.282387 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.282389 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.282394 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.282398 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.282402 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.293377 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.293386 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.293390 LLDP, length 82 [|LLDP] 18:58:45.293391 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02e8 3bcd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.293393 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.293396 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.293400 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.293403 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.293407 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.293411 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.301633 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.301642 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.301646 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.301650 LLDP, length 82 [|LLDP] 18:58:45.301651 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02ee 889a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.301653 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.301657 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.301661 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.301663 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.301667 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.312644 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.312654 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.312658 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.312662 LLDP, length 82 [|LLDP] 18:58:45.312663 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02f6 ef07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.312665 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.312669 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.312673 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.312675 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.312679 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.320902 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.320911 LLDP, length 82 [|LLDP] 18:58:45.320912 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02fd 3bcd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.320914 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.320918 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.320922 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.320924 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.320928 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.320932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.320937 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.331911 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.331919 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.331923 LLDP, length 82 [|LLDP] 18:58:45.331925 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0305 a233 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.331926 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.331930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.331935 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.331937 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.331941 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.331945 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.342943 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.342958 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.342962 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.342966 LLDP, length 82 [|LLDP] 18:58:45.342968 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 030e 089a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.342970 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.342974 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.342978 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.342981 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.342985 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.351182 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.351193 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.351197 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.351201 LLDP, length 82 [|LLDP] 18:58:45.351202 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0314 5567 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.351204 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.351208 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.351212 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.351215 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.351220 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.362190 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.362201 LLDP, length 82 [|LLDP] 18:58:45.362202 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 031c bbcd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.362204 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.362208 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.362212 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.362215 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.362219 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.362223 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.362228 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.373200 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.373210 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.373214 LLDP, length 82 [|LLDP] 18:58:45.373215 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0325 2233 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.373217 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.373221 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.373224 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.373227 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.373231 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.373236 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.381457 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.381466 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.381470 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.381474 LLDP, length 82 [|LLDP] 18:58:45.381475 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 032b 6f01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.381477 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.381481 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.381484 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.381487 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.381491 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.392465 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.392474 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.392478 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.392482 LLDP, length 82 [|LLDP] 18:58:45.392483 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0333 d567 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.392485 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.392489 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.392493 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.392496 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.392500 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.403476 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.403484 LLDP, length 82 [|LLDP] 18:58:45.403486 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 033c 3bcd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.403488 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.403492 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.403496 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.403498 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.403502 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.403506 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.403510 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.411733 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.411744 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.411748 LLDP, length 82 [|LLDP] 18:58:45.411749 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0342 889a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.411752 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.411756 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.411759 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.411762 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.411766 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.411770 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.422744 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.422752 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.422756 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.422760 LLDP, length 82 [|LLDP] 18:58:45.422762 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 034a ef00 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.422764 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.422768 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.422772 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.422774 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.422778 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.431000 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.431008 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.431012 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.431016 LLDP, length 82 [|LLDP] 18:58:45.431018 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0351 3bd3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.431020 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.431024 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.431028 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.431030 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.431035 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.442013 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.442022 LLDP, length 82 [|LLDP] 18:58:45.442023 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0359 a233 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.442025 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.442029 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.442032 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.442035 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.442040 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.442043 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.442048 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.453022 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.453032 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.453036 LLDP, length 82 [|LLDP] 18:58:45.453037 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0362 089a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.453039 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.453043 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.453047 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.453050 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.453053 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.453058 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.461278 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.461288 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.461292 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.461296 LLDP, length 82 [|LLDP] 18:58:45.461298 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0368 5566 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.461299 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.461303 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.461307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.461310 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.461314 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.472302 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.472317 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.472322 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.472326 LLDP, length 82 [|LLDP] 18:58:45.472327 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0370 bbcc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.472329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.472333 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.472340 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.472343 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.472348 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.483337 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.483362 LLDP, length 82 [|LLDP] 18:58:45.483364 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0379 2234 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.483367 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.483371 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.483375 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.483378 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.483383 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.483388 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.483392 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.491573 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.491590 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.491594 LLDP, length 82 [|LLDP] 18:58:45.491596 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 037f 6f00 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.491598 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.491603 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.491607 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.491610 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.491614 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.491618 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.502573 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.502590 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.502595 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.502599 LLDP, length 82 [|LLDP] 18:58:45.502600 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0387 d566 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.502602 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.502606 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.502610 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.502613 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.502617 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.513588 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.513600 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.513604 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.513608 LLDP, length 82 [|LLDP] 18:58:45.513610 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0390 3bcc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.513612 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.513616 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.513620 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.513623 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.513628 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.521838 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.521847 LLDP, length 82 [|LLDP] 18:58:45.521849 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0396 8899 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.521851 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.521855 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.521859 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.521861 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.521865 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.521870 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.521874 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.532847 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.532858 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.532862 LLDP, length 82 [|LLDP] 18:58:45.532863 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 039e eeff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.532865 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.532869 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.532873 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.532875 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.532879 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.532883 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.541103 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.541113 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.541117 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.541121 LLDP, length 82 [|LLDP] 18:58:45.541122 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03a5 3bcd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.541124 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.541128 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.541132 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.541134 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.541139 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.552120 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.552132 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.552136 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.552140 LLDP, length 82 [|LLDP] 18:58:45.552141 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03ad a233 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.552143 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.552148 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.552152 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.552154 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.552158 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.563126 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.563137 LLDP, length 82 [|LLDP] 18:58:45.563138 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03b6 08a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.563140 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.563144 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.563148 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.563151 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.563155 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.563159 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.563163 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.571389 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.571406 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.571410 LLDP, length 82 [|LLDP] 18:58:45.571412 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03bc 5566 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.571414 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.571418 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.571422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.571425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.571428 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.571433 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.582395 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.582406 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.582410 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.582414 LLDP, length 82 [|LLDP] 18:58:45.582416 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03c4 bbcd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.582418 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.582422 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.582426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.582428 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.582433 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.593401 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.593411 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.593415 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.593419 LLDP, length 82 [|LLDP] 18:58:45.593420 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03cd 2233 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.593422 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.593426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.593430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.593433 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.593437 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.601671 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.601682 LLDP, length 82 [|LLDP] 18:58:45.601683 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03d3 6eff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.601685 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.601688 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.601692 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.601695 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.601698 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.601703 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.601707 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.612669 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.612679 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.612683 LLDP, length 82 [|LLDP] 18:58:45.612685 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03db d566 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.612687 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.612690 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.612694 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.612697 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.612701 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.612705 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.620927 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.620938 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.620942 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.620946 LLDP, length 82 [|LLDP] 18:58:45.620947 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03e2 2233 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.620949 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.620954 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.620957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.620960 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.620964 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.631937 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.631948 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.631952 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.631956 LLDP, length 82 [|LLDP] 18:58:45.631958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03ea 8899 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.631960 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.631964 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.631967 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.631970 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.631974 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.642948 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.642958 LLDP, length 82 [|LLDP] 18:58:45.642960 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03f2 ef00 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.642962 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.642966 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.642970 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.642972 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.642976 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.642980 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.642984 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.651202 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.651211 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.651214 LLDP, length 82 [|LLDP] 18:58:45.651216 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03f9 3bcd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.651218 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.651221 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.651225 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.651228 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.651232 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.651236 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.662214 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.662224 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.662228 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.662232 LLDP, length 82 [|LLDP] 18:58:45.662233 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0401 a233 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.662235 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.662239 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.662243 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.662246 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.662250 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.673222 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.673232 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.673236 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.673240 LLDP, length 82 [|LLDP] 18:58:45.673241 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 040a 0899 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.673243 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.673248 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.673252 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.673254 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.673259 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.681480 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.681490 LLDP, length 82 [|LLDP] 18:58:45.681492 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0410 556d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.681494 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.681498 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.681502 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.681504 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.681508 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.681513 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.681517 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.692514 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.692535 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.692540 LLDP, length 82 [|LLDP] 18:58:45.692541 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0418 bbcd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.692544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.692548 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.692552 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.692555 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.692559 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.692564 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.703522 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.703539 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.703544 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.703548 LLDP, length 82 [|LLDP] 18:58:45.703550 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0421 2233 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.703551 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.703556 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.703559 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.703562 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.703567 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.711767 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.711783 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.711787 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.711791 LLDP, length 82 [|LLDP] 18:58:45.711793 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0427 6f00 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.711795 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.711799 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.711804 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.711807 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.711811 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.722773 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.722787 LLDP, length 82 [|LLDP] 18:58:45.722789 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 042f d566 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.722791 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.722795 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.722799 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.722802 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.722806 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.722811 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.722815 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.731025 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.731037 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.731041 LLDP, length 82 [|LLDP] 18:58:45.731042 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0436 2233 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.731044 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.731048 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.731052 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.731055 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.731059 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.731064 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.742036 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.742046 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.742050 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.742054 LLDP, length 82 [|LLDP] 18:58:45.742056 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 043e 8899 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.742058 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.742062 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.742067 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.742069 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.742074 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.753066 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.753083 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.753088 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.753092 LLDP, length 82 [|LLDP] 18:58:45.753093 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0446 ef00 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.753096 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.753100 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.753104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.753107 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.753112 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.761303 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.761315 LLDP, length 82 [|LLDP] 18:58:45.761317 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 044d 3bce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.761319 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.761323 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.761327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.761329 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.761333 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.761337 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.761342 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.772313 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.772323 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.772327 LLDP, length 82 [|LLDP] 18:58:45.772328 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0455 a233 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.772330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.772334 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.772338 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.772341 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.772344 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.772349 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.783338 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.783353 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.783357 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.783361 LLDP, length 82 [|LLDP] 18:58:45.783363 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 045e 089a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.783365 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.783369 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.783373 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.783376 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.783380 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.791581 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.791593 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.791597 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.791601 LLDP, length 82 [|LLDP] 18:58:45.791602 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0464 5566 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.791604 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.791609 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.791613 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.791615 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.791620 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.802592 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.802602 LLDP, length 82 [|LLDP] 18:58:45.802604 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 046c bbcc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.802606 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.802610 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.802614 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.802616 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.802620 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.802624 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.802629 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.813599 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.813610 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.813614 LLDP, length 82 [|LLDP] 18:58:45.813615 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0475 223a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.813617 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.813621 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.813625 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.813628 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.813632 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.813636 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.821857 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.821868 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.821872 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.821876 LLDP, length 82 [|LLDP] 18:58:45.821877 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 047b 6f00 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.821879 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.821884 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.821887 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.821890 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.821894 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.832869 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.832880 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.832884 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.832888 LLDP, length 82 [|LLDP] 18:58:45.832890 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0483 d566 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.832892 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.832896 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.832900 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.832902 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.832906 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.841125 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.841135 LLDP, length 82 [|LLDP] 18:58:45.841136 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 048a 2233 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.841138 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.841142 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.841146 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.841148 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.841152 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.841156 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.841160 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.852136 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.852145 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.852149 LLDP, length 82 [|LLDP] 18:58:45.852151 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0492 8899 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.852153 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.852156 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.852160 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.852163 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.852167 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.852171 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.863143 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.863153 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.863157 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.863161 LLDP, length 82 [|LLDP] 18:58:45.863162 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 049a ef00 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.863164 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.863169 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.863173 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.863175 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.863179 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.871406 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.871417 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.871420 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.871424 LLDP, length 82 [|LLDP] 18:58:45.871426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04a1 3bcc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.871428 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.871432 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.871436 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.871438 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.871443 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.882411 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.882423 LLDP, length 82 [|LLDP] 18:58:45.882424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04a9 a233 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.882426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.882430 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.882433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.882436 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.882440 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.882444 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.882448 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.893422 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.893433 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.893437 LLDP, length 82 [|LLDP] 18:58:45.893439 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04b2 0899 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.893440 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.893445 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.893449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.893451 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.893455 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.893460 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.901679 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.901688 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.901692 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.901696 LLDP, length 82 [|LLDP] 18:58:45.901697 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04b8 5566 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.901699 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.901703 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.901707 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.901710 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.901714 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.912688 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.912698 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.912702 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.912706 LLDP, length 82 [|LLDP] 18:58:45.912707 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04c0 bbcd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.912709 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.912713 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.912717 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.912720 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.912724 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.920944 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.920953 LLDP, length 82 [|LLDP] 18:58:45.920955 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04c7 0899 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.920957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.920961 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.920964 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.920967 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.920971 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.920975 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.920980 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.931958 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.931967 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.931971 LLDP, length 82 [|LLDP] 18:58:45.931973 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04cf 6f06 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.931975 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.931979 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.931982 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.931985 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.931989 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.931994 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.942967 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.942976 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.942980 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.942984 LLDP, length 82 [|LLDP] 18:58:45.942986 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04d7 d566 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.942987 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.942991 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.942995 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.942998 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.943002 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.951223 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.951233 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.951237 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.951241 LLDP, length 82 [|LLDP] 18:58:45.951242 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04de 2233 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.951244 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.951248 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.951252 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.951254 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.951259 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.962233 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.962242 LLDP, length 82 [|LLDP] 18:58:45.962244 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04e6 8899 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.962245 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.962249 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.962253 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.962255 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.962260 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.962264 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.962269 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.973242 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.973252 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.973256 LLDP, length 82 [|LLDP] 18:58:45.973257 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04ee eeff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.973259 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.973263 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.973267 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.973270 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.973274 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.973278 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.981519 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.981537 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.981541 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.981545 LLDP, length 82 [|LLDP] 18:58:45.981547 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04f5 3bcc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.981549 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.981554 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.981558 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.981561 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.981565 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.992525 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.992540 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.992545 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.992549 LLDP, length 82 [|LLDP] 18:58:45.992551 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04fd a233 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.992553 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.992557 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.992561 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.992564 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.992568 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.003529 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.003542 LLDP, length 82 [|LLDP] 18:58:46.003543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0506 0899 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.003545 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.003550 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.003554 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.003556 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.003560 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.003564 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.003569 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.015600 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.015614 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.015619 LLDP, length 82 [|LLDP] 18:58:46.015620 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 050c 5566 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.015622 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.015626 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.015630 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.015633 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.015636 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.015641 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.022797 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.022810 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.022814 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.022818 LLDP, length 82 [|LLDP] 18:58:46.022826 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0514 bbcd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.022828 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.022833 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.022837 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.022840 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.022844 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.031050 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.031062 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.031066 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.031070 LLDP, length 82 [|LLDP] 18:58:46.031072 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 051b 089a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.031074 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.031078 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.031082 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.031084 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.031088 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.042064 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.042077 LLDP, length 82 [|LLDP] 18:58:46.042079 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0523 6f01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.042081 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.042085 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.042089 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.042092 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.042096 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.042100 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.042105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.053076 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.053090 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.053095 LLDP, length 82 [|LLDP] 18:58:46.053096 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 052b d567 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.053099 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.053103 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.053107 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.053110 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.053114 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.053119 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.061336 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.061357 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.061361 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.061365 LLDP, length 82 [|LLDP] 18:58:46.061367 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0532 2234 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.061369 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.061374 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.061378 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.061381 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.061385 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.072341 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.072356 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.072360 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.072364 LLDP, length 82 [|LLDP] 18:58:46.072365 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 053a 889a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.072367 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.072371 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.072375 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.072378 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.072382 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.083349 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.083362 LLDP, length 82 [|LLDP] 18:58:46.083363 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0542 ef01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.083365 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.083369 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.083373 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.083376 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.083380 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.083384 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.083389 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.091606 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.091618 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.091622 LLDP, length 82 [|LLDP] 18:58:46.091623 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0549 3bce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.091625 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.091629 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.091633 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.091636 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.091640 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.091644 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.102615 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.102626 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.102631 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.102635 LLDP, length 82 [|LLDP] 18:58:46.102636 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0551 a234 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.102638 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.102642 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.102646 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.102649 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.102654 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.110870 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.110880 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.110884 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.110887 LLDP, length 82 [|LLDP] 18:58:46.110889 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0557 ef01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.110891 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.110895 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.110899 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.110901 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.110905 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.121877 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.121887 LLDP, length 82 [|LLDP] 18:58:46.121888 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0560 5568 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.121890 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.121894 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.121898 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.121900 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.121904 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.121909 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.121913 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.132888 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.132898 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.132902 LLDP, length 82 [|LLDP] 18:58:46.132903 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0568 bbce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.132905 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.132909 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.132913 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.132916 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.132920 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.132925 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.141146 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.141156 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.141160 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.141164 LLDP, length 82 [|LLDP] 18:58:46.141165 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 056f 089b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.141167 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.141171 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.141175 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.141178 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.141182 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.152156 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.152165 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.152169 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.152173 LLDP, length 82 [|LLDP] 18:58:46.152175 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0577 6f01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.152177 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.152180 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.152184 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.152187 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.152191 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.163166 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.163176 LLDP, length 82 [|LLDP] 18:58:46.163177 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 057f d567 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.163179 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.163183 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.163186 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.163189 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.163193 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.163197 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.163201 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.171426 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.171437 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.171441 LLDP, length 82 [|LLDP] 18:58:46.171442 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0586 2234 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.171444 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.171448 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.171452 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.171455 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.171458 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.171463 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.182433 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.182445 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.182449 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.182453 LLDP, length 82 [|LLDP] 18:58:46.182455 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 058e 88a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.182457 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.182461 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.182465 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.182467 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.182471 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.193444 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.193455 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.193459 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.193464 LLDP, length 82 [|LLDP] 18:58:46.193465 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0596 ef01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.193467 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.193472 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.193476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.193479 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.193483 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.201702 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.201712 LLDP, length 82 [|LLDP] 18:58:46.201713 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 059d 3bcd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.201715 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.201719 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.201723 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.201725 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.201730 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.201733 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.201738 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.212710 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.212720 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.212724 LLDP, length 82 [|LLDP] 18:58:46.212726 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05a5 a234 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.212727 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.212732 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.212736 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.212738 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.212742 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.212747 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.220966 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.220976 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.220980 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.220984 LLDP, length 82 [|LLDP] 18:58:46.220985 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05ab ef01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.220988 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.220992 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.220995 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.220998 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.221002 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.231977 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.231986 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.231990 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.231994 LLDP, length 82 [|LLDP] 18:58:46.231996 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05b4 5567 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.231997 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.232001 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.232005 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.232008 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.232013 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.242988 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.242999 LLDP, length 82 [|LLDP] 18:58:46.243000 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05bc bbcd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.243003 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.243007 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.243010 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.243013 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.243017 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.243021 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.243026 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.251246 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.251256 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.251260 LLDP, length 82 [|LLDP] 18:58:46.251262 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05c3 089b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.251263 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.251267 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.251271 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.251274 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.251278 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.251283 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.262255 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.262265 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.262269 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.262273 LLDP, length 82 [|LLDP] 18:58:46.262275 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05cb 6f01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.262277 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.262281 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.262285 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.262287 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.262292 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.273264 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.273274 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.273278 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.273282 LLDP, length 82 [|LLDP] 18:58:46.273283 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05d3 d567 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.273285 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.273289 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.273293 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.273296 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.273300 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.281523 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.281532 LLDP, length 82 [|LLDP] 18:58:46.281534 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05da 2234 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.281536 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.281540 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.281544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.281546 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.281550 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.281554 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.281558 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.292539 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.292551 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.292555 LLDP, length 82 [|LLDP] 18:58:46.292557 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05e2 889b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.292559 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.292563 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.292567 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.292570 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.292574 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.292578 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.303544 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.303556 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.303560 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.303564 LLDP, length 82 [|LLDP] 18:58:46.303566 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05ea ef01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.303568 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.303572 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.303576 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.303579 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.303583 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.311801 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.311810 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.311814 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.311818 LLDP, length 82 [|LLDP] 18:58:46.311820 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05f1 3bce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.311822 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.311826 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.311830 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.311833 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.311837 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.322811 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.322822 LLDP, length 82 [|LLDP] 18:58:46.322823 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05f9 a234 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.322825 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.322829 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.322832 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.322835 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.322839 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.322843 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.322847 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.331065 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.331075 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.331079 LLDP, length 82 [|LLDP] 18:58:46.331080 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05ff ef01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.331082 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.331086 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.331090 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.331092 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.331096 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.331100 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.342078 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.342088 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.342092 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.342096 LLDP, length 82 [|LLDP] 18:58:46.342097 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0608 5568 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.342099 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.342103 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.342107 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.342110 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.342114 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.353089 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.353101 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.353104 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.353108 LLDP, length 82 [|LLDP] 18:58:46.353110 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0610 bbd2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.353112 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.353116 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.353120 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.353122 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.353127 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.361344 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.361353 LLDP, length 82 [|LLDP] 18:58:46.361355 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0617 089a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.361357 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.361361 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.361364 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.361367 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.361371 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.361375 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.361379 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.372358 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.372371 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.372375 LLDP, length 82 [|LLDP] 18:58:46.372376 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 061f 6f01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.372378 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.372382 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.372386 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.372388 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.372392 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.372397 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.383367 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.383378 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.383382 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.383386 LLDP, length 82 [|LLDP] 18:58:46.383388 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0627 d568 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.383390 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.383394 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.383398 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.383400 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.383404 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.391621 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.391632 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.391636 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.391640 LLDP, length 82 [|LLDP] 18:58:46.391641 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 062e 2234 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.391643 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.391655 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.391660 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.391663 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.391667 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.402635 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.402647 LLDP, length 82 [|LLDP] 18:58:46.402648 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0636 889a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.402650 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.402654 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.402658 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.402660 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.402665 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.402669 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.402673 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.410890 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.410901 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.410905 LLDP, length 82 [|LLDP] 18:58:46.410906 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 063c d567 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.410908 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.410912 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.410916 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.410918 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.410922 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.410926 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.421932 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.421953 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.421958 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.421962 LLDP, length 82 [|LLDP] 18:58:46.421964 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0645 3bcd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.421966 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.421971 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.421975 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.421978 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.421983 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.432933 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.432949 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.432953 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.432957 LLDP, length 82 [|LLDP] 18:58:46.432959 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 064d a23a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.432961 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.432965 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.432969 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.432972 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.432976 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.441176 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.441188 LLDP, length 82 [|LLDP] 18:58:46.441190 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0653 ef01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.441192 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.441196 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.441200 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.441203 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.441207 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.441212 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.441216 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.452186 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.452205 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.452209 LLDP, length 82 [|LLDP] 18:58:46.452211 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 065c 5567 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.452213 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.452217 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.452221 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.452224 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.452229 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.452233 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.463199 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.463214 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.463218 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.463223 LLDP, length 82 [|LLDP] 18:58:46.463224 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0664 bbcd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.463226 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.463231 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.463235 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.463237 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.463241 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.471458 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.471473 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.471477 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.471481 LLDP, length 82 [|LLDP] 18:58:46.471483 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 066b 089a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.471485 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.471489 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.471493 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.471496 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.471500 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.482467 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.482484 LLDP, length 82 [|LLDP] 18:58:46.482486 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0673 6f00 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.482488 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.482492 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.482496 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.482498 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.482503 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.482507 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.482511 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.493495 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.493519 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.493524 LLDP, length 82 [|LLDP] 18:58:46.493526 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 067b d567 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.493528 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.493532 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.493537 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.493540 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.493544 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.493549 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.501766 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.501796 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.501801 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.501806 LLDP, length 82 [|LLDP] 18:58:46.501808 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0682 2234 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.501811 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.501815 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.501819 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.501823 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.501828 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.512756 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.512775 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.512779 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.512783 LLDP, length 82 [|LLDP] 18:58:46.512789 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 068a 88bc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.512792 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.512797 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.512801 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.512804 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.512808 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.521008 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.521026 LLDP, length 82 [|LLDP] 18:58:46.521032 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0690 d588 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.521034 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.521039 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.521043 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.521046 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.521050 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.521054 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.521059 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.532020 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.532037 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.532042 LLDP, length 82 [|LLDP] 18:58:46.532044 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0699 3bee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.532046 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.532050 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.532054 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.532057 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.532062 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.532067 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.543022 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.543037 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.543041 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.543045 LLDP, length 82 [|LLDP] 18:58:46.543047 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06a1 a255 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.543049 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.543053 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.543057 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.543060 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.543065 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.551279 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.551293 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.551297 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.551302 LLDP, length 82 [|LLDP] 18:58:46.551303 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06a7 ef22 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.551305 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.551309 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.551313 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.551316 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.551321 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.562303 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.562323 LLDP, length 82 [|LLDP] 18:58:46.562325 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06b0 5588 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.562327 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.562331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.562335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.562338 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.562343 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.562347 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.562351 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.573306 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.573324 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.573328 LLDP, length 82 [|LLDP] 18:58:46.573330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06b8 bbee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.573332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.573336 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.573340 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.573343 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.573347 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.573352 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.581559 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.581573 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.581577 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.581581 LLDP, length 82 [|LLDP] 18:58:46.581583 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06bf 08bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.581585 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.581593 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.581597 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.581600 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.581604 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.592564 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.592580 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.592584 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.592588 LLDP, length 82 [|LLDP] 18:58:46.592590 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06c7 6f22 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.592592 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.592596 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.592600 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.592603 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.592607 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.600842 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.600861 LLDP, length 82 [|LLDP] 18:58:46.600863 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06cd bbef 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.600865 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.600869 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.600873 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.600876 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.600881 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.600886 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.600890 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.611844 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.611872 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.611876 LLDP, length 82 [|LLDP] 18:58:46.611878 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06d6 2255 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.611880 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.611884 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.611888 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.611891 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.611895 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.611900 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.622870 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.622889 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.622894 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.622898 LLDP, length 82 [|LLDP] 18:58:46.622900 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06de 88bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.622902 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.622906 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.622910 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.622913 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.622917 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.631108 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.631126 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.631131 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.631135 LLDP, length 82 [|LLDP] 18:58:46.631137 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06e4 d588 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.631139 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.631143 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.631147 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.631150 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.631154 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.642126 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.642142 LLDP, length 82 [|LLDP] 18:58:46.642143 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06ed 3bef 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.642145 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.642150 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.642154 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.642157 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.642161 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.642165 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.642169 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.653127 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.653144 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.653148 LLDP, length 82 [|LLDP] 18:58:46.653149 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06f5 a255 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.653151 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.653155 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.653159 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.653163 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.653166 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.653171 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.661384 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.661400 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.661404 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.661408 LLDP, length 82 [|LLDP] 18:58:46.661410 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06fb ef21 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.661412 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.661416 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.661420 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.661423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.661427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.672388 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.672403 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.672408 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.672416 LLDP, length 82 [|LLDP] 18:58:46.672418 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0704 5589 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.672420 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.672425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.672429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.672432 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.672436 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.683400 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.683415 LLDP, length 82 [|LLDP] 18:58:46.683417 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 070c bbef 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.683419 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.683423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.683427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.683429 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.683434 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.683438 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.683442 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.691687 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.691711 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.691715 LLDP, length 82 [|LLDP] 18:58:46.691717 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0713 08bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.691719 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.691724 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.691728 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.691731 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.691736 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.691741 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.702671 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.702688 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.702692 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.702697 LLDP, length 82 [|LLDP] 18:58:46.702698 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 071b 6f22 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.702701 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.702705 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.702709 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.702711 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.702716 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.710933 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.710949 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.710953 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.710957 LLDP, length 82 [|LLDP] 18:58:46.710959 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0721 bbef 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.710961 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.710965 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.710969 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.710972 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.710976 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.721938 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.721954 LLDP, length 82 [|LLDP] 18:58:46.721956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 072a 225c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.721957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.721962 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.721965 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.721968 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.721973 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.721977 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.721981 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.732947 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.732961 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.732965 LLDP, length 82 [|LLDP] 18:58:46.732967 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0732 88bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.732969 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.732973 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.732977 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.732980 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.732984 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.732988 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.741203 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.741219 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.741224 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.741228 LLDP, length 82 [|LLDP] 18:58:46.741229 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0738 d588 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.741232 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.741236 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.741240 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.741242 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.741247 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.752217 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.752233 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.752237 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.752241 LLDP, length 82 [|LLDP] 18:58:46.752243 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0741 3bef 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.752245 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.752249 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.752254 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.752257 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.752261 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.763231 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.763254 LLDP, length 82 [|LLDP] 18:58:46.763256 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0749 a255 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.763258 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.763262 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.763266 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.763269 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.763274 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.763278 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.763282 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.771493 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.771514 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.771518 LLDP, length 82 [|LLDP] 18:58:46.771520 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 074f ef22 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.771523 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.771527 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.771531 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.771534 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.771538 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.771543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.782500 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.782518 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.782522 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.782527 LLDP, length 82 [|LLDP] 18:58:46.782528 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0758 5588 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.782531 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.782536 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.782540 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.782543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.782547 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.793507 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.793526 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.793530 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.793534 LLDP, length 82 [|LLDP] 18:58:46.793536 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0760 bbee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.793538 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.793542 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.793546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.793549 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.793554 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.801768 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.801785 LLDP, length 82 [|LLDP] 18:58:46.801787 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0767 08bc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.801789 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.801793 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.801797 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.801800 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.801804 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.801808 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.801812 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.812766 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.812782 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.812786 LLDP, length 82 [|LLDP] 18:58:46.812787 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 076f 6f22 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.812790 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.812794 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.812798 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.812801 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.812813 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.812818 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.821022 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.821039 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.821043 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.821047 LLDP, length 82 [|LLDP] 18:58:46.821049 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0775 bbee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.821051 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.821055 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.821060 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.821062 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.821067 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.832042 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.832059 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.832063 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.832067 LLDP, length 82 [|LLDP] 18:58:46.832069 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 077e 2255 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.832071 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.832075 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.832079 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.832082 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.832086 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.843046 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.843063 LLDP, length 82 [|LLDP] 18:58:46.843064 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0786 88bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.843066 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.843070 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.843074 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.843077 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.843081 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.843086 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.843090 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.851301 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.851318 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.851322 LLDP, length 82 [|LLDP] 18:58:46.851324 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 078c d588 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.851326 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.851330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.851334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.851337 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.851341 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.851345 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.862313 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.862329 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.862334 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.862338 LLDP, length 82 [|LLDP] 18:58:46.862339 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0795 3bee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.862341 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.862346 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.862350 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.862353 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.862357 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.873328 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.873345 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.873349 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.873353 LLDP, length 82 [|LLDP] 18:58:46.873355 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 079d a255 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.873357 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.873361 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.873365 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.873368 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.873372 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.881580 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.881600 LLDP, length 82 [|LLDP] 18:58:46.881601 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07a3 ef22 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.881603 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.881608 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.881612 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.881614 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.881619 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.881623 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.881628 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.892590 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.892605 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.892609 LLDP, length 82 [|LLDP] 18:58:46.892611 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07ac 5588 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.892613 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.892617 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.892622 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.892624 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.892628 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.892633 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.900843 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.900858 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.900862 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.900866 LLDP, length 82 [|LLDP] 18:58:46.900868 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07b2 a255 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.900870 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.900874 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.900878 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.900881 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.900885 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.911853 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.911868 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.911872 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.911877 LLDP, length 82 [|LLDP] 18:58:46.911878 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07bb 08bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.911880 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.911885 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.911889 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.911892 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.911896 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.922876 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.922890 LLDP, length 82 [|LLDP] 18:58:46.922892 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07c3 6f22 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.922894 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.922898 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.922901 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.922904 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.922909 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.922913 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.922917 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.931121 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.931136 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.931141 LLDP, length 82 [|LLDP] 18:58:46.931142 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07c9 bbee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.931144 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.931149 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.931153 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.931156 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.931160 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.931165 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.942137 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.942156 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.942160 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.942164 LLDP, length 82 [|LLDP] 18:58:46.942166 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07d2 2255 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.942168 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.942172 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.942176 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.942179 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.942184 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.953147 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.953163 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.953167 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.953171 LLDP, length 82 [|LLDP] 18:58:46.953173 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07da 88bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.953175 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.953179 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.953183 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.953186 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.953190 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.961400 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.961415 LLDP, length 82 [|LLDP] 18:58:46.961416 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07e0 d588 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.961418 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.961423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.961427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.961429 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.961434 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.961438 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.961442 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.972405 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.972419 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.972423 LLDP, length 82 [|LLDP] 18:58:46.972425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07e9 3bf5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.972427 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.972431 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.972435 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.972438 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.972442 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.972447 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.983419 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.983434 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.983438 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.983442 LLDP, length 82 [|LLDP] 18:58:46.983444 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07f1 a255 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.983446 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.983450 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.983454 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.983456 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.983461 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.991687 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.991705 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.991709 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.991714 LLDP, length 82 [|LLDP] 18:58:46.991716 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07f7 ef21 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.991718 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.991722 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.991726 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.991729 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.991733 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.002692 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.002708 LLDP, length 82 [|LLDP] 18:58:47.002710 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0800 5587 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.002712 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.002716 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.002720 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.002723 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.002727 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.002731 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.002735 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.010947 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.010961 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.010965 LLDP, length 82 [|LLDP] 18:58:47.010967 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0806 a255 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.010969 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.010973 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.010977 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.010980 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.010984 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.010988 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.022015 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.022057 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.022062 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.022067 LLDP, length 82 [|LLDP] 18:58:47.022069 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 080f 08bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.022072 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.022076 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.022080 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.022085 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.022090 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.033026 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.033068 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.033072 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.033076 LLDP, length 82 [|LLDP] 18:58:47.033079 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0817 6f21 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.033081 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.033086 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.033090 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.033095 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.033100 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.041270 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.041306 LLDP, length 82 [|LLDP] 18:58:47.041308 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 081d bbee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.041311 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.041316 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.041320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.041325 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.041329 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.041334 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.041338 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.052285 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.052325 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.052329 LLDP, length 82 [|LLDP] 18:58:47.052331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0826 2255 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.052333 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.052338 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.052342 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.052347 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.052351 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.052357 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.063332 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.063396 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.063402 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.063407 LLDP, length 82 [|LLDP] 18:58:47.063411 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 082e 88ba 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.063414 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.063421 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.063426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.063433 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.063439 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.071537 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.071574 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.071579 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.071583 LLDP, length 82 [|LLDP] 18:58:47.071585 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0834 d588 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.071588 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.071593 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.071597 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.071601 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.071606 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.082552 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.082592 LLDP, length 82 [|LLDP] 18:58:47.082595 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 083d 3bee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.082597 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.082602 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.082607 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.082611 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.082616 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.082621 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.082626 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.093567 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.093605 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.093610 LLDP, length 82 [|LLDP] 18:58:47.093612 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0845 a254 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.093615 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.093619 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.093624 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.093628 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.093633 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.093646 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.101802 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.101820 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.101825 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.101829 LLDP, length 82 [|LLDP] 18:58:47.101831 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 084b ef21 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.101833 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.101838 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.101842 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.101845 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.101849 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.112797 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.112828 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.112833 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.112837 LLDP, length 82 [|LLDP] 18:58:47.112839 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0854 5588 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.112841 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.112845 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.112849 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.112852 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.112856 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.121051 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.121069 LLDP, length 82 [|LLDP] 18:58:47.121071 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 085a a255 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.121073 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.121077 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.121081 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.121084 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.121088 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.121092 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.121097 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.132063 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.132082 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.132087 LLDP, length 82 [|LLDP] 18:58:47.132089 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0863 08bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.132091 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.132095 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.132099 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.132102 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.132106 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.132111 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.143074 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.143093 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.143097 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.143102 LLDP, length 82 [|LLDP] 18:58:47.143103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 086b 6f22 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.143106 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.143110 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.143114 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.143117 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.143122 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.151327 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.151344 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.151349 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.151353 LLDP, length 82 [|LLDP] 18:58:47.151355 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0871 bbee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.151357 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.151361 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.151365 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.151368 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.151372 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.162334 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.162349 LLDP, length 82 [|LLDP] 18:58:47.162351 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 087a 2254 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.162353 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.162357 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.162361 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.162363 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.162368 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.162372 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.162377 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.173346 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.173363 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.173367 LLDP, length 82 [|LLDP] 18:58:47.173369 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0882 88bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.173371 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.173375 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.173379 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.173382 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.173386 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.173391 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.181601 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.181617 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.181621 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.181625 LLDP, length 82 [|LLDP] 18:58:47.181627 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0888 d588 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.181629 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.181633 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.181637 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.181639 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.181643 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.192609 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.192625 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.192629 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.192633 LLDP, length 82 [|LLDP] 18:58:47.192635 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0891 3bee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.192637 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.192641 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.192645 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.192648 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.192652 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.200868 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.200883 LLDP, length 82 [|LLDP] 18:58:47.200885 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0897 88bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.200887 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.200891 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.200895 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.200898 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.200902 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.200905 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.200910 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.211878 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.211893 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.211897 LLDP, length 82 [|LLDP] 18:58:47.211898 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 089f ef21 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.211900 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.211904 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.211908 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.211911 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.211915 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.211919 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.222886 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.222902 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.222906 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.222910 LLDP, length 82 [|LLDP] 18:58:47.222911 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08a8 558f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.222914 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.222918 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.222922 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.222924 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.222929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.231143 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.231159 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.231163 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.231167 LLDP, length 82 [|LLDP] 18:58:47.231169 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08ae a254 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.231171 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.231175 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.231180 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.231182 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.231187 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.242154 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.242168 LLDP, length 82 [|LLDP] 18:58:47.242170 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08b7 08bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.242172 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.242176 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.242180 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.242183 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.242187 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.242191 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.242196 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.253164 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.253180 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.253184 LLDP, length 82 [|LLDP] 18:58:47.253186 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08bf 6f21 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.253188 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.253192 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.253196 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.253199 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.253203 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.253208 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.261421 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.261436 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.261440 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.261444 LLDP, length 82 [|LLDP] 18:58:47.261446 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08c5 bbed 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.261448 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.261452 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.261456 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.261459 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.261463 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.272442 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.272456 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.272460 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.272464 LLDP, length 82 [|LLDP] 18:58:47.272465 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08ce 2254 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.272467 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.272472 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.272476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.272478 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.272482 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.283448 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.283462 LLDP, length 82 [|LLDP] 18:58:47.283464 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08d6 88bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.283466 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.283471 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.283475 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.283477 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.283481 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.283485 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.283490 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.291701 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.291718 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.291722 LLDP, length 82 [|LLDP] 18:58:47.291724 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08dc d587 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.291725 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.291730 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.291734 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.291736 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.291740 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.291745 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.302708 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.302724 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.302728 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.302733 LLDP, length 82 [|LLDP] 18:58:47.302734 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08e5 3bed 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.302737 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.302741 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.302745 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.302747 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.302752 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.310965 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.310979 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.310984 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.310988 LLDP, length 82 [|LLDP] 18:58:47.310990 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08eb 88bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.310992 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.310996 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.311000 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.311003 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.311007 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.321987 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.322001 LLDP, length 82 [|LLDP] 18:58:47.322003 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08f3 ef21 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.322005 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.322010 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.322013 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.322016 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.322020 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.322024 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.322029 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.332984 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.333001 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.333006 LLDP, length 82 [|LLDP] 18:58:47.333007 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08fc 5588 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.333009 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.333014 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.333017 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.333020 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.333024 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.333029 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.341244 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.341259 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.341263 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.341267 LLDP, length 82 [|LLDP] 18:58:47.341269 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0902 a25b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.341271 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.341275 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.341278 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.341281 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.341286 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.352253 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.352269 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.352273 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.352277 LLDP, length 82 [|LLDP] 18:58:47.352279 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 090b 08bc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.352281 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.352285 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.352289 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.352291 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.352296 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.363265 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.363281 LLDP, length 82 [|LLDP] 18:58:47.363283 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0913 6f22 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.363285 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.363289 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.363293 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.363296 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.363300 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.363304 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.363308 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.371524 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.371539 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.371543 LLDP, length 82 [|LLDP] 18:58:47.371544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0919 bbef 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.371546 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.371551 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.371555 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.371557 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.371561 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.371565 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.382532 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.382548 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.382552 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.382557 LLDP, length 82 [|LLDP] 18:58:47.382558 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0922 2256 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.382560 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.382564 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.382568 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.382571 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.382575 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.390789 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.390803 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.390808 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.390812 LLDP, length 82 [|LLDP] 18:58:47.390813 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0928 6f23 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.390815 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.390820 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.390824 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.390827 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.390831 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.401798 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.401813 LLDP, length 82 [|LLDP] 18:58:47.401815 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0930 d589 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.401817 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.401821 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.401825 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.401827 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.401832 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.401836 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.401841 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.412809 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.412825 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.412829 LLDP, length 82 [|LLDP] 18:58:47.412830 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0939 3bf0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.412832 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.412836 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.412840 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.412843 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.412847 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.412852 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.421065 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.421079 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.421083 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.421087 LLDP, length 82 [|LLDP] 18:58:47.421089 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 093f 88bc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.421091 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.421095 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.421099 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.421102 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.421107 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.432085 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.432100 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.432104 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.432108 LLDP, length 82 [|LLDP] 18:58:47.432110 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0947 ef23 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.432111 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.432116 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.432120 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.432122 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.432126 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.443088 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.443103 LLDP, length 82 [|LLDP] 18:58:47.443105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0950 5589 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.443107 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.443111 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.443115 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.443118 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.443122 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.443126 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.443130 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.451344 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.451360 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.451364 LLDP, length 82 [|LLDP] 18:58:47.451366 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0956 a256 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.451368 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.451372 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.451376 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.451378 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.451382 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.451386 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.462354 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.462370 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.462375 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.462378 LLDP, length 82 [|LLDP] 18:58:47.462380 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 095f 08bc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.462382 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.462386 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.462390 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.462393 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.462397 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.473366 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.473380 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.473384 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.473388 LLDP, length 82 [|LLDP] 18:58:47.473390 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0967 6f29 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.473392 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.473396 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.473400 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.473403 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.473407 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.481621 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.481636 LLDP, length 82 [|LLDP] 18:58:47.481638 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 096d bbef 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.481640 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.481644 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.481648 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.481651 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.481655 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.481659 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.481663 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.492630 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.492645 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.492649 LLDP, length 82 [|LLDP] 18:58:47.492650 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0976 2256 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.492652 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.492656 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.492660 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.492663 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.492667 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.492672 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.500890 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.500905 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.500909 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.500913 LLDP, length 82 [|LLDP] 18:58:47.500915 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 097c 6f23 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.500917 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.500921 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.500925 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.500928 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.500932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.511900 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.511915 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.511919 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.511923 LLDP, length 82 [|LLDP] 18:58:47.511924 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0984 d58c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.511927 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.511931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.511935 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.511938 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.511942 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.522933 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.522959 LLDP, length 82 [|LLDP] 18:58:47.522961 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 098d 3bef 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.522963 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.522968 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.522972 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.522976 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.522980 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.522984 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.522988 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.531176 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.531193 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.531197 LLDP, length 82 [|LLDP] 18:58:47.531199 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0993 88bc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.531201 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.531206 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.531211 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.531214 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.531217 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.531222 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.542180 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.542199 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.542203 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.542207 LLDP, length 82 [|LLDP] 18:58:47.542209 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 099b ef23 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.542211 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.542216 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.542220 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.542223 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.542227 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.553186 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.553201 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.553205 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.553209 LLDP, length 82 [|LLDP] 18:58:47.553211 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09a4 5589 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.553213 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.553217 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.553221 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.553224 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.553228 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.561443 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.561459 LLDP, length 82 [|LLDP] 18:58:47.561461 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09aa a255 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.561463 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.561467 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.561471 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.561474 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.561478 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.561483 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.561488 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.572456 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.572471 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.572475 LLDP, length 82 [|LLDP] 18:58:47.572477 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09b3 08bc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.572479 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.572483 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.572487 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.572490 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.572494 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.572499 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.583465 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.583481 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.583486 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.583490 LLDP, length 82 [|LLDP] 18:58:47.583492 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09bb 6f22 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.583494 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.583499 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.583503 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.583506 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.583510 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.591726 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.591741 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.591745 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.591749 LLDP, length 82 [|LLDP] 18:58:47.591751 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09c1 bbf5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.591753 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.591757 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.591761 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.591763 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.591768 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.602729 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.602744 LLDP, length 82 [|LLDP] 18:58:47.602745 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09ca 2255 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.602747 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.602751 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.602755 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.602758 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.602763 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.602767 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.602771 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.610990 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.611005 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.611010 LLDP, length 82 [|LLDP] 18:58:47.611011 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09d0 6f22 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.611014 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.611018 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.611022 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.611025 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.611029 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.611034 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.622000 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.622015 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.622019 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.622023 LLDP, length 82 [|LLDP] 18:58:47.622025 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09d8 d589 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.622027 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.622031 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.622035 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.622038 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.622042 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.633008 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.633021 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.633026 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.633029 LLDP, length 82 [|LLDP] 18:58:47.633031 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09e1 3bef 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.633033 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.633037 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.633041 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.633044 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.633048 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.641262 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.641277 LLDP, length 82 [|LLDP] 18:58:47.641278 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09e7 88bc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.641281 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.641285 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.641289 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.641291 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.641296 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.641300 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.641305 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.652274 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.652290 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.652294 LLDP, length 82 [|LLDP] 18:58:47.652296 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09ef ef22 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.652298 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.652303 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.652307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.652309 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.652314 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.652319 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.663289 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.663305 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.663309 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.663314 LLDP, length 82 [|LLDP] 18:58:47.663315 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09f8 5588 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.663317 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.663321 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.663325 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.663327 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.663332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.671543 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.671559 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.671564 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.671568 LLDP, length 82 [|LLDP] 18:58:47.671569 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09fe a256 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.671572 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.671576 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.671580 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.671582 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.671586 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.682556 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.682572 LLDP, length 82 [|LLDP] 18:58:47.682574 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a07 08bc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.682576 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.682580 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.682584 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.682587 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.682591 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.682595 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.682600 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.690813 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.690828 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.690832 LLDP, length 82 [|LLDP] 18:58:47.690833 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a0d 5588 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.690836 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.690840 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.690844 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.690846 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.690850 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.690854 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.701832 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.701852 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.701856 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.701860 LLDP, length 82 [|LLDP] 18:58:47.701862 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a15 bbef 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.701864 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.701868 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.701872 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.701875 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.701879 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.712845 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.712862 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.712866 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.712870 LLDP, length 82 [|LLDP] 18:58:47.712872 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a1e 2255 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.712875 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.712879 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.712883 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.712886 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.712890 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.721090 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.721104 LLDP, length 82 [|LLDP] 18:58:47.721106 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a24 6f22 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.721108 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.721112 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.721116 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.721118 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.721123 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.721127 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.721131 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.732099 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.732114 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.732118 LLDP, length 82 [|LLDP] 18:58:47.732120 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a2c d588 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.732122 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.732126 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.732131 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.732133 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.732138 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.732142 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.743109 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.743123 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.743128 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.743132 LLDP, length 82 [|LLDP] 18:58:47.743133 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a35 3bef 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.743135 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.743140 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.743143 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.743146 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.743150 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.751366 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.751380 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.751384 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.751389 LLDP, length 82 [|LLDP] 18:58:47.751390 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a3b 88bc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.751392 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.751396 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.751400 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.751403 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.751407 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.762377 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.762393 LLDP, length 82 [|LLDP] 18:58:47.762395 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a43 ef25 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.762397 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.762401 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.762405 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.762408 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.762413 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.762417 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.762421 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.773390 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.773410 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.773414 LLDP, length 82 [|LLDP] 18:58:47.773415 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a4c 5589 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.773418 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.773422 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.773426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.773429 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.773433 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.773437 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.781654 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.781671 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.781676 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.781680 LLDP, length 82 [|LLDP] 18:58:47.781681 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a52 a255 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.781683 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.781688 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.781692 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.781695 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.781699 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.792657 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.792673 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.792677 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.792682 LLDP, length 82 [|LLDP] 18:58:47.792684 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a5b 08bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.792686 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.792690 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.792694 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.792697 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.792702 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.800914 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.800929 LLDP, length 82 [|LLDP] 18:58:47.800931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a61 5589 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.800933 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.800937 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.800941 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.800943 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.800947 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.800952 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.800956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.811920 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.811936 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.811941 LLDP, length 82 [|LLDP] 18:58:47.811942 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a69 bbef 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.811945 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.811949 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.811952 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.811955 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.811960 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.811964 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.822931 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.822946 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.822950 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.822954 LLDP, length 82 [|LLDP] 18:58:47.822956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a72 2255 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.822958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.822962 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.822966 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.822969 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.822973 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.831202 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.831218 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.831223 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.831227 LLDP, length 82 [|LLDP] 18:58:47.831228 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a78 6f22 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.831231 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.831235 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.831239 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.831242 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.831246 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.842211 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.842227 LLDP, length 82 [|LLDP] 18:58:47.842228 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a80 d58f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.842230 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.842234 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.842238 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.842241 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.842245 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.842249 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.842253 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.853206 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.853222 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.853227 LLDP, length 82 [|LLDP] 18:58:47.853229 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a89 3bef 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.853231 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.853235 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.853239 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.853242 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.853246 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.853251 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.861465 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.861480 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.861484 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.861488 LLDP, length 82 [|LLDP] 18:58:47.861490 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a8f 88bc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.861492 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.861496 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.861500 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.861503 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.861507 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.872471 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.872484 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.872488 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.872492 LLDP, length 82 [|LLDP] 18:58:47.872494 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a97 ef22 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.872496 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.872501 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.872505 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.872507 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.872512 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.880734 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.880748 LLDP, length 82 [|LLDP] 18:58:47.880750 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a9e 3bee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.880752 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.880757 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.880760 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.880763 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.880768 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.880773 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.880777 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.891745 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.891760 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.891765 LLDP, length 82 [|LLDP] 18:58:47.891766 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0aa6 a255 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.891768 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.891772 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.891776 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.891779 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.891783 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.891787 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.902759 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.902776 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.902781 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.902785 LLDP, length 82 [|LLDP] 18:58:47.902786 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0aaf 08bc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.902788 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.902792 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.902796 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.902799 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.902803 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.911025 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.911043 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.911048 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.911052 LLDP, length 82 [|LLDP] 18:58:47.911054 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ab5 5588 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.911056 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.911060 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.911064 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.911067 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.911071 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.922024 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.922040 LLDP, length 82 [|LLDP] 18:58:47.922042 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0abd bbee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.922044 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.922047 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.922051 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.922055 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.922059 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.922063 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.922067 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.933038 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.933053 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.933057 LLDP, length 82 [|LLDP] 18:58:47.933059 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ac6 2255 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.933061 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.933065 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.933069 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.933072 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.933076 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.933080 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.941287 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.941302 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.941306 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.941310 LLDP, length 82 [|LLDP] 18:58:47.941312 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0acc 6f22 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.941314 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.941318 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.941323 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.941326 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.941330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.952297 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.952314 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.952318 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.952322 LLDP, length 82 [|LLDP] 18:58:47.952324 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ad4 d588 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.952325 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.952330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.952334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.952337 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.952341 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.963307 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.963322 LLDP, length 82 [|LLDP] 18:58:47.963323 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0add 3bef 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.963325 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.963329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.963333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.963336 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.963340 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.963345 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.963349 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.971560 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.971576 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.971580 LLDP, length 82 [|LLDP] 18:58:47.971581 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ae3 88bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.971584 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.971588 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.971592 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.971595 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.971599 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.971604 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.982578 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.982594 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.982599 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.982603 LLDP, length 82 [|LLDP] 18:58:47.982605 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0aeb ef21 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.982607 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.982611 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.982615 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.982617 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.982621 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.990832 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.990848 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.990852 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.990857 LLDP, length 82 [|LLDP] 18:58:47.990858 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0af2 3bef 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.990860 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.990864 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.990869 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.990871 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.990876 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.001842 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.001858 LLDP, length 82 [|LLDP] 18:58:48.001859 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0afa a255 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.001861 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.001865 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.001869 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.001872 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.001876 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.001880 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.001884 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.012854 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.012868 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.012873 LLDP, length 82 [|LLDP] 18:58:48.012874 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b03 08bc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.012876 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.012880 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.012884 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.012887 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.012891 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.012896 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.021107 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.021123 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.021128 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.021132 LLDP, length 82 [|LLDP] 18:58:48.021134 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b09 5588 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.021136 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.021141 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.021145 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.021147 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.021152 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.032124 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.032139 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.032143 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.032147 LLDP, length 82 [|LLDP] 18:58:48.032149 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b11 bbee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.032151 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.032155 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.032159 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.032162 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.032166 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.043130 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.043145 LLDP, length 82 [|LLDP] 18:58:48.043147 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b1a 2255 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.043149 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.043153 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.043157 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.043160 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.043164 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.043168 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.043173 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.051389 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.051403 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.051408 LLDP, length 82 [|LLDP] 18:58:48.051409 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b20 6f21 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.051411 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.051416 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.051420 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.051422 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.051426 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.051431 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.062395 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.062410 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.062415 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.062419 LLDP, length 82 [|LLDP] 18:58:48.062421 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b28 d588 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.062423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.062427 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.062430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.062433 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.062438 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.073407 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.073422 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.073426 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.073430 LLDP, length 82 [|LLDP] 18:58:48.073431 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b31 3bee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.073433 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.073438 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.073441 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.073444 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.073448 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.081665 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.081682 LLDP, length 82 [|LLDP] 18:58:48.081683 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b37 88bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.081685 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.081690 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.081693 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.081696 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.081700 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.081704 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.081709 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.092717 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.092742 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.092746 LLDP, length 82 [|LLDP] 18:58:48.092749 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b3f ef28 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.092751 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.092756 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.092761 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.092764 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.092769 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.092774 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.100995 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.101041 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.101046 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.101050 LLDP, length 82 [|LLDP] 18:58:48.101053 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b46 3bee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.101055 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.101060 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.101065 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.101069 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.101074 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.111991 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.112028 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.112032 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.112037 LLDP, length 82 [|LLDP] 18:58:48.112039 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b4e a254 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.112042 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.112047 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.112051 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.112055 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.112059 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.122968 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.122989 LLDP, length 82 [|LLDP] 18:58:48.122990 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b57 08bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.122992 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.122997 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.123001 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.123004 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.123008 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.123013 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.123017 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.131213 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.131233 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.131238 LLDP, length 82 [|LLDP] 18:58:48.131239 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b5d 5588 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.131241 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.131246 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.131249 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.131253 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.131257 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.131263 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.142226 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.142245 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.142249 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.142253 LLDP, length 82 [|LLDP] 18:58:48.142255 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b65 bbee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.142257 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.142261 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.142265 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.142268 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.142272 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.153245 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.153261 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.153265 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.153269 LLDP, length 82 [|LLDP] 18:58:48.153271 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b6e 2254 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.153274 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.153278 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.153282 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.153285 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.153289 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.161492 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.161510 LLDP, length 82 [|LLDP] 18:58:48.161511 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b74 6f21 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.161514 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.161518 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.161522 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.161525 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.161529 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.161533 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.161538 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.172497 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.172514 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.172519 LLDP, length 82 [|LLDP] 18:58:48.172521 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b7c d588 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.172523 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.172527 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.172531 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.172534 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.172538 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.172543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.180754 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.180772 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.180776 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.180780 LLDP, length 82 [|LLDP] 18:58:48.180782 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b83 2255 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.180784 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.180788 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.180792 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.180795 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.180799 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.191757 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.191778 LLDP, length 82 [|LLDP] 18:58:48.191779 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b8b 88bc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.191782 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.191786 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.202777 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.202796 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.202801 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.202805 LLDP, length 82 [|LLDP] 18:58:48.202807 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b93 ef22 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.202809 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.202814 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.202818 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.202821 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.202825 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.211036 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.211055 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.211059 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.211063 LLDP, length 82 [|LLDP] 18:58:48.211064 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b9a 3bf5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.211067 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.211071 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.211075 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.211077 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.211091 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.222058 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.222081 LLDP, length 82 [|LLDP] 18:58:48.222083 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ba2 a255 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.222085 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.222089 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.222093 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.222097 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.222101 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.222105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.222109 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.233066 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.233086 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.233090 LLDP, length 82 [|LLDP] 18:58:48.233092 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bab 08bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.233094 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.233098 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.233102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.233106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.233110 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.233114 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.241316 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.241333 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.241338 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.241342 LLDP, length 82 [|LLDP] 18:58:48.241344 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bb1 5588 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.241346 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.241350 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.241355 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.241358 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.241362 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.252320 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.252335 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.252339 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.252343 LLDP, length 82 [|LLDP] 18:58:48.252344 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bb9 bbee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.252346 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.252350 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.252354 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.252356 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.252361 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.263339 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.263355 LLDP, length 82 [|LLDP] 18:58:48.263356 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bc2 2255 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.263358 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.263363 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.263366 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.263369 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.263374 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.263378 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.263382 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.271599 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.271614 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.271619 LLDP, length 82 [|LLDP] 18:58:48.271620 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bc8 6f21 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.271622 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.271627 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.271631 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.271634 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.271638 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.271642 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.282598 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.282613 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.282617 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.282621 LLDP, length 82 [|LLDP] 18:58:48.282623 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bd0 d588 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.282625 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.282629 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.282633 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.282636 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.282640 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.290865 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.290882 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.290886 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.290890 LLDP, length 82 [|LLDP] 18:58:48.290892 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bd7 2256 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.290894 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.290898 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.290902 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.290905 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.290910 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.301869 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.301884 LLDP, length 82 [|LLDP] 18:58:48.301885 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bdf 88bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.301887 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.301891 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.301895 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.301898 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.301902 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.301906 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.301911 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.312876 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.312891 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.312895 LLDP, length 82 [|LLDP] 18:58:48.312897 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0be7 ef21 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.312899 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.312903 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.312907 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.312910 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.312914 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.312918 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.321129 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.321144 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.321148 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.321152 LLDP, length 82 [|LLDP] 18:58:48.321154 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bee 3bef 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.321156 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.321160 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.321164 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.321167 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.321172 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.332147 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.332163 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.332167 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.332171 LLDP, length 82 [|LLDP] 18:58:48.332172 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bf6 a255 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.332175 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.332179 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.332182 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.332185 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.332189 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.343154 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.343170 LLDP, length 82 [|LLDP] 18:58:48.343171 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bff 08c2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.343174 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.343178 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.343182 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.343185 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.343189 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.343193 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.343197 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.351410 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.351426 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.351430 LLDP, length 82 [|LLDP] 18:58:48.351432 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c05 5588 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.351434 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.351438 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.351442 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.351445 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.351449 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.351453 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.362420 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.362437 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.362441 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.362445 LLDP, length 82 [|LLDP] 18:58:48.362447 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c0d bbee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.362449 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.362453 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.362458 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.362460 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.362465 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.373438 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.373454 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.373459 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.373463 LLDP, length 82 [|LLDP] 18:58:48.373465 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c16 2255 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.373467 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.373471 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.373475 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.373478 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.373482 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.381690 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.381705 LLDP, length 82 [|LLDP] 18:58:48.381707 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c1c 6f21 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.381709 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.381713 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.381717 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.381720 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.381724 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.381728 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.381732 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.392696 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.392712 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.392716 LLDP, length 82 [|LLDP] 18:58:48.392718 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c24 d588 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.392720 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.392725 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.392729 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.392731 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.392735 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.392740 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.400951 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.400967 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.400971 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.400975 LLDP, length 82 [|LLDP] 18:58:48.400977 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c2b 2255 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.400979 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.400983 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.400988 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.400990 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.400995 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.411966 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.411981 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.411985 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.411989 LLDP, length 82 [|LLDP] 18:58:48.411990 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c33 88bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.411992 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.411996 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.412000 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.412003 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.412007 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.422975 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.422989 LLDP, length 82 [|LLDP] 18:58:48.422991 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c3b ef22 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.422993 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.422997 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.423001 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.423003 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.423008 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.423012 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.423017 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.431229 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.431245 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.431249 LLDP, length 82 [|LLDP] 18:58:48.431250 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c42 3bee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.431253 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.431257 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.431261 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.431264 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.431268 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.431273 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.442241 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.442257 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.442261 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.442265 LLDP, length 82 [|LLDP] 18:58:48.442266 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c4a a254 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.442269 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.442273 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.442277 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.442279 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.442283 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.453252 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.453269 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.453273 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.453277 LLDP, length 82 [|LLDP] 18:58:48.453279 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c53 08bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.453281 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.453285 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.453289 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.453291 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.453296 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.461509 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.461524 LLDP, length 82 [|LLDP] 18:58:48.461525 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c59 558e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.461527 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.461531 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.461535 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.461538 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.461542 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.461546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.461550 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.472517 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.472533 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.472537 LLDP, length 82 [|LLDP] 18:58:48.472539 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c61 bbee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.472541 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.472546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.472550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.472553 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.472557 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.472561 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.480773 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.480788 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.480793 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.480797 LLDP, length 82 [|LLDP] 18:58:48.480798 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c68 08bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.480800 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.480804 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.480808 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.480810 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.480815 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.491794 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.491808 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.491813 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.491817 LLDP, length 82 [|LLDP] 18:58:48.491819 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c70 6f21 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.491821 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.491825 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.491829 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.491832 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.491836 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.502804 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.502820 LLDP, length 82 [|LLDP] 18:58:48.502822 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c78 d588 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.502824 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.502828 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.502832 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.502835 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.502839 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.502843 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.502847 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.511055 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.511070 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.511074 LLDP, length 82 [|LLDP] 18:58:48.511076 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c7f 2254 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.511078 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.511082 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.511086 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.511089 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.511093 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.511098 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.522062 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.522078 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.522082 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.522086 LLDP, length 82 [|LLDP] 18:58:48.522087 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c87 88bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.522089 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.522094 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.522098 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.522100 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.522105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.533078 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.533098 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.533102 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.533106 LLDP, length 82 [|LLDP] 18:58:48.533108 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c8f ef21 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.533110 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.533114 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.533119 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.533122 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.533126 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.541334 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.541351 LLDP, length 82 [|LLDP] 18:58:48.541353 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c96 3bee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.541355 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.541359 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.541363 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.541366 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.541370 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.541374 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.541378 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.552364 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.552389 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.552394 LLDP, length 82 [|LLDP] 18:58:48.552396 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c9e a255 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.552398 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.552403 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.552407 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.552411 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.552415 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.552420 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.563363 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.563383 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.563388 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.563393 LLDP, length 82 [|LLDP] 18:58:48.563394 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ca7 08bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.563396 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.563401 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.563405 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.563408 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.563413 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.571611 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.571627 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.571631 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.571636 LLDP, length 82 [|LLDP] 18:58:48.571637 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cad 5587 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.571639 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.571644 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.571653 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.571657 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.571661 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.582613 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.582625 LLDP, length 82 [|LLDP] 18:58:48.582627 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cb5 bbee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.582629 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.582633 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.582637 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.582640 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.582644 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.582648 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.582652 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.590858 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.590868 LLDP, length 82 [|LLDP] 18:58:48.590869 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cbc 08bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.590871 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.590875 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.601895 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.601912 LLDP, length 82 [|LLDP] 18:58:48.601913 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cc4 6f21 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.601915 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.601920 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.601924 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.601927 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.601931 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.601935 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.601940 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.612891 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.612904 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.612908 LLDP, length 82 [|LLDP] 18:58:48.612910 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ccc d587 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.612912 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.612916 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.612920 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.612923 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.612927 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.612932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.621147 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.621160 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.621164 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.621168 LLDP, length 82 [|LLDP] 18:58:48.621169 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cd3 2254 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.621172 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.621176 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.621180 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.621182 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.621187 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.632156 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.632167 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.632171 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.632175 LLDP, length 82 [|LLDP] 18:58:48.632177 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cdb 88bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.632179 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.632183 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.632187 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.632189 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.632194 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.643163 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.643174 LLDP, length 82 [|LLDP] 18:58:48.643175 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ce3 ef21 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.643177 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.643181 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.643185 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.643187 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.643191 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.643195 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.643199 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.651424 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.651437 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.651441 LLDP, length 82 [|LLDP] 18:58:48.651443 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cea 3bee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.651445 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.651449 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.651453 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.651455 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.651459 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.651464 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.662435 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.662447 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.662451 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.662455 LLDP, length 82 [|LLDP] 18:58:48.662457 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cf2 a254 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.662458 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.662462 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.662466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.662468 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.662473 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.670695 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.670710 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.670714 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.670719 LLDP, length 82 [|LLDP] 18:58:48.670720 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cf8 ef21 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.670722 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.670727 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.670731 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.670733 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.670738 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.681703 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.681715 LLDP, length 82 [|LLDP] 18:58:48.681717 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d01 5588 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.681719 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.681723 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.681727 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.681729 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.681733 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.681738 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.681743 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.692727 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.692747 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.692752 LLDP, length 82 [|LLDP] 18:58:48.692754 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d09 bbee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.692756 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.692761 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.692764 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.692768 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.692772 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.692777 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.700980 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.700998 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.701002 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.701006 LLDP, length 82 [|LLDP] 18:58:48.701008 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d10 08ba 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.701010 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.701014 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.701018 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.701021 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.701025 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.711986 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.712002 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.712006 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.712010 LLDP, length 82 [|LLDP] 18:58:48.712012 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d18 6f28 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.712014 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.712018 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.712022 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.712025 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.712029 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.722992 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.723007 LLDP, length 82 [|LLDP] 18:58:48.723008 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d20 d588 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.723010 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.723014 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.723018 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.723021 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.723025 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.723029 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.723037 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.731249 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.731268 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.731273 LLDP, length 82 [|LLDP] 18:58:48.731274 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d27 2254 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.731277 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.731281 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.731285 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.731288 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.731292 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.731297 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.742257 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.742275 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.742279 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.742283 LLDP, length 82 [|LLDP] 18:58:48.742285 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d2f 88ba 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.742287 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.742291 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.742295 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.742297 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.742302 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.753266 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.753279 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.753283 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.753287 LLDP, length 82 [|LLDP] 18:58:48.753289 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d37 ef21 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.753291 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.753295 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.753299 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.753302 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.753307 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.761521 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.761534 LLDP, length 82 [|LLDP] 18:58:48.761535 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d3e 3bee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.761537 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.761541 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.761545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.761547 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.761551 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.761556 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.761560 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.772540 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.772554 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.772558 LLDP, length 82 [|LLDP] 18:58:48.772560 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d46 a255 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.772561 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.772565 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.772569 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.772572 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.772576 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.772581 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.780795 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.780811 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.780815 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.780819 LLDP, length 82 [|LLDP] 18:58:48.780821 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d4c ef22 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.780823 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.780827 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.780831 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.780833 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.780837 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.791803 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.791817 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.791821 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.791825 LLDP, length 82 [|LLDP] 18:58:48.791827 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d55 5589 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.791829 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.791833 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.791837 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.791840 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.791844 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.802817 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.802831 LLDP, length 82 [|LLDP] 18:58:48.802833 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d5d bbef 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.802835 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.802839 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.802843 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.802846 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.802850 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.802855 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.802859 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.811065 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.811076 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.811079 LLDP, length 82 [|LLDP] 18:58:48.811081 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d64 08bc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.811083 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.811087 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.811091 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.811094 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.811098 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.811102 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.822072 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.822082 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.822086 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.822089 LLDP, length 82 [|LLDP] 18:58:48.822091 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d6c 6f23 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.822093 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.822097 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.822101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.822103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.822107 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.833097 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.833110 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.833114 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.833118 LLDP, length 82 [|LLDP] 18:58:48.833120 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d74 d589 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.833122 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.833126 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.833130 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.833133 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.833137 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.841340 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.841349 LLDP, length 82 [|LLDP] 18:58:48.841350 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d7b 2256 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.841352 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.841356 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.841360 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.841362 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.841366 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.841370 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.841375 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.852349 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.852359 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.852363 LLDP, length 82 [|LLDP] 18:58:48.852364 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d83 88bd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.852366 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.852370 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.852375 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.852377 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.852381 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.852385 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.863367 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.863380 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.863385 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.863389 LLDP, length 82 [|LLDP] 18:58:48.863390 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d8b ef23 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.863392 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.863396 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.863400 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.863403 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.863407 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.871621 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.871630 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.871634 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.871638 LLDP, length 82 [|LLDP] 18:58:48.871640 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d92 3bef 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.871642 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.871645 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.871658 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.871660 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.871665 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.882632 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.882642 LLDP, length 82 [|LLDP] 18:58:48.882643 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d9a a25b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.882645 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.882649 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.882653 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.882655 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.882659 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.882663 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.882667 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.890890 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.890900 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.890904 LLDP, length 82 [|LLDP] 18:58:48.890905 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0da0 ef23 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.890907 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.890912 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.890915 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.890918 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.890922 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.890927 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.901896 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.901906 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.901910 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.901914 LLDP, length 82 [|LLDP] 18:58:48.901915 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0da9 5589 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.901918 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.901922 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.901926 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.901928 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.901933 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.912906 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.912917 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.912921 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.912925 LLDP, length 82 [|LLDP] 18:58:48.912926 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0db1 bbef 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.912928 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.912932 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.912936 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.912939 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.912943 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.921163 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.921173 LLDP, length 82 [|LLDP] 18:58:48.921175 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0db8 08bc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.921177 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.921181 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.921185 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.921187 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.921191 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.921195 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.921199 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.932173 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.932183 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.932187 LLDP, length 82 [|LLDP] 18:58:48.932188 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dc0 6f23 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.932191 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.932195 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.932199 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.932201 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.932205 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.932210 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.943183 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.943193 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.943197 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.943201 LLDP, length 82 [|LLDP] 18:58:48.943202 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dc8 d589 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.943204 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.943208 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.943212 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.943214 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.943219 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.951441 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.951450 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.951454 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.951458 LLDP, length 82 [|LLDP] 18:58:48.951460 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dcf 2257 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.951461 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.951466 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.951470 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.951472 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.951476 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.962451 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.962461 LLDP, length 82 [|LLDP] 18:58:48.962463 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dd7 88c3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.962464 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.962468 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.962472 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.962475 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.962479 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.962483 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.962488 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.970706 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.970716 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.970720 LLDP, length 82 [|LLDP] 18:58:48.970722 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ddd d589 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.970724 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.970728 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.970733 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.970735 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.970739 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.970744 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.981718 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.981728 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.981732 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.981736 LLDP, length 82 [|LLDP] 18:58:48.981738 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0de6 3bf0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.981740 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.981744 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.981748 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.981750 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.981754 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.992726 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.992736 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.992740 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.992744 LLDP, length 82 [|LLDP] 18:58:48.992746 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dee a257 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.992748 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.992752 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.992756 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.992758 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.992763 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.000986 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.000996 LLDP, length 82 [|LLDP] 18:58:49.000998 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0df4 ef23 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.000999 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.001004 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.001008 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.001011 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.001014 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.001019 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.001023 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.011998 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.012008 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.012012 LLDP, length 82 [|LLDP] 18:58:49.012014 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dfd 5589 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.012015 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.012019 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.012023 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.012026 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.012029 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.012034 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.023006 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.023018 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.023022 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.023026 LLDP, length 82 [|LLDP] 18:58:49.023027 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e05 bbf0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.023029 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.023033 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.023037 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.023039 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.023044 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.031262 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.031271 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.031276 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.031280 LLDP, length 82 [|LLDP] 18:58:49.031281 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e0c 08bd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.031283 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.031287 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.031291 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.031294 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.031298 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.042274 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.042284 LLDP, length 82 [|LLDP] 18:58:49.042285 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e14 6f22 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.042287 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.042291 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.042295 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.042297 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.042301 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.042305 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.042310 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.053282 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.053292 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.053296 LLDP, length 82 [|LLDP] 18:58:49.053297 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e1c d589 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.053299 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.053304 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.053308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.053310 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.053314 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.053319 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.061538 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.061548 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.061552 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.061556 LLDP, length 82 [|LLDP] 18:58:49.061557 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e23 2256 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.061559 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.061563 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.061567 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.061570 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.061574 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.072549 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.072558 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.072562 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.072566 LLDP, length 82 [|LLDP] 18:58:49.072567 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e2b 88bc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.072569 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.072573 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.072577 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.072580 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.072584 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.080806 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.080815 LLDP, length 82 [|LLDP] 18:58:49.080816 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e31 d58f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.080818 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.080822 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.080826 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.080829 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.080833 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.080837 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.080841 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.091817 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.091826 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.091830 LLDP, length 82 [|LLDP] 18:58:49.091831 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e3a 3bef 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.091833 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.091837 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.091841 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.091843 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.091847 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.091851 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.102827 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.102837 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.102841 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.102845 LLDP, length 82 [|LLDP] 18:58:49.102847 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e42 a256 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.102848 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.102853 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.102856 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.102859 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.102864 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.111084 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.111093 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.111097 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.111101 LLDP, length 82 [|LLDP] 18:58:49.111102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e48 ef22 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.111104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.111108 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.111112 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.111115 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.111119 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.122096 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.122108 LLDP, length 82 [|LLDP] 18:58:49.122109 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e51 5589 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.122111 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.122115 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.122119 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.122122 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.122126 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.122130 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.122134 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.133106 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.133116 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.133120 LLDP, length 82 [|LLDP] 18:58:49.133122 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e59 bbf3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.133124 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.133128 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.133132 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.133134 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.133138 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.133143 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.141360 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.141370 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.141374 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.141378 LLDP, length 82 [|LLDP] 18:58:49.141379 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e60 08bc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.141381 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.141385 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.141389 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.141392 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.141396 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.152371 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.152380 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.152384 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.152388 LLDP, length 82 [|LLDP] 18:58:49.152389 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e68 6f23 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.152391 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.152395 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.152399 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.152402 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.152406 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.160629 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.160638 LLDP, length 82 [|LLDP] 18:58:49.160639 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e6e bbf3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.160641 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.160645 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.160649 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.160651 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.160655 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.160659 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.160663 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.171638 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.171655 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.171660 LLDP, length 82 [|LLDP] 18:58:49.171662 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e77 2255 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.171663 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.171668 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.171672 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.171674 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.171678 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.171682 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.182650 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.182660 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.182664 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.182668 LLDP, length 82 [|LLDP] 18:58:49.182669 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e7f 88bc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.182671 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.182675 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.182679 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.182682 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.182686 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.190908 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.190917 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.190921 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.190925 LLDP, length 82 [|LLDP] 18:58:49.190927 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e85 d589 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.190929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.190933 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.190936 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.190939 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.190943 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.201916 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.201926 LLDP, length 82 [|LLDP] 18:58:49.201927 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e8e 3bef 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.201929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.201933 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.201937 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.201940 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.201944 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.201948 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.201952 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.212944 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.212961 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.212966 LLDP, length 82 [|LLDP] 18:58:49.212968 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e96 a25d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.212970 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.212974 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.212978 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.212981 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.212985 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.212990 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.221196 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.221211 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.221216 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.221220 LLDP, length 82 [|LLDP] 18:58:49.221221 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e9c ef22 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.221223 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.221227 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.221232 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.221234 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.221238 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.232203 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.232216 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.232221 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.232225 LLDP, length 82 [|LLDP] 18:58:49.232227 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ea5 5589 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.232229 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.232233 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.232237 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.232240 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.232244 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.243214 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.243227 LLDP, length 82 [|LLDP] 18:58:49.243229 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ead bbef 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.243231 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.243235 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.243239 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.243241 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.243245 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.243250 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.243254 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.251467 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.251479 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.251484 LLDP, length 82 [|LLDP] 18:58:49.251485 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0eb4 08bc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.251487 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.251491 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.251495 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.251498 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.251505 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.251511 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.262477 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.262494 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.262499 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.262503 LLDP, length 82 [|LLDP] 18:58:49.262505 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ebc 6f23 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.262507 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.262511 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.262515 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.262517 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.262522 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.270735 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.270748 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.270752 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.270756 LLDP, length 82 [|LLDP] 18:58:49.270758 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ec2 bbef 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.270760 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.270764 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.270768 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.270770 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.270775 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.281749 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.281765 LLDP, length 82 [|LLDP] 18:58:49.281767 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ecb 2256 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.281769 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.281773 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.281777 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.281780 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.281784 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.281788 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.281792 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.292757 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.292771 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.292775 LLDP, length 82 [|LLDP] 18:58:49.292777 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ed3 88bc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.292779 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.292783 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.292787 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.292790 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.292794 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.292799 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.301008 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.301020 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.301024 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.301028 LLDP, length 82 [|LLDP] 18:58:49.301029 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ed9 d589 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.301031 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.301036 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.301039 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.301042 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.301046 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.312022 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.312033 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.312037 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.312041 LLDP, length 82 [|LLDP] 18:58:49.312043 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ee2 3bf0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.312045 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.312049 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.312053 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.312056 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.312060 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.323029 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.323039 LLDP, length 82 [|LLDP] 18:58:49.323040 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0eea a255 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.323042 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.323046 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.323050 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.323052 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.323056 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.323060 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.323064 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.331282 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.331292 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.331296 LLDP, length 82 [|LLDP] 18:58:49.331297 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ef0 ef29 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.331299 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.331303 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.331307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.331309 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.331313 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.331318 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.342294 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.342303 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.342307 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.342311 LLDP, length 82 [|LLDP] 18:58:49.342313 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ef9 5589 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.342315 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.342319 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.342322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.342325 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.342329 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.353302 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.353311 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.353315 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.353319 LLDP, length 82 [|LLDP] 18:58:49.353320 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f01 bbef 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.353322 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.353326 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.353330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.353332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.353336 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.361563 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.361572 LLDP, length 82 [|LLDP] 18:58:49.361573 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f08 08bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.361575 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.361579 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.361582 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.361585 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.361589 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.361593 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.361598 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.372570 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.372579 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.372583 LLDP, length 82 [|LLDP] 18:58:49.372584 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f10 6f23 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.372586 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.372590 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.372594 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.372596 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.372600 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.372605 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.380827 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.380836 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.380841 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.380844 LLDP, length 82 [|LLDP] 18:58:49.380846 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f16 bbef 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.380848 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.380852 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.380856 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.380858 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.380863 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.391837 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.391845 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.391850 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.391854 LLDP, length 82 [|LLDP] 18:58:49.391855 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f1f 2255 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.391857 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.391861 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.391865 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.391867 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.391872 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.402848 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.402857 LLDP, length 82 [|LLDP] 18:58:49.402858 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f27 88bc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.402860 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.402864 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.402868 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.402871 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.402875 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.402879 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.402883 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.411104 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.411113 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.411117 LLDP, length 82 [|LLDP] 18:58:49.411118 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f2d d58b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.411120 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.411124 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.411128 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.411130 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.411134 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.411139 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.422115 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.422124 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.422128 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.422132 LLDP, length 82 [|LLDP] 18:58:49.422133 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f36 3bef 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.422135 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.422139 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.422143 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.422145 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.422150 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.433124 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.433134 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.433138 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.433142 LLDP, length 82 [|LLDP] 18:58:49.433143 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f3e a255 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.433145 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.433149 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.433153 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.433156 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.433160 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.441382 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.441390 LLDP, length 82 [|LLDP] 18:58:49.441391 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f44 ef22 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.441393 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.441397 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.441401 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.441404 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.441408 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.441412 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.441416 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.452391 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.452400 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.452404 LLDP, length 82 [|LLDP] 18:58:49.452406 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f4d 5589 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.452407 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.452411 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.452415 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.452418 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.452422 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.452426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.460649 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.460657 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.460661 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.460666 LLDP, length 82 [|LLDP] 18:58:49.460667 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f53 a255 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.460670 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.460674 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.460677 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.460680 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.460683 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.471667 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.471676 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.471680 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.471684 LLDP, length 82 [|LLDP] 18:58:49.471685 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f5c 08bc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.471687 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.471692 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.471696 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.471698 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.471703 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.482668 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.482678 LLDP, length 82 [|LLDP] 18:58:49.482680 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f64 6f22 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.482682 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.482686 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.482690 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.482692 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.482696 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.482700 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.482705 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.490927 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.490935 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.490939 LLDP, length 82 [|LLDP] 18:58:49.490940 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f6a bbef 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.490942 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.490946 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.490950 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.490953 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.490957 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.490961 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.501937 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.501946 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.501950 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.501954 LLDP, length 82 [|LLDP] 18:58:49.501956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f73 2256 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.501958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.501962 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.501965 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.501968 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.501972 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.512951 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.512960 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.512964 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.512968 LLDP, length 82 [|LLDP] 18:58:49.512970 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f7b 88bc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.512971 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.512975 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.512979 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.512981 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.512985 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.521204 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.521213 LLDP, length 82 [|LLDP] 18:58:49.521214 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f81 d588 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.521216 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.521220 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.521225 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.521227 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.521231 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.521235 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.521239 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.532214 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.532223 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.532227 LLDP, length 82 [|LLDP] 18:58:49.532229 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f8a 3bef 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.532231 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.532235 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.532239 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.532241 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.532245 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.532249 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.543228 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.543238 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.543242 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.543246 LLDP, length 82 [|LLDP] 18:58:49.543247 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f92 a255 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.543249 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.543253 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.543257 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.543259 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.543264 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.551481 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.551490 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.551494 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.551498 LLDP, length 82 [|LLDP] 18:58:49.551500 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f98 ef22 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.551502 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.551506 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.551510 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.551513 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.551517 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.562513 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.562531 LLDP, length 82 [|LLDP] 18:58:49.562533 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fa1 5588 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.562535 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.562539 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.562543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.562546 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.562550 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.562554 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.562559 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.570786 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.570809 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.570814 LLDP, length 82 [|LLDP] 18:58:49.570815 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fa7 a255 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.570818 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.570822 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.570826 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.570830 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.570834 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.570839 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.581780 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.581795 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.581799 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.581804 LLDP, length 82 [|LLDP] 18:58:49.581805 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fb0 08c3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.581807 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.581812 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.581815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.581818 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.581823 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.592779 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.592792 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.592796 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.592800 LLDP, length 82 [|LLDP] 18:58:49.592802 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fb8 6f22 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.592804 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.592808 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.592812 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.592814 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.592818 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.601036 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.601047 LLDP, length 82 [|LLDP] 18:58:49.601049 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fbe bbef 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.601051 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.601055 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.601058 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.601061 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.601065 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.601070 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.601075 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.612044 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.612056 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.612060 LLDP, length 82 [|LLDP] 18:58:49.612062 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fc7 2255 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.612064 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.612068 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.612072 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.612074 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.612078 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.612090 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.623054 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.623066 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.623070 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.623074 LLDP, length 82 [|LLDP] 18:58:49.623075 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fcf 88bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.623077 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.623081 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.623085 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.623088 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.623092 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.631311 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.631323 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.631327 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.631331 LLDP, length 82 [|LLDP] 18:58:49.631333 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fd5 d589 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.631335 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.631339 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.631343 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.631345 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.631350 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.642322 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.642334 LLDP, length 82 [|LLDP] 18:58:49.642336 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fde 3bef 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.642338 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.642342 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.642346 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.642348 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.642352 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.642356 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.642361 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.653328 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.653339 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.653343 LLDP, length 82 [|LLDP] 18:58:49.653344 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fe6 a255 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.653346 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.653350 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.653354 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.653356 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.653360 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.653365 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.661589 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.661600 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.661604 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.661608 LLDP, length 82 [|LLDP] 18:58:49.661609 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fec ef24 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.661611 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.661615 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.661619 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.661622 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.661626 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.672597 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.672607 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.672611 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.672616 LLDP, length 82 [|LLDP] 18:58:49.672617 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ff5 5588 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.672619 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.672624 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.672628 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.672631 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.672635 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.680853 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.680864 LLDP, length 82 [|LLDP] 18:58:49.680865 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ffb a255 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.680867 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.680871 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.680875 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.680877 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.680881 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.680886 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.680890 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.691867 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.691881 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.691885 LLDP, length 82 [|LLDP] 18:58:49.691886 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1004 08bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.691888 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.691891 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.691895 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.691898 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.691902 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.691906 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.702875 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.702887 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.702891 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.702895 LLDP, length 82 [|LLDP] 18:58:49.702897 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 100c 6f22 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.702899 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.702903 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.702907 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.702910 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.702914 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.711132 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.711143 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.711147 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.711151 LLDP, length 82 [|LLDP] 18:58:49.711153 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1012 bbee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.711154 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.711159 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.711163 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.711165 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.711169 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.722140 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.722151 LLDP, length 82 [|LLDP] 18:58:49.722153 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 101b 2255 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.722155 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.722159 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.722162 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.722165 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.722169 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.722173 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.722177 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.733153 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.733164 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.733168 LLDP, length 82 [|LLDP] 18:58:49.733169 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1023 88bc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.733171 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.733175 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.733179 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.733182 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.733186 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.733190 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.741409 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.741422 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.741427 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.741431 LLDP, length 82 [|LLDP] 18:58:49.741433 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1029 d588 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.741435 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.741439 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.741442 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.741445 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.741449 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.752418 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.752428 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.752433 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.752436 LLDP, length 82 [|LLDP] 18:58:49.752438 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1032 3bee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.752440 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.752444 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.752448 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.752451 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.752455 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.760676 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.760687 LLDP, length 82 [|LLDP] 18:58:49.760688 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1038 88bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.760690 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.760694 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.760698 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.760701 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.760705 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.760709 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.760714 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.771692 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.771703 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.771707 LLDP, length 82 [|LLDP] 18:58:49.771708 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1040 ef22 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.771710 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.771714 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.771718 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.771721 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.771725 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.771729 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.782711 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.782727 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.782731 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.782736 LLDP, length 82 [|LLDP] 18:58:49.782737 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1049 5588 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.782740 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.782744 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.782748 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.782751 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.782755 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.790959 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.790974 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.790978 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.790982 LLDP, length 82 [|LLDP] 18:58:49.790984 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 104f a255 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.790986 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.790990 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.790994 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.790996 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.791001 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.801966 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.801977 LLDP, length 82 [|LLDP] 18:58:49.801978 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1058 08bc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.801980 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.801984 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.801988 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.801990 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.801994 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.801998 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.802003 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.812972 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.812983 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.812987 LLDP, length 82 [|LLDP] 18:58:49.812988 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1060 6f21 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.812990 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.812994 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.812998 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.813000 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.813004 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.813009 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.821230 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.821242 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.821246 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.821250 LLDP, length 82 [|LLDP] 18:58:49.821252 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1066 bbee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.821254 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.821258 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.821262 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.821264 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.821268 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.832259 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.832273 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.832277 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.832281 LLDP, length 82 [|LLDP] 18:58:49.832283 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 106f 225b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.832285 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.832290 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.832294 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.832297 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.832301 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.843257 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.843270 LLDP, length 82 [|LLDP] 18:58:49.843272 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1077 88bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.843274 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.843278 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.843282 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.843284 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.843288 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.843292 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.843297 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.851509 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.851522 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.851526 LLDP, length 82 [|LLDP] 18:58:49.851527 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 107d d588 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.851529 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.851533 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.851537 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.851539 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.851543 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.851548 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.862520 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.862531 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.862535 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.862539 LLDP, length 82 [|LLDP] 18:58:49.862541 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1086 3bee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.862543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.862547 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.862551 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.862553 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.862558 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.870775 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.870787 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.870791 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.870795 LLDP, length 82 [|LLDP] 18:58:49.870796 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 108c 88bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.870798 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.870802 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.870806 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.870809 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.870814 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.881785 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.881796 LLDP, length 82 [|LLDP] 18:58:49.881797 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1094 ef22 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.881799 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.881803 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.881807 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.881810 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.881813 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.881818 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.881823 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.892797 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.892809 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.892813 LLDP, length 82 [|LLDP] 18:58:49.892815 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 109d 5588 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.892816 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.892820 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.892825 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.892827 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.892831 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.892835 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.901054 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.901066 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.901070 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.901074 LLDP, length 82 [|LLDP] 18:58:49.901075 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10a3 a254 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.901077 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.901082 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.901086 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.901088 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.901092 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.912064 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.912075 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.912079 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.912083 LLDP, length 82 [|LLDP] 18:58:49.912084 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10ac 08bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.912086 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.912091 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.912095 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.912097 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.912102 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.923074 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.923087 LLDP, length 82 [|LLDP] 18:58:49.923088 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10b4 6f22 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.923090 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.923094 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.923098 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.923101 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.923105 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.923109 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.923113 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.931331 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.931343 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.931347 LLDP, length 82 [|LLDP] 18:58:49.931348 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10ba bbee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.931350 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.931354 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.931358 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.931361 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.931365 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.931369 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.942341 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.942354 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.942358 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.942362 LLDP, length 82 [|LLDP] 18:58:49.942363 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10c3 2254 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.942365 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.942369 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.942373 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.942375 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.942379 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.950597 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.950609 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.950613 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.950617 LLDP, length 82 [|LLDP] 18:58:49.950619 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10c9 6f21 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.950620 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.950624 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.950628 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.950631 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.950635 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.961609 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.961621 LLDP, length 82 [|LLDP] 18:58:49.961622 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10d1 d588 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.961624 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.961628 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.961632 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.961634 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.961638 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.961642 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.961647 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.972615 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.972626 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.972630 LLDP, length 82 [|LLDP] 18:58:49.972632 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10da 3bee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.972634 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.972638 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.972642 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.972645 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.972648 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.972652 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.980875 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.980886 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.980891 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.980895 LLDP, length 82 [|LLDP] 18:58:49.980896 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10e0 88bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.980898 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.980902 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.980906 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.980909 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.980913 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.991885 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.991897 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.991901 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.991905 LLDP, length 82 [|LLDP] 18:58:49.991906 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10e8 ef21 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.991909 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.991913 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.991917 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.991919 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.991924 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:50.002898 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:50.002909 LLDP, length 82 [|LLDP] 18:58:50.002911 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10f1 5588 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:50.002913 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:50.002917 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:50.002921 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:50.002924 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.002928 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.002932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:50.002936 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:50.011150 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:50.011162 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.011166 LLDP, length 82 [|LLDP] 18:58:50.011167 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10f7 a255 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:50.011169 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:50.011174 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:50.011178 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:50.011180 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:50.011184 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.011189 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:50.022163 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:50.022174 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.022178 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.022182 LLDP, length 82 [|LLDP] 18:58:50.022184 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1100 08bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:50.022186 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:50.022190 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:50.022193 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:50.022196 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:50.022200 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:50.033174 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:50.033187 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.033191 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.033195 LLDP, length 82 [|LLDP] 18:58:50.033196 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1108 6f21 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:50.033198 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:50.033202 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:50.033206 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:50.033208 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:50.033213 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:50.041430 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:50.041442 LLDP, length 82 [|LLDP] 18:58:50.041443 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 110e bbee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:50.041445 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:50.041449 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:50.041453 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:50.041456 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.041460 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.041463 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:50.041468 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:50.052443 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:50.052455 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.052460 LLDP, length 82 [|LLDP] 18:58:50.052461 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1117 2255 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:50.052463 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:50.052467 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:50.052471 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:50.052473 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:50.052477 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.052481 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:50.060699 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:50.060711 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.060716 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.060720 LLDP, length 82 [|LLDP] 18:58:50.060721 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 111d 6f21 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:50.060723 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:50.060728 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:50.060732 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:50.060734 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:50.060739 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:50.071708 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:50.071720 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.071724 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.071728 LLDP, length 82 [|LLDP] 18:58:50.071730 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1125 d587 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:50.071731 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:50.071735 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:50.071739 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:50.071742 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:50.071746 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:50.082718 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:50.082729 LLDP, length 82 [|LLDP] 18:58:50.082731 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 112e 3bf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:50.082733 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:50.082737 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:50.082740 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:50.082743 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.082747 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.082752 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:50.082756 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:50.090975 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:50.090987 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.090991 LLDP, length 82 [|LLDP] 18:58:50.090992 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1134 88bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:50.090994 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:50.090999 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:50.091003 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:50.091006 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:50.091009 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.091014 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:50.101983 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:50.101995 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.101999 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.102003 LLDP, length 82 [|LLDP] 18:58:50.102004 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 113c ef21 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:50.102006 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:50.102010 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:50.102014 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:50.102016 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:50.102021 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:50.112996 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:50.113007 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.113011 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.113015 LLDP, length 82 [|LLDP] 18:58:50.113017 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1145 5588 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:50.113019 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:50.113023 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:50.113026 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:50.113029 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:50.113033 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:50.121252 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:50.121263 LLDP, length 82 [|LLDP] 18:58:50.121264 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 114b a254 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:50.121266 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:50.121271 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:50.121275 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:50.121277 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.121281 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.121285 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:50.121289 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:50.132264 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:50.132276 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.132280 LLDP, length 82 [|LLDP] 18:58:50.132282 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1154 08ba 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:50.132283 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:50.132287 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:50.132291 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:50.132294 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:50.132297 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.132302 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:50.143273 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:50.143287 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.143291 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.143295 LLDP, length 82 [|LLDP] 18:58:50.143296 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 115c 6f21 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:50.143298 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:50.143302 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:50.143306 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:50.143309 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:50.143313 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:50.151532 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:50.151544 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.151548 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.151552 LLDP, length 82 [|LLDP] 18:58:50.151554 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1162 bbee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:50.151556 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:50.151560 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:50.151564 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:50.151567 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:50.151571 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:50.162541 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:50.162554 LLDP, length 82 [|LLDP] 18:58:50.162555 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 116b 2254 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:50.162557 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:50.162561 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:50.162565 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:50.162568 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.162572 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.162577 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:50.162581 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:50.170798 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:50.170809 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.170813 LLDP, length 82 [|LLDP] 18:58:50.170814 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1171 6f21 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:50.170817 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:50.170821 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:50.170825 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:50.170827 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:50.170831 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.170836 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:50.181807 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:50.181818 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.181822 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.181826 LLDP, length 82 [|LLDP] 18:58:50.181827 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1179 d587 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:50.181829 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:50.181833 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:50.181838 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:50.181840 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:50.181845 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:50.192817 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:50.192829 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.192833 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.192837 LLDP, length 82 [|LLDP] 18:58:50.192838 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1182 3bee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:50.192840 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:50.192844 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:50.192848 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:50.192850 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:50.192855 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:50.201074 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:50.201084 LLDP, length 82 [|LLDP] 18:58:50.201086 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1188 88ba 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:50.201087 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:50.201092 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:50.201096 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:50.201098 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.201102 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.201106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:50.201111 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:50.212088 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:50.212100 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.212104 LLDP, length 82 [|LLDP] 18:58:50.212106 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1190 ef21 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:50.212108 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:50.212112 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:50.212116 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:50.212118 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:50.212122 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.212127 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:50.223095 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:50.223107 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.223111 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.223115 LLDP, length 82 [|LLDP] 18:58:50.223117 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1199 5587 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:50.223118 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:50.223123 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:50.223127 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:50.223129 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:50.223134 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:50.231350 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:50.231361 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.231365 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.231369 LLDP, length 82 [|LLDP] 18:58:50.231370 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 119f a254 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:50.231373 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:50.231377 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:50.231381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:50.231383 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:50.231387 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:50.242361 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:50.242373 LLDP, length 82 [|LLDP] 18:58:50.242375 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11a8 08bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:50.242377 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:50.242380 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:50.242384 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:50.242387 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.242391 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.242395 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:50.242399 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:50.250620 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:50.250632 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.250636 LLDP, length 82 [|LLDP] 18:58:50.250638 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11ae 5587 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:50.250639 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:50.250643 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:50.250647 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:50.250650 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:50.250654 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.250659 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:50.261633 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:50.261646 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.261650 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.261654 LLDP, length 82 [|LLDP] 18:58:50.261655 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11b6 bbed 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:50.261657 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:50.261661 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:50.261665 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:50.261668 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:50.261671 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:50.272642 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:50.272653 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.272657 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.272661 LLDP, length 82 [|LLDP] 18:58:50.272662 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11bf 2254 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:50.272664 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:50.272668 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:50.272672 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:50.272675 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:50.272679 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:50.280920 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:50.280937 LLDP, length 82 [|LLDP] 18:58:50.280938 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11c5 6f27 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:50.280940 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:50.280945 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:50.280949 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:50.280952 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.280956 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.280960 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:50.280964 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:50.291918 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:50.291935 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.291940 LLDP, length 82 [|LLDP] 18:58:50.291941 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11cd d587 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:50.291943 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:50.291947 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:50.291951 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:50.291954 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:50.291958 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.291963 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:50.302931 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:50.302950 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.302954 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.302958 LLDP, length 82 [|LLDP] 18:58:50.302959 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11d6 3bee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:50.302962 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:50.302966 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:50.302970 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:50.302973 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:50.302978 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:50.311187 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:50.311203 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.311207 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.311211 LLDP, length 82 [|LLDP] 18:58:50.311213 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11dc 88bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:50.311215 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:50.311219 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:50.311223 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:50.311226 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:50.311231 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:50.322192 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:50.322209 LLDP, length 82 [|LLDP] 18:58:50.322211 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11e4 ef21 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:50.322213 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:50.322218 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:50.322222 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:50.322225 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.322229 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.322233 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:50.322238 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:50.333205 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:50.333221 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.333225 LLDP, length 82 [|LLDP] 18:58:50.333226 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11ed 558e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:50.333228 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:50.333232 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:50.333236 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:50.333239 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:50.333244 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.333248 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:50.341464 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:50.341480 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.341485 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.341489 LLDP, length 82 [|LLDP] 18:58:50.341490 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11f3 a255 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:50.341499 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:50.341504 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:50.341508 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:50.341511 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:50.341516 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:50.352467 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:50.352481 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.352485 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.352489 LLDP, length 82 [|LLDP] 18:58:50.352490 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11fc 08bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:50.352492 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:50.352496 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:50.352500 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:50.352503 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:50.352507 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:50.360729 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:50.360748 LLDP, length 82 [|LLDP] 18:58:50.360749 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1202 5587 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:50.360752 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:50.360756 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:50.360760 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:50.360763 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.360767 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.360771 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:50.360776 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:50.371733 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:50.371747 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.371759 LLDP, length 82 [|LLDP] 18:58:50.371760 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 120a bbee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:50.371762 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:50.371766 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:50.371770 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:50.371773 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:50.371777 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.371781 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:50.382740 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:50.382753 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.382758 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.382762 LLDP, length 82 [|LLDP] 18:58:50.382763 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1213 2255 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:50.382766 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:50.382770 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:50.382774 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:50.382777 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:50.382781 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:50.390993 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:50.391003 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.391007 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.391011 LLDP, length 82 [|LLDP] 18:58:50.391013 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1219 6f21 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:50.391015 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:50.391019 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:50.391023 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:50.391026 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:50.391030 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:50.402004 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:50.402014 LLDP, length 82 [|LLDP] 18:58:50.402016 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1221 d588 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:50.402018 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:50.402022 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:50.402026 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:50.402028 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.402032 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.402037 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:50.402041 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:50.413016 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:50.413026 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.413030 LLDP, length 82 [|LLDP] 18:58:50.413031 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 122a 3bee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:50.413033 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:50.413037 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:50.413041 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:50.413044 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:50.413048 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.413052 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:50.421271 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:50.421282 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.421286 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.421290 LLDP, length 82 [|LLDP] 18:58:50.421292 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1230 88bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:50.421294 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:50.421298 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:50.421302 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:50.421304 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:50.421309 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:50.432282 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:50.432291 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.432295 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.432299 LLDP, length 82 [|LLDP] 18:58:50.432300 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1238 ef22 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:50.432302 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:50.432306 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:50.432310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:50.432313 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:50.432317 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:50.440537 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:50.440546 LLDP, length 82 [|LLDP] 18:58:50.440548 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 123f 3bef 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:50.440550 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:50.440554 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:50.440558 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:50.440561 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.440565 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.440569 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:50.440573 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:50.451549 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:50.451559 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.451563 LLDP, length 82 [|LLDP] 18:58:50.451564 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1247 a25c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:50.451566 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:50.451570 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:50.451574 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:50.451577 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:50.451581 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.451585 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:50.462558 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:50.462568 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.462572 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.462576 LLDP, length 82 [|LLDP] 18:58:50.462577 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1250 08bc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:50.462580 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:50.462584 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:50.462588 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:50.462590 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:50.462594 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:50.470813 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:50.470824 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.470828 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.470832 LLDP, length 82 [|LLDP] 18:58:50.470834 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1256 558a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:50.470836 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:50.470840 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:50.470844 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:50.470846 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:50.470851 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:50.481827 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:50.481837 LLDP, length 82 [|LLDP] 18:58:50.481839 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 125e bbf0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:50.481841 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:50.481844 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:50.481848 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:50.481851 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.481855 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.481859 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:50.481863 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:50.492835 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:50.492845 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.492849 LLDP, length 82 [|LLDP] 18:58:50.492850 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1267 2256 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:50.492852 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:50.492856 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:50.492860 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:50.492862 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:50.492866 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.492871 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:50.620222 LLDP, length 230: dentlab-infra2 tcpdump: verbose output suppressed, use -v or -vv for full protocol decode listening on swp33, link-type EN10MB (Ethernet), capture size 262144 bytes 5961 packets captured 5961 packets received by filter 0 packets dropped by kernel 597 packets dropped by interface INFO DENT:Logger.py:84 [DENT infrastructure 2] Ran timeout --preserve-status 15 tcpdump -i swp33 -n on infra2 with rc 0 and out 18:58:44.533744 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:44.533821 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.533827 LLDP, length 82 [|LLDP] 18:58:44.533829 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00a4 a233 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:44.533831 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:44.533836 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:44.533841 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:44.533844 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:44.533848 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.533853 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:44.541963 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:44.541982 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.541986 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.541991 LLDP, length 82 [|LLDP] 18:58:44.541993 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00aa ef00 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:44.541995 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:44.541999 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:44.542003 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:44.542007 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:44.542011 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:44.552978 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:44.552996 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.553000 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.553004 LLDP, length 82 [|LLDP] 18:58:44.553006 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00b3 5566 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:44.553009 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:44.553017 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:44.553021 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:44.553024 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:44.553028 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:44.561230 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:44.561247 LLDP, length 82 [|LLDP] 18:58:44.561249 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00b9 a239 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:44.561251 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:44.561256 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:44.561260 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:44.561262 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.561267 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.561271 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:44.561276 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:44.572240 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:44.572256 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.572260 LLDP, length 82 [|LLDP] 18:58:44.572261 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00c2 0899 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:44.572263 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:44.572272 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:44.572276 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:44.572278 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:44.572282 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.572287 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:44.583239 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:44.583253 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.583257 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.583262 LLDP, length 82 [|LLDP] 18:58:44.583263 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00ca 6eff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:44.583265 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:44.583270 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:44.583274 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:44.583276 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:44.583281 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:44.591496 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:44.591509 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.591513 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.591517 LLDP, length 82 [|LLDP] 18:58:44.591519 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00d0 bbcd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:44.591521 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:44.591525 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:44.591529 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:44.591532 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:44.591536 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:44.602504 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:44.602514 LLDP, length 82 [|LLDP] 18:58:44.602515 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00d9 2233 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:44.602517 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:44.602521 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:44.602525 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:44.602527 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.602531 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.602535 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:44.602540 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:44.613516 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:44.613527 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.613531 LLDP, length 82 [|LLDP] 18:58:44.613532 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00e1 8899 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:44.613534 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:44.613538 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:44.613543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:44.613545 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:44.613549 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.613553 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:44.621769 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:44.621778 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.621782 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.621786 LLDP, length 82 [|LLDP] 18:58:44.621788 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00e7 d566 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:44.621790 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:44.621794 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:44.621798 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:44.621800 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:44.621804 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:44.632778 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:44.632789 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.632793 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.632797 LLDP, length 82 [|LLDP] 18:58:44.632798 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00f0 3bcd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:44.632801 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:44.632805 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:44.632809 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:44.632812 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:44.632816 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:44.641040 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:44.641050 LLDP, length 82 [|LLDP] 18:58:44.641051 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00f6 8899 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:44.641053 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:44.641057 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:44.641061 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:44.641063 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.641067 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.641071 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:44.641076 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:44.652048 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:44.652058 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.652062 LLDP, length 82 [|LLDP] 18:58:44.652063 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00fe eeff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:44.652065 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:44.652069 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:44.652073 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:44.652076 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:44.652079 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.652083 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:44.663072 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:44.663081 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.663085 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.663089 LLDP, length 82 [|LLDP] 18:58:44.663090 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0107 5566 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:44.663092 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:44.663096 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:44.663100 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:44.663103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:44.663107 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:44.671321 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:44.671333 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.671337 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.671341 LLDP, length 82 [|LLDP] 18:58:44.671342 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 010d a233 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:44.671344 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:44.671349 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:44.671353 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:44.671355 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:44.671359 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:44.682331 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:44.682343 LLDP, length 82 [|LLDP] 18:58:44.682344 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0116 0899 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:44.682346 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:44.682350 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:44.682354 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:44.682357 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.682361 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.682365 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:44.682369 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:44.693339 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:44.693349 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.693353 LLDP, length 82 [|LLDP] 18:58:44.693354 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 011e 6f06 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:44.693356 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:44.693360 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:44.693364 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:44.693367 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:44.693371 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.693375 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:44.701594 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:44.701603 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.701607 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.701611 LLDP, length 82 [|LLDP] 18:58:44.701612 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0124 bbcc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:44.701614 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:44.701618 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:44.701622 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:44.701624 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:44.701629 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:44.712602 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:44.712611 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.712615 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.712619 LLDP, length 82 [|LLDP] 18:58:44.712620 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 012d 2233 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:44.712622 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:44.712626 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:44.712630 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:44.712633 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:44.712637 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:44.723612 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:44.723623 LLDP, length 82 [|LLDP] 18:58:44.723624 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0135 889a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:44.723626 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:44.723630 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:44.723634 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:44.723636 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.723640 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.723644 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:44.723658 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:44.731874 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:44.731885 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.731889 LLDP, length 82 [|LLDP] 18:58:44.731890 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 013b d567 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:44.731892 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:44.731896 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:44.731900 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:44.731903 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:44.731907 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.731911 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:44.742882 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:44.742891 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.742895 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.742899 LLDP, length 82 [|LLDP] 18:58:44.742901 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0144 3bcd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:44.742902 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:44.742906 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:44.742910 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:44.742912 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:44.742917 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:44.751136 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:44.751145 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.751149 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.751153 LLDP, length 82 [|LLDP] 18:58:44.751154 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 014a 889a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:44.751156 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:44.751160 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:44.751164 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:44.751167 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:44.751171 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:44.762149 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:44.762158 LLDP, length 82 [|LLDP] 18:58:44.762160 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0152 ef01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:44.762162 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:44.762166 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:44.762169 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:44.762172 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.762176 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.762180 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:44.762184 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:44.773156 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:44.773165 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.773169 LLDP, length 82 [|LLDP] 18:58:44.773170 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 015b 5568 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:44.773172 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:44.773176 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:44.773180 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:44.773182 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:44.773186 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.773190 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:44.781432 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:44.781448 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.781452 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.781457 LLDP, length 82 [|LLDP] 18:58:44.781458 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0161 a235 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:44.781460 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:44.781465 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:44.781469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:44.781472 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:44.781476 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:44.792426 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:44.792437 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.792441 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.792445 LLDP, length 82 [|LLDP] 18:58:44.792446 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 016a 089b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:44.792448 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:44.792453 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:44.792456 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:44.792459 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:44.792464 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:44.803433 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:44.803442 LLDP, length 82 [|LLDP] 18:58:44.803443 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0172 6f01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:44.803445 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:44.803449 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:44.803453 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:44.803456 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.803460 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.803464 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:44.803468 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:44.811691 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:44.811699 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.811704 LLDP, length 82 [|LLDP] 18:58:44.811705 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0178 bbd4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:44.811707 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:44.811711 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:44.811715 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:44.811718 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:44.811722 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.811726 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:44.822700 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:44.822710 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.822714 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.822718 LLDP, length 82 [|LLDP] 18:58:44.822720 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0181 2234 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:44.822721 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:44.822725 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:44.822729 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:44.822732 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:44.822736 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:44.830960 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:44.830969 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.830973 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.830977 LLDP, length 82 [|LLDP] 18:58:44.830978 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0187 6f01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:44.830980 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:44.830984 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:44.830988 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:44.830991 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:44.830995 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:44.841970 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:44.841980 LLDP, length 82 [|LLDP] 18:58:44.841981 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 018f d568 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:44.841983 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:44.841987 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:44.841991 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:44.841994 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.841998 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.842002 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:44.842006 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:44.852983 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:44.852992 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.852996 LLDP, length 82 [|LLDP] 18:58:44.852998 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0198 3bce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:44.852999 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:44.853004 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:44.853008 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:44.853010 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:44.853014 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.853018 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:44.861236 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:44.861244 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.861248 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.861252 LLDP, length 82 [|LLDP] 18:58:44.861254 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 019e 889b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:44.861256 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:44.861260 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:44.861264 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:44.861266 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:44.861271 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:44.872245 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:44.872254 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.872258 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.872262 LLDP, length 82 [|LLDP] 18:58:44.872263 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01a6 ef01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:44.872265 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:44.872270 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:44.872274 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:44.872276 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:44.872281 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:44.883255 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:44.883263 LLDP, length 82 [|LLDP] 18:58:44.883264 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01af 5567 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:44.883266 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:44.883270 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:44.883274 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:44.883277 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.883281 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.883285 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:44.883289 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:44.891512 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:44.891521 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.891525 LLDP, length 82 [|LLDP] 18:58:44.891527 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01b5 a235 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:44.891528 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:44.891532 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:44.891536 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:44.891539 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:44.891543 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.891548 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:44.902524 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:44.902533 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.902537 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.902541 LLDP, length 82 [|LLDP] 18:58:44.902543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01be 089b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:44.902545 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:44.902549 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:44.902553 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:44.902556 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:44.902560 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:44.913552 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:44.913569 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.913573 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.913577 LLDP, length 82 [|LLDP] 18:58:44.913579 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01c6 6f01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:44.913581 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:44.913586 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:44.913590 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:44.913593 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:44.913597 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:44.921797 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:44.921812 LLDP, length 82 [|LLDP] 18:58:44.921813 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01cc bbce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:44.921815 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:44.921819 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:44.921823 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:44.921826 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.921830 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.921835 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:44.921839 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:44.932808 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:44.932821 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.932825 LLDP, length 82 [|LLDP] 18:58:44.932826 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01d5 2235 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:44.932829 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:44.932833 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:44.932837 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:44.932840 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:44.932844 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.932848 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:44.941061 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:44.941072 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.941077 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.941081 LLDP, length 82 [|LLDP] 18:58:44.941082 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01db 6f01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:44.941084 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:44.941088 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:44.941092 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:44.941095 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:44.941099 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:44.952073 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:44.952087 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.952091 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.952095 LLDP, length 82 [|LLDP] 18:58:44.952096 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01e3 d567 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:44.952099 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:44.952103 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:44.952107 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:44.952109 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:44.952117 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:44.963110 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:44.963123 LLDP, length 82 [|LLDP] 18:58:44.963125 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01ec 3bce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:44.963127 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:44.963131 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:44.963135 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:44.963138 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.963142 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.963146 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:44.963151 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:44.971339 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:44.971352 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.971356 LLDP, length 82 [|LLDP] 18:58:44.971357 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01f2 889b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:44.971359 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:44.971363 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:44.971368 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:44.971370 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:44.971374 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.971379 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:44.982360 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:44.982375 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.982380 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.982383 LLDP, length 82 [|LLDP] 18:58:44.982385 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01fa ef04 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:44.982387 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:44.982391 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:44.982395 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:44.982398 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:44.982402 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:44.993363 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:44.993378 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.993382 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:44.993386 LLDP, length 82 [|LLDP] 18:58:44.993387 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0203 5567 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:44.993390 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:44.993394 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:44.993397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:44.993400 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:44.993411 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.001620 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.001631 LLDP, length 82 [|LLDP] 18:58:45.001633 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0209 a234 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.001635 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.001638 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.001642 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.001644 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.001649 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.001653 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.001657 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.012629 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.012648 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.012652 LLDP, length 82 [|LLDP] 18:58:45.012653 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0212 089a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.012655 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.012659 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.012664 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.012666 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.012670 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.012674 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.023637 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.023656 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.023661 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.023665 LLDP, length 82 [|LLDP] 18:58:45.023666 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 021a 6f01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.023668 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.023672 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.023676 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.023679 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.023683 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.031891 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.031901 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.031905 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.031909 LLDP, length 82 [|LLDP] 18:58:45.031910 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0220 bbce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.031912 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.031916 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.031920 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.031923 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.031927 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.042899 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.042909 LLDP, length 82 [|LLDP] 18:58:45.042910 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0229 2234 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.042912 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.042916 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.042920 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.042922 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.042926 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.042930 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.042935 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.051158 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.051167 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.051171 LLDP, length 82 [|LLDP] 18:58:45.051172 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 022f 6f01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.051174 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.051178 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.051182 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.051185 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.051189 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.051194 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.062167 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.062176 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.062180 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.062185 LLDP, length 82 [|LLDP] 18:58:45.062186 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0237 d56e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.062188 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.062192 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.062196 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.062198 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.062203 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.073177 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.073185 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.073190 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.073194 LLDP, length 82 [|LLDP] 18:58:45.073195 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0240 3bce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.073197 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.073201 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.073205 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.073207 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.073211 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.081435 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.081444 LLDP, length 82 [|LLDP] 18:58:45.081445 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0246 889a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.081447 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.081451 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.081455 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.081457 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.081462 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.081466 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.081470 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.092447 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.092457 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.092461 LLDP, length 82 [|LLDP] 18:58:45.092462 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 024e ef01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.092464 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.092468 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.092472 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.092474 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.092478 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.092483 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.103454 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.103464 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.103468 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.103473 LLDP, length 82 [|LLDP] 18:58:45.103474 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0257 5567 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.103476 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.103481 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.103484 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.103487 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.103491 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.111713 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.111722 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.111726 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.111730 LLDP, length 82 [|LLDP] 18:58:45.111732 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 025d a234 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.111734 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.111738 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.111742 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.111745 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.111749 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.122722 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.122731 LLDP, length 82 [|LLDP] 18:58:45.122732 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0266 089a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.122734 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.122739 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.122743 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.122745 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.122749 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.122753 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.122758 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.130981 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.130990 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.130994 LLDP, length 82 [|LLDP] 18:58:45.130995 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 026c 5567 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.130997 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.131000 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.131004 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.131007 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.131011 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.131015 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.141989 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.141999 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.142003 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.142007 LLDP, length 82 [|LLDP] 18:58:45.142009 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0274 bbce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.142011 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.142015 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.142018 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.142021 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.142025 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.153000 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.153009 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.153013 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.153017 LLDP, length 82 [|LLDP] 18:58:45.153018 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 027d 2234 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.153020 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.153024 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.153028 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.153030 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.153035 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.161257 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.161266 LLDP, length 82 [|LLDP] 18:58:45.161267 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0283 6f01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.161269 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.161273 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.161276 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.161279 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.161283 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.161287 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.161291 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.172268 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.172277 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.172280 LLDP, length 82 [|LLDP] 18:58:45.172282 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 028b d567 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.172284 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.172288 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.172292 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.172294 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.172298 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.172302 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.183276 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.183284 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.183288 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.183292 LLDP, length 82 [|LLDP] 18:58:45.183293 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0294 3bcd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.183295 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.183300 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.183303 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.183306 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.183310 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.191533 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.191541 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.191545 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.191549 LLDP, length 82 [|LLDP] 18:58:45.191550 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 029a 889b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.191552 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.191557 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.191561 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.191563 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.191567 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.202546 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.202555 LLDP, length 82 [|LLDP] 18:58:45.202557 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02a2 ef01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.202558 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.202562 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.202566 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.202569 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.202573 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.202577 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.202581 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.213555 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.213564 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.213568 LLDP, length 82 [|LLDP] 18:58:45.213570 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02ab 5567 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.213571 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.213575 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.213579 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.213582 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.213586 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.213590 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.221811 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.221820 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.221824 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.221827 LLDP, length 82 [|LLDP] 18:58:45.221829 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02b1 a234 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.221831 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.221835 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.221839 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.221841 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.221845 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.232820 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.232829 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.232833 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.232837 LLDP, length 82 [|LLDP] 18:58:45.232838 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02ba 089d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.232840 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.232844 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.232848 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.232851 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.232855 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.241080 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.241089 LLDP, length 82 [|LLDP] 18:58:45.241090 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02c0 5567 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.241092 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.241096 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.241100 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.241103 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.241106 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.241110 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.241114 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.252096 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.252106 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.252110 LLDP, length 82 [|LLDP] 18:58:45.252112 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02c8 bbce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.252114 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.252118 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.252121 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.252124 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.252128 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.252133 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.263123 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.263135 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.263139 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.263143 LLDP, length 82 [|LLDP] 18:58:45.263145 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02d1 2234 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.263147 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.263151 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.263155 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.263158 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.263162 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.271359 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.271370 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.271374 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.271378 LLDP, length 82 [|LLDP] 18:58:45.271379 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02d7 6f00 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.271381 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.271385 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.271389 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.271392 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.271396 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.282367 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.282376 LLDP, length 82 [|LLDP] 18:58:45.282377 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02df d567 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.282379 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.282383 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.282387 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.282389 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.282394 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.282398 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.282402 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.293377 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.293386 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.293390 LLDP, length 82 [|LLDP] 18:58:45.293391 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02e8 3bcd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.293393 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.293396 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.293400 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.293403 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.293407 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.293411 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.301633 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.301642 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.301646 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.301650 LLDP, length 82 [|LLDP] 18:58:45.301651 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02ee 889a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.301653 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.301657 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.301661 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.301663 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.301667 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.312644 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.312654 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.312658 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.312662 LLDP, length 82 [|LLDP] 18:58:45.312663 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02f6 ef07 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.312665 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.312669 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.312673 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.312675 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.312679 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.320902 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.320911 LLDP, length 82 [|LLDP] 18:58:45.320912 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02fd 3bcd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.320914 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.320918 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.320922 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.320924 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.320928 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.320932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.320937 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.331911 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.331919 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.331923 LLDP, length 82 [|LLDP] 18:58:45.331925 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0305 a233 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.331926 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.331930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.331935 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.331937 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.331941 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.331945 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.342943 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.342958 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.342962 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.342966 LLDP, length 82 [|LLDP] 18:58:45.342968 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 030e 089a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.342970 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.342974 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.342978 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.342981 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.342985 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.351182 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.351193 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.351197 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.351201 LLDP, length 82 [|LLDP] 18:58:45.351202 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0314 5567 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.351204 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.351208 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.351212 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.351215 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.351220 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.362190 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.362201 LLDP, length 82 [|LLDP] 18:58:45.362202 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 031c bbcd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.362204 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.362208 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.362212 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.362215 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.362219 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.362223 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.362228 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.373200 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.373210 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.373214 LLDP, length 82 [|LLDP] 18:58:45.373215 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0325 2233 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.373217 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.373221 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.373224 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.373227 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.373231 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.373236 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.381457 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.381466 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.381470 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.381474 LLDP, length 82 [|LLDP] 18:58:45.381475 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 032b 6f01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.381477 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.381481 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.381484 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.381487 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.381491 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.392465 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.392474 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.392478 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.392482 LLDP, length 82 [|LLDP] 18:58:45.392483 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0333 d567 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.392485 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.392489 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.392493 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.392496 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.392500 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.403476 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.403484 LLDP, length 82 [|LLDP] 18:58:45.403486 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 033c 3bcd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.403488 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.403492 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.403496 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.403498 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.403502 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.403506 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.403510 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.411733 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.411744 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.411748 LLDP, length 82 [|LLDP] 18:58:45.411749 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0342 889a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.411752 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.411756 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.411759 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.411762 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.411766 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.411770 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.422744 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.422752 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.422756 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.422760 LLDP, length 82 [|LLDP] 18:58:45.422762 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 034a ef00 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.422764 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.422768 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.422772 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.422774 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.422778 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.431000 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.431008 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.431012 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.431016 LLDP, length 82 [|LLDP] 18:58:45.431018 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0351 3bd3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.431020 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.431024 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.431028 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.431030 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.431035 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.442013 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.442022 LLDP, length 82 [|LLDP] 18:58:45.442023 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0359 a233 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.442025 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.442029 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.442032 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.442035 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.442040 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.442043 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.442048 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.453022 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.453032 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.453036 LLDP, length 82 [|LLDP] 18:58:45.453037 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0362 089a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.453039 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.453043 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.453047 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.453050 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.453053 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.453058 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.461278 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.461288 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.461292 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.461296 LLDP, length 82 [|LLDP] 18:58:45.461298 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0368 5566 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.461299 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.461303 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.461307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.461310 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.461314 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.472302 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.472317 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.472322 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.472326 LLDP, length 82 [|LLDP] 18:58:45.472327 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0370 bbcc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.472329 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.472333 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.472340 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.472343 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.472348 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.483337 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.483362 LLDP, length 82 [|LLDP] 18:58:45.483364 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0379 2234 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.483367 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.483371 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.483375 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.483378 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.483383 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.483388 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.483392 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.491573 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.491590 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.491594 LLDP, length 82 [|LLDP] 18:58:45.491596 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 037f 6f00 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.491598 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.491603 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.491607 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.491610 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.491614 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.491618 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.502573 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.502590 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.502595 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.502599 LLDP, length 82 [|LLDP] 18:58:45.502600 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0387 d566 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.502602 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.502606 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.502610 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.502613 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.502617 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.513588 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.513600 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.513604 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.513608 LLDP, length 82 [|LLDP] 18:58:45.513610 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0390 3bcc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.513612 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.513616 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.513620 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.513623 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.513628 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.521838 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.521847 LLDP, length 82 [|LLDP] 18:58:45.521849 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0396 8899 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.521851 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.521855 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.521859 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.521861 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.521865 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.521870 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.521874 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.532847 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.532858 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.532862 LLDP, length 82 [|LLDP] 18:58:45.532863 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 039e eeff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.532865 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.532869 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.532873 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.532875 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.532879 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.532883 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.541103 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.541113 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.541117 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.541121 LLDP, length 82 [|LLDP] 18:58:45.541122 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03a5 3bcd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.541124 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.541128 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.541132 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.541134 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.541139 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.552120 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.552132 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.552136 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.552140 LLDP, length 82 [|LLDP] 18:58:45.552141 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03ad a233 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.552143 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.552148 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.552152 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.552154 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.552158 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.563126 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.563137 LLDP, length 82 [|LLDP] 18:58:45.563138 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03b6 08a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.563140 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.563144 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.563148 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.563151 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.563155 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.563159 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.563163 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.571389 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.571406 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.571410 LLDP, length 82 [|LLDP] 18:58:45.571412 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03bc 5566 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.571414 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.571418 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.571422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.571425 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.571428 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.571433 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.582395 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.582406 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.582410 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.582414 LLDP, length 82 [|LLDP] 18:58:45.582416 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03c4 bbcd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.582418 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.582422 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.582426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.582428 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.582433 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.593401 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.593411 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.593415 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.593419 LLDP, length 82 [|LLDP] 18:58:45.593420 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03cd 2233 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.593422 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.593426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.593430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.593433 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.593437 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.601671 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.601682 LLDP, length 82 [|LLDP] 18:58:45.601683 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03d3 6eff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.601685 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.601688 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.601692 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.601695 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.601698 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.601703 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.601707 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.612669 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.612679 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.612683 LLDP, length 82 [|LLDP] 18:58:45.612685 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03db d566 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.612687 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.612690 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.612694 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.612697 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.612701 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.612705 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.620927 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.620938 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.620942 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.620946 LLDP, length 82 [|LLDP] 18:58:45.620947 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03e2 2233 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.620949 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.620954 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.620957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.620960 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.620964 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.631937 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.631948 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.631952 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.631956 LLDP, length 82 [|LLDP] 18:58:45.631958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03ea 8899 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.631960 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.631964 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.631967 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.631970 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.631974 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.642948 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.642958 LLDP, length 82 [|LLDP] 18:58:45.642960 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03f2 ef00 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.642962 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.642966 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.642970 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.642972 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.642976 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.642980 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.642984 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.651202 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.651211 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.651214 LLDP, length 82 [|LLDP] 18:58:45.651216 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03f9 3bcd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.651218 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.651221 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.651225 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.651228 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.651232 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.651236 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.662214 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.662224 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.662228 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.662232 LLDP, length 82 [|LLDP] 18:58:45.662233 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0401 a233 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.662235 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.662239 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.662243 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.662246 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.662250 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.673222 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.673232 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.673236 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.673240 LLDP, length 82 [|LLDP] 18:58:45.673241 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 040a 0899 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.673243 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.673248 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.673252 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.673254 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.673259 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.681480 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.681490 LLDP, length 82 [|LLDP] 18:58:45.681492 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0410 556d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.681494 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.681498 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.681502 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.681504 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.681508 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.681513 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.681517 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.692514 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.692535 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.692540 LLDP, length 82 [|LLDP] 18:58:45.692541 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0418 bbcd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.692544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.692548 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.692552 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.692555 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.692559 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.692564 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.703522 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.703539 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.703544 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.703548 LLDP, length 82 [|LLDP] 18:58:45.703550 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0421 2233 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.703551 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.703556 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.703559 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.703562 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.703567 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.711767 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.711783 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.711787 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.711791 LLDP, length 82 [|LLDP] 18:58:45.711793 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0427 6f00 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.711795 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.711799 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.711804 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.711807 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.711811 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.722773 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.722787 LLDP, length 82 [|LLDP] 18:58:45.722789 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 042f d566 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.722791 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.722795 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.722799 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.722802 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.722806 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.722811 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.722815 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.731025 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.731037 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.731041 LLDP, length 82 [|LLDP] 18:58:45.731042 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0436 2233 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.731044 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.731048 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.731052 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.731055 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.731059 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.731064 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.742036 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.742046 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.742050 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.742054 LLDP, length 82 [|LLDP] 18:58:45.742056 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 043e 8899 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.742058 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.742062 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.742067 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.742069 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.742074 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.753066 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.753083 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.753088 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.753092 LLDP, length 82 [|LLDP] 18:58:45.753093 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0446 ef00 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.753096 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.753100 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.753104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.753107 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.753112 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.761303 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.761315 LLDP, length 82 [|LLDP] 18:58:45.761317 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 044d 3bce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.761319 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.761323 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.761327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.761329 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.761333 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.761337 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.761342 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.772313 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.772323 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.772327 LLDP, length 82 [|LLDP] 18:58:45.772328 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0455 a233 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.772330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.772334 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.772338 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.772341 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.772344 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.772349 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.783338 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.783353 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.783357 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.783361 LLDP, length 82 [|LLDP] 18:58:45.783363 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 045e 089a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.783365 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.783369 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.783373 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.783376 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.783380 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.791581 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.791593 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.791597 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.791601 LLDP, length 82 [|LLDP] 18:58:45.791602 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0464 5566 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.791604 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.791609 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.791613 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.791615 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.791620 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.802592 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.802602 LLDP, length 82 [|LLDP] 18:58:45.802604 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 046c bbcc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.802606 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.802610 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.802614 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.802616 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.802620 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.802624 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.802629 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.813599 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.813610 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.813614 LLDP, length 82 [|LLDP] 18:58:45.813615 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0475 223a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.813617 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.813621 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.813625 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.813628 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.813632 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.813636 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.821857 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.821868 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.821872 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.821876 LLDP, length 82 [|LLDP] 18:58:45.821877 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 047b 6f00 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.821879 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.821884 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.821887 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.821890 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.821894 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.832869 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.832880 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.832884 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.832888 LLDP, length 82 [|LLDP] 18:58:45.832890 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0483 d566 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.832892 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.832896 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.832900 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.832902 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.832906 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.841125 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.841135 LLDP, length 82 [|LLDP] 18:58:45.841136 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 048a 2233 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.841138 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.841142 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.841146 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.841148 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.841152 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.841156 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.841160 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.852136 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.852145 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.852149 LLDP, length 82 [|LLDP] 18:58:45.852151 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0492 8899 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.852153 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.852156 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.852160 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.852163 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.852167 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.852171 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.863143 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.863153 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.863157 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.863161 LLDP, length 82 [|LLDP] 18:58:45.863162 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 049a ef00 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.863164 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.863169 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.863173 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.863175 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.863179 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.871406 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.871417 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.871420 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.871424 LLDP, length 82 [|LLDP] 18:58:45.871426 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04a1 3bcc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.871428 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.871432 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.871436 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.871438 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.871443 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.882411 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.882423 LLDP, length 82 [|LLDP] 18:58:45.882424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04a9 a233 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.882426 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.882430 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.882433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.882436 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.882440 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.882444 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.882448 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.893422 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.893433 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.893437 LLDP, length 82 [|LLDP] 18:58:45.893439 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04b2 0899 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.893440 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.893445 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.893449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.893451 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.893455 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.893460 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.901679 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.901688 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.901692 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.901696 LLDP, length 82 [|LLDP] 18:58:45.901697 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04b8 5566 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.901699 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.901703 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.901707 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.901710 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.901714 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.912688 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.912698 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.912702 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.912706 LLDP, length 82 [|LLDP] 18:58:45.912707 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04c0 bbcd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.912709 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.912713 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.912717 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.912720 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.912724 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.920944 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.920953 LLDP, length 82 [|LLDP] 18:58:45.920955 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04c7 0899 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.920957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.920961 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.920964 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.920967 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.920971 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.920975 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.920980 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.931958 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.931967 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.931971 LLDP, length 82 [|LLDP] 18:58:45.931973 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04cf 6f06 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.931975 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.931979 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.931982 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.931985 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.931989 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.931994 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.942967 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.942976 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.942980 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.942984 LLDP, length 82 [|LLDP] 18:58:45.942986 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04d7 d566 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.942987 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.942991 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.942995 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.942998 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.943002 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.951223 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.951233 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.951237 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.951241 LLDP, length 82 [|LLDP] 18:58:45.951242 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04de 2233 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.951244 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.951248 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.951252 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.951254 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.951259 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.962233 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.962242 LLDP, length 82 [|LLDP] 18:58:45.962244 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04e6 8899 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.962245 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.962249 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.962253 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.962255 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.962260 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.962264 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.962269 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.973242 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.973252 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.973256 LLDP, length 82 [|LLDP] 18:58:45.973257 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04ee eeff 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.973259 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.973263 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.973267 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.973270 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.973274 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.973278 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.981519 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.981537 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.981541 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.981545 LLDP, length 82 [|LLDP] 18:58:45.981547 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04f5 3bcc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.981549 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.981554 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.981558 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.981561 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.981565 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:45.992525 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:45.992540 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.992545 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:45.992549 LLDP, length 82 [|LLDP] 18:58:45.992551 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04fd a233 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:45.992553 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:45.992557 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:45.992561 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:45.992564 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:45.992568 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.003529 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.003542 LLDP, length 82 [|LLDP] 18:58:46.003543 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0506 0899 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.003545 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.003550 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.003554 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.003556 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.003560 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.003564 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.003569 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.015600 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.015614 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.015619 LLDP, length 82 [|LLDP] 18:58:46.015620 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 050c 5566 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.015622 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.015626 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.015630 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.015633 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.015636 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.015641 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.022797 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.022810 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.022814 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.022818 LLDP, length 82 [|LLDP] 18:58:46.022826 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0514 bbcd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.022828 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.022833 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.022837 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.022840 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.022844 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.031050 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.031062 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.031066 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.031070 LLDP, length 82 [|LLDP] 18:58:46.031072 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 051b 089a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.031074 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.031078 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.031082 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.031084 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.031088 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.042064 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.042077 LLDP, length 82 [|LLDP] 18:58:46.042079 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0523 6f01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.042081 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.042085 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.042089 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.042092 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.042096 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.042100 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.042105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.053076 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.053090 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.053095 LLDP, length 82 [|LLDP] 18:58:46.053096 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 052b d567 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.053099 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.053103 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.053107 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.053110 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.053114 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.053119 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.061336 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.061357 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.061361 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.061365 LLDP, length 82 [|LLDP] 18:58:46.061367 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0532 2234 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.061369 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.061374 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.061378 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.061381 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.061385 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.072341 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.072356 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.072360 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.072364 LLDP, length 82 [|LLDP] 18:58:46.072365 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 053a 889a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.072367 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.072371 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.072375 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.072378 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.072382 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.083349 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.083362 LLDP, length 82 [|LLDP] 18:58:46.083363 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0542 ef01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.083365 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.083369 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.083373 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.083376 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.083380 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.083384 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.083389 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.091606 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.091618 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.091622 LLDP, length 82 [|LLDP] 18:58:46.091623 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0549 3bce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.091625 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.091629 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.091633 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.091636 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.091640 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.091644 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.102615 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.102626 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.102631 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.102635 LLDP, length 82 [|LLDP] 18:58:46.102636 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0551 a234 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.102638 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.102642 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.102646 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.102649 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.102654 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.110870 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.110880 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.110884 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.110887 LLDP, length 82 [|LLDP] 18:58:46.110889 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0557 ef01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.110891 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.110895 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.110899 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.110901 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.110905 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.121877 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.121887 LLDP, length 82 [|LLDP] 18:58:46.121888 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0560 5568 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.121890 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.121894 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.121898 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.121900 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.121904 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.121909 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.121913 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.132888 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.132898 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.132902 LLDP, length 82 [|LLDP] 18:58:46.132903 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0568 bbce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.132905 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.132909 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.132913 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.132916 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.132920 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.132925 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.141146 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.141156 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.141160 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.141164 LLDP, length 82 [|LLDP] 18:58:46.141165 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 056f 089b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.141167 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.141171 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.141175 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.141178 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.141182 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.152156 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.152165 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.152169 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.152173 LLDP, length 82 [|LLDP] 18:58:46.152175 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0577 6f01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.152177 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.152180 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.152184 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.152187 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.152191 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.163166 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.163176 LLDP, length 82 [|LLDP] 18:58:46.163177 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 057f d567 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.163179 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.163183 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.163186 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.163189 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.163193 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.163197 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.163201 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.171426 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.171437 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.171441 LLDP, length 82 [|LLDP] 18:58:46.171442 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0586 2234 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.171444 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.171448 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.171452 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.171455 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.171458 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.171463 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.182433 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.182445 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.182449 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.182453 LLDP, length 82 [|LLDP] 18:58:46.182455 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 058e 88a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.182457 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.182461 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.182465 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.182467 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.182471 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.193444 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.193455 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.193459 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.193464 LLDP, length 82 [|LLDP] 18:58:46.193465 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0596 ef01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.193467 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.193472 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.193476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.193479 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.193483 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.201702 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.201712 LLDP, length 82 [|LLDP] 18:58:46.201713 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 059d 3bcd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.201715 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.201719 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.201723 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.201725 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.201730 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.201733 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.201738 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.212710 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.212720 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.212724 LLDP, length 82 [|LLDP] 18:58:46.212726 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05a5 a234 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.212727 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.212732 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.212736 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.212738 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.212742 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.212747 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.220966 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.220976 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.220980 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.220984 LLDP, length 82 [|LLDP] 18:58:46.220985 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05ab ef01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.220988 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.220992 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.220995 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.220998 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.221002 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.231977 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.231986 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.231990 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.231994 LLDP, length 82 [|LLDP] 18:58:46.231996 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05b4 5567 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.231997 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.232001 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.232005 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.232008 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.232013 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.242988 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.242999 LLDP, length 82 [|LLDP] 18:58:46.243000 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05bc bbcd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.243003 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.243007 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.243010 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.243013 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.243017 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.243021 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.243026 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.251246 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.251256 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.251260 LLDP, length 82 [|LLDP] 18:58:46.251262 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05c3 089b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.251263 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.251267 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.251271 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.251274 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.251278 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.251283 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.262255 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.262265 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.262269 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.262273 LLDP, length 82 [|LLDP] 18:58:46.262275 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05cb 6f01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.262277 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.262281 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.262285 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.262287 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.262292 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.273264 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.273274 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.273278 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.273282 LLDP, length 82 [|LLDP] 18:58:46.273283 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05d3 d567 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.273285 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.273289 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.273293 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.273296 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.273300 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.281523 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.281532 LLDP, length 82 [|LLDP] 18:58:46.281534 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05da 2234 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.281536 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.281540 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.281544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.281546 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.281550 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.281554 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.281558 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.292539 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.292551 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.292555 LLDP, length 82 [|LLDP] 18:58:46.292557 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05e2 889b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.292559 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.292563 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.292567 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.292570 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.292574 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.292578 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.303544 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.303556 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.303560 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.303564 LLDP, length 82 [|LLDP] 18:58:46.303566 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05ea ef01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.303568 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.303572 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.303576 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.303579 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.303583 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.311801 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.311810 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.311814 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.311818 LLDP, length 82 [|LLDP] 18:58:46.311820 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05f1 3bce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.311822 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.311826 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.311830 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.311833 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.311837 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.322811 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.322822 LLDP, length 82 [|LLDP] 18:58:46.322823 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05f9 a234 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.322825 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.322829 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.322832 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.322835 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.322839 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.322843 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.322847 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.331065 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.331075 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.331079 LLDP, length 82 [|LLDP] 18:58:46.331080 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05ff ef01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.331082 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.331086 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.331090 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.331092 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.331096 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.331100 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.342078 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.342088 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.342092 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.342096 LLDP, length 82 [|LLDP] 18:58:46.342097 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0608 5568 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.342099 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.342103 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.342107 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.342110 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.342114 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.353089 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.353101 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.353104 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.353108 LLDP, length 82 [|LLDP] 18:58:46.353110 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0610 bbd2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.353112 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.353116 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.353120 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.353122 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.353127 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.361344 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.361353 LLDP, length 82 [|LLDP] 18:58:46.361355 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0617 089a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.361357 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.361361 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.361364 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.361367 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.361371 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.361375 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.361379 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.372358 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.372371 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.372375 LLDP, length 82 [|LLDP] 18:58:46.372376 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 061f 6f01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.372378 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.372382 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.372386 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.372388 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.372392 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.372397 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.383367 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.383378 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.383382 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.383386 LLDP, length 82 [|LLDP] 18:58:46.383388 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0627 d568 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.383390 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.383394 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.383398 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.383400 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.383404 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.391621 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.391632 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.391636 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.391640 LLDP, length 82 [|LLDP] 18:58:46.391641 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 062e 2234 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.391643 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.391655 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.391660 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.391663 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.391667 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.402635 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.402647 LLDP, length 82 [|LLDP] 18:58:46.402648 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0636 889a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.402650 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.402654 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.402658 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.402660 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.402665 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.402669 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.402673 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.410890 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.410901 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.410905 LLDP, length 82 [|LLDP] 18:58:46.410906 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 063c d567 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.410908 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.410912 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.410916 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.410918 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.410922 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.410926 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.421932 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.421953 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.421958 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.421962 LLDP, length 82 [|LLDP] 18:58:46.421964 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0645 3bcd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.421966 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.421971 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.421975 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.421978 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.421983 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.432933 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.432949 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.432953 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.432957 LLDP, length 82 [|LLDP] 18:58:46.432959 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 064d a23a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.432961 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.432965 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.432969 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.432972 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.432976 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.441176 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.441188 LLDP, length 82 [|LLDP] 18:58:46.441190 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0653 ef01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.441192 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.441196 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.441200 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.441203 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.441207 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.441212 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.441216 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.452186 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.452205 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.452209 LLDP, length 82 [|LLDP] 18:58:46.452211 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 065c 5567 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.452213 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.452217 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.452221 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.452224 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.452229 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.452233 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.463199 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.463214 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.463218 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.463223 LLDP, length 82 [|LLDP] 18:58:46.463224 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0664 bbcd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.463226 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.463231 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.463235 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.463237 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.463241 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.471458 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.471473 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.471477 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.471481 LLDP, length 82 [|LLDP] 18:58:46.471483 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 066b 089a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.471485 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.471489 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.471493 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.471496 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.471500 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.482467 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.482484 LLDP, length 82 [|LLDP] 18:58:46.482486 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0673 6f00 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.482488 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.482492 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.482496 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.482498 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.482503 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.482507 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.482511 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.493495 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.493519 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.493524 LLDP, length 82 [|LLDP] 18:58:46.493526 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 067b d567 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.493528 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.493532 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.493537 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.493540 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.493544 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.493549 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.501766 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.501796 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.501801 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.501806 LLDP, length 82 [|LLDP] 18:58:46.501808 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0682 2234 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.501811 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.501815 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.501819 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.501823 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.501828 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.512756 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.512775 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.512779 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.512783 LLDP, length 82 [|LLDP] 18:58:46.512789 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 068a 88bc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.512792 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.512797 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.512801 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.512804 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.512808 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.521008 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.521026 LLDP, length 82 [|LLDP] 18:58:46.521032 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0690 d588 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.521034 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.521039 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.521043 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.521046 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.521050 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.521054 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.521059 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.532020 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.532037 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.532042 LLDP, length 82 [|LLDP] 18:58:46.532044 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0699 3bee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.532046 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.532050 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.532054 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.532057 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.532062 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.532067 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.543022 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.543037 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.543041 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.543045 LLDP, length 82 [|LLDP] 18:58:46.543047 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06a1 a255 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.543049 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.543053 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.543057 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.543060 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.543065 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.551279 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.551293 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.551297 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.551302 LLDP, length 82 [|LLDP] 18:58:46.551303 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06a7 ef22 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.551305 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.551309 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.551313 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.551316 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.551321 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.562303 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.562323 LLDP, length 82 [|LLDP] 18:58:46.562325 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06b0 5588 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.562327 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.562331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.562335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.562338 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.562343 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.562347 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.562351 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.573306 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.573324 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.573328 LLDP, length 82 [|LLDP] 18:58:46.573330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06b8 bbee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.573332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.573336 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.573340 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.573343 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.573347 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.573352 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.581559 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.581573 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.581577 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.581581 LLDP, length 82 [|LLDP] 18:58:46.581583 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06bf 08bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.581585 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.581593 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.581597 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.581600 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.581604 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.592564 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.592580 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.592584 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.592588 LLDP, length 82 [|LLDP] 18:58:46.592590 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06c7 6f22 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.592592 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.592596 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.592600 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.592603 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.592607 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.600842 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.600861 LLDP, length 82 [|LLDP] 18:58:46.600863 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06cd bbef 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.600865 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.600869 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.600873 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.600876 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.600881 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.600886 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.600890 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.611844 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.611872 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.611876 LLDP, length 82 [|LLDP] 18:58:46.611878 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06d6 2255 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.611880 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.611884 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.611888 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.611891 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.611895 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.611900 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.622870 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.622889 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.622894 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.622898 LLDP, length 82 [|LLDP] 18:58:46.622900 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06de 88bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.622902 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.622906 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.622910 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.622913 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.622917 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.631108 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.631126 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.631131 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.631135 LLDP, length 82 [|LLDP] 18:58:46.631137 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06e4 d588 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.631139 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.631143 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.631147 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.631150 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.631154 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.642126 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.642142 LLDP, length 82 [|LLDP] 18:58:46.642143 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06ed 3bef 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.642145 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.642150 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.642154 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.642157 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.642161 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.642165 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.642169 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.653127 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.653144 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.653148 LLDP, length 82 [|LLDP] 18:58:46.653149 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06f5 a255 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.653151 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.653155 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.653159 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.653163 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.653166 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.653171 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.661384 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.661400 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.661404 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.661408 LLDP, length 82 [|LLDP] 18:58:46.661410 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06fb ef21 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.661412 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.661416 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.661420 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.661423 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.661427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.672388 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.672403 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.672408 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.672416 LLDP, length 82 [|LLDP] 18:58:46.672418 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0704 5589 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.672420 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.672425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.672429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.672432 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.672436 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.683400 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.683415 LLDP, length 82 [|LLDP] 18:58:46.683417 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 070c bbef 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.683419 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.683423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.683427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.683429 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.683434 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.683438 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.683442 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.691687 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.691711 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.691715 LLDP, length 82 [|LLDP] 18:58:46.691717 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0713 08bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.691719 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.691724 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.691728 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.691731 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.691736 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.691741 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.702671 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.702688 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.702692 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.702697 LLDP, length 82 [|LLDP] 18:58:46.702698 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 071b 6f22 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.702701 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.702705 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.702709 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.702711 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.702716 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.710933 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.710949 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.710953 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.710957 LLDP, length 82 [|LLDP] 18:58:46.710959 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0721 bbef 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.710961 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.710965 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.710969 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.710972 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.710976 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.721938 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.721954 LLDP, length 82 [|LLDP] 18:58:46.721956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 072a 225c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.721957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.721962 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.721965 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.721968 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.721973 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.721977 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.721981 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.732947 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.732961 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.732965 LLDP, length 82 [|LLDP] 18:58:46.732967 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0732 88bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.732969 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.732973 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.732977 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.732980 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.732984 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.732988 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.741203 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.741219 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.741224 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.741228 LLDP, length 82 [|LLDP] 18:58:46.741229 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0738 d588 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.741232 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.741236 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.741240 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.741242 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.741247 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.752217 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.752233 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.752237 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.752241 LLDP, length 82 [|LLDP] 18:58:46.752243 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0741 3bef 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.752245 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.752249 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.752254 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.752257 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.752261 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.763231 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.763254 LLDP, length 82 [|LLDP] 18:58:46.763256 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0749 a255 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.763258 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.763262 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.763266 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.763269 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.763274 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.763278 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.763282 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.771493 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.771514 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.771518 LLDP, length 82 [|LLDP] 18:58:46.771520 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 074f ef22 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.771523 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.771527 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.771531 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.771534 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.771538 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.771543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.782500 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.782518 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.782522 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.782527 LLDP, length 82 [|LLDP] 18:58:46.782528 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0758 5588 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.782531 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.782536 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.782540 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.782543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.782547 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.793507 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.793526 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.793530 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.793534 LLDP, length 82 [|LLDP] 18:58:46.793536 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0760 bbee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.793538 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.793542 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.793546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.793549 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.793554 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.801768 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.801785 LLDP, length 82 [|LLDP] 18:58:46.801787 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0767 08bc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.801789 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.801793 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.801797 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.801800 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.801804 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.801808 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.801812 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.812766 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.812782 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.812786 LLDP, length 82 [|LLDP] 18:58:46.812787 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 076f 6f22 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.812790 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.812794 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.812798 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.812801 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.812813 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.812818 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.821022 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.821039 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.821043 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.821047 LLDP, length 82 [|LLDP] 18:58:46.821049 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0775 bbee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.821051 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.821055 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.821060 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.821062 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.821067 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.832042 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.832059 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.832063 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.832067 LLDP, length 82 [|LLDP] 18:58:46.832069 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 077e 2255 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.832071 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.832075 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.832079 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.832082 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.832086 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.843046 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.843063 LLDP, length 82 [|LLDP] 18:58:46.843064 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0786 88bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.843066 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.843070 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.843074 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.843077 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.843081 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.843086 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.843090 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.851301 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.851318 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.851322 LLDP, length 82 [|LLDP] 18:58:46.851324 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 078c d588 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.851326 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.851330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.851334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.851337 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.851341 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.851345 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.862313 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.862329 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.862334 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.862338 LLDP, length 82 [|LLDP] 18:58:46.862339 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0795 3bee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.862341 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.862346 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.862350 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.862353 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.862357 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.873328 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.873345 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.873349 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.873353 LLDP, length 82 [|LLDP] 18:58:46.873355 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 079d a255 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.873357 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.873361 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.873365 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.873368 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.873372 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.881580 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.881600 LLDP, length 82 [|LLDP] 18:58:46.881601 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07a3 ef22 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.881603 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.881608 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.881612 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.881614 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.881619 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.881623 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.881628 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.892590 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.892605 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.892609 LLDP, length 82 [|LLDP] 18:58:46.892611 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07ac 5588 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.892613 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.892617 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.892622 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.892624 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.892628 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.892633 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.900843 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.900858 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.900862 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.900866 LLDP, length 82 [|LLDP] 18:58:46.900868 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07b2 a255 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.900870 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.900874 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.900878 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.900881 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.900885 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.911853 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.911868 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.911872 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.911877 LLDP, length 82 [|LLDP] 18:58:46.911878 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07bb 08bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.911880 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.911885 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.911889 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.911892 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.911896 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.922876 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.922890 LLDP, length 82 [|LLDP] 18:58:46.922892 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07c3 6f22 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.922894 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.922898 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.922901 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.922904 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.922909 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.922913 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.922917 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.931121 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.931136 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.931141 LLDP, length 82 [|LLDP] 18:58:46.931142 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07c9 bbee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.931144 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.931149 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.931153 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.931156 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.931160 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.931165 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.942137 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.942156 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.942160 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.942164 LLDP, length 82 [|LLDP] 18:58:46.942166 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07d2 2255 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.942168 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.942172 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.942176 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.942179 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.942184 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.953147 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.953163 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.953167 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.953171 LLDP, length 82 [|LLDP] 18:58:46.953173 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07da 88bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.953175 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.953179 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.953183 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.953186 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.953190 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.961400 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.961415 LLDP, length 82 [|LLDP] 18:58:46.961416 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07e0 d588 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.961418 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.961423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.961427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.961429 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.961434 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.961438 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.961442 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.972405 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.972419 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.972423 LLDP, length 82 [|LLDP] 18:58:46.972425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07e9 3bf5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.972427 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.972431 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.972435 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.972438 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.972442 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.972447 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.983419 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.983434 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.983438 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.983442 LLDP, length 82 [|LLDP] 18:58:46.983444 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07f1 a255 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.983446 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.983450 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.983454 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.983456 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.983461 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:46.991687 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:46.991705 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.991709 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:46.991714 LLDP, length 82 [|LLDP] 18:58:46.991716 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07f7 ef21 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:46.991718 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:46.991722 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:46.991726 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:46.991729 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:46.991733 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.002692 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.002708 LLDP, length 82 [|LLDP] 18:58:47.002710 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0800 5587 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.002712 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.002716 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.002720 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.002723 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.002727 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.002731 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.002735 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.010947 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.010961 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.010965 LLDP, length 82 [|LLDP] 18:58:47.010967 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0806 a255 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.010969 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.010973 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.010977 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.010980 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.010984 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.010988 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.022015 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.022057 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.022062 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.022067 LLDP, length 82 [|LLDP] 18:58:47.022069 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 080f 08bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.022072 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.022076 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.022080 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.022085 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.022090 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.033026 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.033068 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.033072 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.033076 LLDP, length 82 [|LLDP] 18:58:47.033079 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0817 6f21 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.033081 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.033086 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.033090 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.033095 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.033100 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.041270 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.041306 LLDP, length 82 [|LLDP] 18:58:47.041308 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 081d bbee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.041311 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.041316 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.041320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.041325 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.041329 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.041334 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.041338 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.052285 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.052325 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.052329 LLDP, length 82 [|LLDP] 18:58:47.052331 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0826 2255 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.052333 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.052338 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.052342 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.052347 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.052351 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.052357 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.063332 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.063396 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.063402 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.063407 LLDP, length 82 [|LLDP] 18:58:47.063411 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 082e 88ba 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.063414 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.063421 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.063426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.063433 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.063439 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.071537 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.071574 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.071579 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.071583 LLDP, length 82 [|LLDP] 18:58:47.071585 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0834 d588 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.071588 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.071593 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.071597 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.071601 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.071606 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.082552 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.082592 LLDP, length 82 [|LLDP] 18:58:47.082595 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 083d 3bee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.082597 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.082602 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.082607 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.082611 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.082616 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.082621 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.082626 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.093567 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.093605 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.093610 LLDP, length 82 [|LLDP] 18:58:47.093612 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0845 a254 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.093615 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.093619 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.093624 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.093628 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.093633 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.093646 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.101802 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.101820 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.101825 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.101829 LLDP, length 82 [|LLDP] 18:58:47.101831 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 084b ef21 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.101833 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.101838 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.101842 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.101845 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.101849 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.112797 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.112828 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.112833 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.112837 LLDP, length 82 [|LLDP] 18:58:47.112839 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0854 5588 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.112841 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.112845 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.112849 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.112852 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.112856 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.121051 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.121069 LLDP, length 82 [|LLDP] 18:58:47.121071 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 085a a255 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.121073 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.121077 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.121081 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.121084 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.121088 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.121092 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.121097 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.132063 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.132082 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.132087 LLDP, length 82 [|LLDP] 18:58:47.132089 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0863 08bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.132091 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.132095 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.132099 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.132102 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.132106 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.132111 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.143074 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.143093 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.143097 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.143102 LLDP, length 82 [|LLDP] 18:58:47.143103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 086b 6f22 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.143106 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.143110 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.143114 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.143117 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.143122 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.151327 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.151344 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.151349 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.151353 LLDP, length 82 [|LLDP] 18:58:47.151355 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0871 bbee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.151357 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.151361 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.151365 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.151368 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.151372 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.162334 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.162349 LLDP, length 82 [|LLDP] 18:58:47.162351 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 087a 2254 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.162353 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.162357 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.162361 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.162363 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.162368 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.162372 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.162377 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.173346 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.173363 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.173367 LLDP, length 82 [|LLDP] 18:58:47.173369 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0882 88bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.173371 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.173375 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.173379 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.173382 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.173386 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.173391 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.181601 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.181617 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.181621 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.181625 LLDP, length 82 [|LLDP] 18:58:47.181627 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0888 d588 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.181629 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.181633 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.181637 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.181639 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.181643 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.192609 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.192625 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.192629 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.192633 LLDP, length 82 [|LLDP] 18:58:47.192635 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0891 3bee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.192637 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.192641 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.192645 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.192648 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.192652 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.200868 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.200883 LLDP, length 82 [|LLDP] 18:58:47.200885 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0897 88bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.200887 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.200891 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.200895 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.200898 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.200902 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.200905 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.200910 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.211878 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.211893 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.211897 LLDP, length 82 [|LLDP] 18:58:47.211898 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 089f ef21 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.211900 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.211904 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.211908 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.211911 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.211915 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.211919 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.222886 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.222902 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.222906 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.222910 LLDP, length 82 [|LLDP] 18:58:47.222911 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08a8 558f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.222914 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.222918 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.222922 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.222924 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.222929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.231143 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.231159 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.231163 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.231167 LLDP, length 82 [|LLDP] 18:58:47.231169 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08ae a254 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.231171 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.231175 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.231180 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.231182 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.231187 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.242154 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.242168 LLDP, length 82 [|LLDP] 18:58:47.242170 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08b7 08bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.242172 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.242176 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.242180 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.242183 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.242187 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.242191 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.242196 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.253164 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.253180 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.253184 LLDP, length 82 [|LLDP] 18:58:47.253186 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08bf 6f21 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.253188 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.253192 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.253196 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.253199 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.253203 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.253208 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.261421 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.261436 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.261440 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.261444 LLDP, length 82 [|LLDP] 18:58:47.261446 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08c5 bbed 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.261448 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.261452 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.261456 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.261459 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.261463 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.272442 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.272456 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.272460 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.272464 LLDP, length 82 [|LLDP] 18:58:47.272465 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08ce 2254 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.272467 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.272472 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.272476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.272478 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.272482 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.283448 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.283462 LLDP, length 82 [|LLDP] 18:58:47.283464 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08d6 88bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.283466 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.283471 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.283475 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.283477 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.283481 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.283485 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.283490 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.291701 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.291718 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.291722 LLDP, length 82 [|LLDP] 18:58:47.291724 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08dc d587 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.291725 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.291730 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.291734 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.291736 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.291740 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.291745 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.302708 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.302724 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.302728 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.302733 LLDP, length 82 [|LLDP] 18:58:47.302734 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08e5 3bed 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.302737 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.302741 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.302745 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.302747 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.302752 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.310965 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.310979 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.310984 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.310988 LLDP, length 82 [|LLDP] 18:58:47.310990 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08eb 88bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.310992 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.310996 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.311000 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.311003 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.311007 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.321987 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.322001 LLDP, length 82 [|LLDP] 18:58:47.322003 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08f3 ef21 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.322005 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.322010 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.322013 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.322016 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.322020 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.322024 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.322029 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.332984 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.333001 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.333006 LLDP, length 82 [|LLDP] 18:58:47.333007 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08fc 5588 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.333009 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.333014 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.333017 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.333020 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.333024 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.333029 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.341244 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.341259 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.341263 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.341267 LLDP, length 82 [|LLDP] 18:58:47.341269 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0902 a25b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.341271 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.341275 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.341278 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.341281 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.341286 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.352253 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.352269 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.352273 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.352277 LLDP, length 82 [|LLDP] 18:58:47.352279 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 090b 08bc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.352281 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.352285 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.352289 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.352291 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.352296 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.363265 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.363281 LLDP, length 82 [|LLDP] 18:58:47.363283 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0913 6f22 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.363285 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.363289 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.363293 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.363296 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.363300 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.363304 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.363308 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.371524 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.371539 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.371543 LLDP, length 82 [|LLDP] 18:58:47.371544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0919 bbef 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.371546 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.371551 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.371555 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.371557 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.371561 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.371565 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.382532 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.382548 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.382552 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.382557 LLDP, length 82 [|LLDP] 18:58:47.382558 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0922 2256 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.382560 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.382564 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.382568 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.382571 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.382575 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.390789 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.390803 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.390808 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.390812 LLDP, length 82 [|LLDP] 18:58:47.390813 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0928 6f23 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.390815 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.390820 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.390824 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.390827 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.390831 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.401798 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.401813 LLDP, length 82 [|LLDP] 18:58:47.401815 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0930 d589 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.401817 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.401821 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.401825 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.401827 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.401832 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.401836 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.401841 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.412809 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.412825 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.412829 LLDP, length 82 [|LLDP] 18:58:47.412830 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0939 3bf0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.412832 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.412836 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.412840 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.412843 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.412847 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.412852 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.421065 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.421079 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.421083 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.421087 LLDP, length 82 [|LLDP] 18:58:47.421089 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 093f 88bc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.421091 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.421095 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.421099 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.421102 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.421107 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.432085 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.432100 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.432104 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.432108 LLDP, length 82 [|LLDP] 18:58:47.432110 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0947 ef23 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.432111 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.432116 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.432120 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.432122 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.432126 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.443088 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.443103 LLDP, length 82 [|LLDP] 18:58:47.443105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0950 5589 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.443107 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.443111 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.443115 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.443118 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.443122 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.443126 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.443130 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.451344 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.451360 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.451364 LLDP, length 82 [|LLDP] 18:58:47.451366 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0956 a256 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.451368 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.451372 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.451376 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.451378 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.451382 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.451386 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.462354 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.462370 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.462375 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.462378 LLDP, length 82 [|LLDP] 18:58:47.462380 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 095f 08bc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.462382 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.462386 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.462390 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.462393 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.462397 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.473366 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.473380 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.473384 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.473388 LLDP, length 82 [|LLDP] 18:58:47.473390 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0967 6f29 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.473392 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.473396 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.473400 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.473403 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.473407 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.481621 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.481636 LLDP, length 82 [|LLDP] 18:58:47.481638 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 096d bbef 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.481640 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.481644 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.481648 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.481651 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.481655 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.481659 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.481663 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.492630 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.492645 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.492649 LLDP, length 82 [|LLDP] 18:58:47.492650 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0976 2256 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.492652 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.492656 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.492660 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.492663 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.492667 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.492672 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.500890 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.500905 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.500909 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.500913 LLDP, length 82 [|LLDP] 18:58:47.500915 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 097c 6f23 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.500917 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.500921 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.500925 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.500928 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.500932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.511900 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.511915 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.511919 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.511923 LLDP, length 82 [|LLDP] 18:58:47.511924 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0984 d58c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.511927 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.511931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.511935 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.511938 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.511942 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.522933 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.522959 LLDP, length 82 [|LLDP] 18:58:47.522961 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 098d 3bef 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.522963 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.522968 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.522972 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.522976 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.522980 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.522984 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.522988 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.531176 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.531193 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.531197 LLDP, length 82 [|LLDP] 18:58:47.531199 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0993 88bc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.531201 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.531206 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.531211 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.531214 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.531217 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.531222 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.542180 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.542199 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.542203 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.542207 LLDP, length 82 [|LLDP] 18:58:47.542209 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 099b ef23 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.542211 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.542216 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.542220 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.542223 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.542227 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.553186 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.553201 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.553205 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.553209 LLDP, length 82 [|LLDP] 18:58:47.553211 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09a4 5589 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.553213 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.553217 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.553221 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.553224 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.553228 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.561443 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.561459 LLDP, length 82 [|LLDP] 18:58:47.561461 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09aa a255 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.561463 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.561467 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.561471 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.561474 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.561478 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.561483 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.561488 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.572456 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.572471 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.572475 LLDP, length 82 [|LLDP] 18:58:47.572477 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09b3 08bc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.572479 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.572483 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.572487 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.572490 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.572494 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.572499 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.583465 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.583481 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.583486 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.583490 LLDP, length 82 [|LLDP] 18:58:47.583492 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09bb 6f22 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.583494 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.583499 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.583503 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.583506 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.583510 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.591726 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.591741 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.591745 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.591749 LLDP, length 82 [|LLDP] 18:58:47.591751 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09c1 bbf5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.591753 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.591757 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.591761 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.591763 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.591768 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.602729 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.602744 LLDP, length 82 [|LLDP] 18:58:47.602745 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09ca 2255 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.602747 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.602751 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.602755 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.602758 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.602763 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.602767 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.602771 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.610990 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.611005 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.611010 LLDP, length 82 [|LLDP] 18:58:47.611011 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09d0 6f22 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.611014 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.611018 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.611022 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.611025 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.611029 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.611034 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.622000 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.622015 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.622019 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.622023 LLDP, length 82 [|LLDP] 18:58:47.622025 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09d8 d589 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.622027 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.622031 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.622035 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.622038 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.622042 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.633008 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.633021 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.633026 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.633029 LLDP, length 82 [|LLDP] 18:58:47.633031 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09e1 3bef 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.633033 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.633037 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.633041 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.633044 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.633048 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.641262 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.641277 LLDP, length 82 [|LLDP] 18:58:47.641278 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09e7 88bc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.641281 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.641285 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.641289 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.641291 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.641296 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.641300 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.641305 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.652274 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.652290 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.652294 LLDP, length 82 [|LLDP] 18:58:47.652296 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09ef ef22 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.652298 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.652303 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.652307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.652309 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.652314 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.652319 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.663289 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.663305 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.663309 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.663314 LLDP, length 82 [|LLDP] 18:58:47.663315 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09f8 5588 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.663317 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.663321 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.663325 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.663327 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.663332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.671543 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.671559 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.671564 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.671568 LLDP, length 82 [|LLDP] 18:58:47.671569 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09fe a256 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.671572 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.671576 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.671580 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.671582 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.671586 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.682556 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.682572 LLDP, length 82 [|LLDP] 18:58:47.682574 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a07 08bc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.682576 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.682580 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.682584 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.682587 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.682591 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.682595 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.682600 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.690813 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.690828 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.690832 LLDP, length 82 [|LLDP] 18:58:47.690833 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a0d 5588 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.690836 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.690840 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.690844 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.690846 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.690850 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.690854 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.701832 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.701852 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.701856 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.701860 LLDP, length 82 [|LLDP] 18:58:47.701862 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a15 bbef 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.701864 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.701868 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.701872 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.701875 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.701879 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.712845 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.712862 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.712866 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.712870 LLDP, length 82 [|LLDP] 18:58:47.712872 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a1e 2255 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.712875 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.712879 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.712883 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.712886 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.712890 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.721090 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.721104 LLDP, length 82 [|LLDP] 18:58:47.721106 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a24 6f22 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.721108 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.721112 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.721116 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.721118 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.721123 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.721127 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.721131 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.732099 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.732114 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.732118 LLDP, length 82 [|LLDP] 18:58:47.732120 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a2c d588 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.732122 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.732126 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.732131 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.732133 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.732138 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.732142 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.743109 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.743123 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.743128 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.743132 LLDP, length 82 [|LLDP] 18:58:47.743133 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a35 3bef 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.743135 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.743140 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.743143 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.743146 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.743150 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.751366 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.751380 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.751384 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.751389 LLDP, length 82 [|LLDP] 18:58:47.751390 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a3b 88bc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.751392 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.751396 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.751400 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.751403 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.751407 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.762377 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.762393 LLDP, length 82 [|LLDP] 18:58:47.762395 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a43 ef25 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.762397 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.762401 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.762405 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.762408 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.762413 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.762417 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.762421 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.773390 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.773410 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.773414 LLDP, length 82 [|LLDP] 18:58:47.773415 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a4c 5589 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.773418 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.773422 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.773426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.773429 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.773433 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.773437 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.781654 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.781671 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.781676 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.781680 LLDP, length 82 [|LLDP] 18:58:47.781681 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a52 a255 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.781683 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.781688 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.781692 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.781695 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.781699 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.792657 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.792673 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.792677 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.792682 LLDP, length 82 [|LLDP] 18:58:47.792684 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a5b 08bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.792686 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.792690 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.792694 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.792697 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.792702 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.800914 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.800929 LLDP, length 82 [|LLDP] 18:58:47.800931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a61 5589 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.800933 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.800937 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.800941 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.800943 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.800947 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.800952 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.800956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.811920 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.811936 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.811941 LLDP, length 82 [|LLDP] 18:58:47.811942 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a69 bbef 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.811945 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.811949 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.811952 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.811955 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.811960 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.811964 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.822931 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.822946 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.822950 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.822954 LLDP, length 82 [|LLDP] 18:58:47.822956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a72 2255 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.822958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.822962 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.822966 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.822969 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.822973 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.831202 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.831218 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.831223 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.831227 LLDP, length 82 [|LLDP] 18:58:47.831228 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a78 6f22 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.831231 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.831235 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.831239 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.831242 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.831246 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.842211 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.842227 LLDP, length 82 [|LLDP] 18:58:47.842228 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a80 d58f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.842230 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.842234 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.842238 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.842241 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.842245 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.842249 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.842253 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.853206 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.853222 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.853227 LLDP, length 82 [|LLDP] 18:58:47.853229 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a89 3bef 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.853231 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.853235 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.853239 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.853242 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.853246 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.853251 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.861465 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.861480 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.861484 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.861488 LLDP, length 82 [|LLDP] 18:58:47.861490 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a8f 88bc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.861492 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.861496 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.861500 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.861503 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.861507 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.872471 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.872484 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.872488 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.872492 LLDP, length 82 [|LLDP] 18:58:47.872494 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a97 ef22 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.872496 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.872501 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.872505 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.872507 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.872512 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.880734 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.880748 LLDP, length 82 [|LLDP] 18:58:47.880750 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a9e 3bee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.880752 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.880757 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.880760 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.880763 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.880768 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.880773 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.880777 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.891745 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.891760 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.891765 LLDP, length 82 [|LLDP] 18:58:47.891766 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0aa6 a255 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.891768 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.891772 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.891776 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.891779 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.891783 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.891787 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.902759 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.902776 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.902781 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.902785 LLDP, length 82 [|LLDP] 18:58:47.902786 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0aaf 08bc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.902788 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.902792 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.902796 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.902799 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.902803 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.911025 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.911043 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.911048 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.911052 LLDP, length 82 [|LLDP] 18:58:47.911054 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ab5 5588 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.911056 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.911060 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.911064 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.911067 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.911071 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.922024 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.922040 LLDP, length 82 [|LLDP] 18:58:47.922042 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0abd bbee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.922044 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.922047 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.922051 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.922055 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.922059 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.922063 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.922067 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.933038 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.933053 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.933057 LLDP, length 82 [|LLDP] 18:58:47.933059 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ac6 2255 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.933061 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.933065 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.933069 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.933072 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.933076 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.933080 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.941287 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.941302 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.941306 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.941310 LLDP, length 82 [|LLDP] 18:58:47.941312 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0acc 6f22 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.941314 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.941318 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.941323 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.941326 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.941330 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.952297 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.952314 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.952318 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.952322 LLDP, length 82 [|LLDP] 18:58:47.952324 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ad4 d588 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.952325 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.952330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.952334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.952337 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.952341 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.963307 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.963322 LLDP, length 82 [|LLDP] 18:58:47.963323 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0add 3bef 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.963325 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.963329 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.963333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.963336 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.963340 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.963345 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.963349 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.971560 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.971576 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.971580 LLDP, length 82 [|LLDP] 18:58:47.971581 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ae3 88bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.971584 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.971588 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.971592 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.971595 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.971599 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.971604 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.982578 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.982594 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.982599 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.982603 LLDP, length 82 [|LLDP] 18:58:47.982605 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0aeb ef21 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.982607 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.982611 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.982615 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.982617 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.982621 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:47.990832 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:47.990848 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.990852 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:47.990857 LLDP, length 82 [|LLDP] 18:58:47.990858 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0af2 3bef 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:47.990860 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:47.990864 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:47.990869 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:47.990871 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:47.990876 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.001842 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.001858 LLDP, length 82 [|LLDP] 18:58:48.001859 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0afa a255 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.001861 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.001865 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.001869 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.001872 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.001876 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.001880 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.001884 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.012854 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.012868 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.012873 LLDP, length 82 [|LLDP] 18:58:48.012874 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b03 08bc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.012876 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.012880 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.012884 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.012887 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.012891 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.012896 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.021107 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.021123 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.021128 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.021132 LLDP, length 82 [|LLDP] 18:58:48.021134 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b09 5588 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.021136 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.021141 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.021145 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.021147 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.021152 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.032124 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.032139 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.032143 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.032147 LLDP, length 82 [|LLDP] 18:58:48.032149 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b11 bbee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.032151 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.032155 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.032159 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.032162 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.032166 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.043130 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.043145 LLDP, length 82 [|LLDP] 18:58:48.043147 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b1a 2255 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.043149 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.043153 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.043157 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.043160 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.043164 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.043168 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.043173 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.051389 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.051403 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.051408 LLDP, length 82 [|LLDP] 18:58:48.051409 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b20 6f21 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.051411 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.051416 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.051420 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.051422 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.051426 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.051431 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.062395 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.062410 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.062415 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.062419 LLDP, length 82 [|LLDP] 18:58:48.062421 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b28 d588 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.062423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.062427 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.062430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.062433 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.062438 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.073407 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.073422 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.073426 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.073430 LLDP, length 82 [|LLDP] 18:58:48.073431 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b31 3bee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.073433 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.073438 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.073441 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.073444 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.073448 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.081665 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.081682 LLDP, length 82 [|LLDP] 18:58:48.081683 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b37 88bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.081685 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.081690 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.081693 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.081696 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.081700 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.081704 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.081709 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.092717 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.092742 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.092746 LLDP, length 82 [|LLDP] 18:58:48.092749 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b3f ef28 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.092751 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.092756 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.092761 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.092764 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.092769 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.092774 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.100995 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.101041 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.101046 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.101050 LLDP, length 82 [|LLDP] 18:58:48.101053 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b46 3bee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.101055 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.101060 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.101065 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.101069 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.101074 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.111991 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.112028 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.112032 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.112037 LLDP, length 82 [|LLDP] 18:58:48.112039 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b4e a254 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.112042 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.112047 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.112051 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.112055 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.112059 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.122968 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.122989 LLDP, length 82 [|LLDP] 18:58:48.122990 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b57 08bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.122992 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.122997 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.123001 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.123004 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.123008 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.123013 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.123017 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.131213 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.131233 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.131238 LLDP, length 82 [|LLDP] 18:58:48.131239 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b5d 5588 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.131241 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.131246 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.131249 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.131253 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.131257 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.131263 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.142226 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.142245 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.142249 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.142253 LLDP, length 82 [|LLDP] 18:58:48.142255 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b65 bbee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.142257 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.142261 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.142265 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.142268 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.142272 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.153245 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.153261 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.153265 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.153269 LLDP, length 82 [|LLDP] 18:58:48.153271 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b6e 2254 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.153274 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.153278 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.153282 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.153285 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.153289 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.161492 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.161510 LLDP, length 82 [|LLDP] 18:58:48.161511 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b74 6f21 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.161514 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.161518 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.161522 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.161525 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.161529 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.161533 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.161538 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.172497 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.172514 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.172519 LLDP, length 82 [|LLDP] 18:58:48.172521 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b7c d588 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.172523 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.172527 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.172531 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.172534 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.172538 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.172543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.180754 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.180772 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.180776 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.180780 LLDP, length 82 [|LLDP] 18:58:48.180782 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b83 2255 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.180784 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.180788 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.180792 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.180795 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.180799 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.191757 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.191778 LLDP, length 82 [|LLDP] 18:58:48.191779 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b8b 88bc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.191782 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.191786 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.202777 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.202796 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.202801 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.202805 LLDP, length 82 [|LLDP] 18:58:48.202807 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b93 ef22 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.202809 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.202814 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.202818 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.202821 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.202825 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.211036 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.211055 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.211059 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.211063 LLDP, length 82 [|LLDP] 18:58:48.211064 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b9a 3bf5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.211067 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.211071 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.211075 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.211077 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.211091 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.222058 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.222081 LLDP, length 82 [|LLDP] 18:58:48.222083 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ba2 a255 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.222085 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.222089 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.222093 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.222097 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.222101 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.222105 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.222109 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.233066 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.233086 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.233090 LLDP, length 82 [|LLDP] 18:58:48.233092 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bab 08bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.233094 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.233098 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.233102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.233106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.233110 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.233114 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.241316 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.241333 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.241338 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.241342 LLDP, length 82 [|LLDP] 18:58:48.241344 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bb1 5588 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.241346 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.241350 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.241355 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.241358 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.241362 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.252320 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.252335 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.252339 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.252343 LLDP, length 82 [|LLDP] 18:58:48.252344 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bb9 bbee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.252346 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.252350 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.252354 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.252356 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.252361 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.263339 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.263355 LLDP, length 82 [|LLDP] 18:58:48.263356 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bc2 2255 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.263358 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.263363 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.263366 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.263369 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.263374 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.263378 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.263382 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.271599 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.271614 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.271619 LLDP, length 82 [|LLDP] 18:58:48.271620 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bc8 6f21 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.271622 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.271627 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.271631 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.271634 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.271638 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.271642 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.282598 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.282613 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.282617 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.282621 LLDP, length 82 [|LLDP] 18:58:48.282623 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bd0 d588 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.282625 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.282629 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.282633 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.282636 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.282640 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.290865 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.290882 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.290886 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.290890 LLDP, length 82 [|LLDP] 18:58:48.290892 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bd7 2256 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.290894 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.290898 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.290902 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.290905 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.290910 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.301869 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.301884 LLDP, length 82 [|LLDP] 18:58:48.301885 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bdf 88bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.301887 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.301891 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.301895 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.301898 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.301902 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.301906 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.301911 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.312876 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.312891 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.312895 LLDP, length 82 [|LLDP] 18:58:48.312897 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0be7 ef21 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.312899 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.312903 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.312907 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.312910 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.312914 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.312918 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.321129 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.321144 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.321148 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.321152 LLDP, length 82 [|LLDP] 18:58:48.321154 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bee 3bef 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.321156 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.321160 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.321164 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.321167 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.321172 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.332147 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.332163 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.332167 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.332171 LLDP, length 82 [|LLDP] 18:58:48.332172 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bf6 a255 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.332175 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.332179 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.332182 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.332185 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.332189 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.343154 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.343170 LLDP, length 82 [|LLDP] 18:58:48.343171 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bff 08c2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.343174 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.343178 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.343182 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.343185 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.343189 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.343193 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.343197 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.351410 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.351426 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.351430 LLDP, length 82 [|LLDP] 18:58:48.351432 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c05 5588 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.351434 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.351438 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.351442 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.351445 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.351449 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.351453 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.362420 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.362437 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.362441 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.362445 LLDP, length 82 [|LLDP] 18:58:48.362447 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c0d bbee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.362449 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.362453 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.362458 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.362460 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.362465 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.373438 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.373454 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.373459 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.373463 LLDP, length 82 [|LLDP] 18:58:48.373465 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c16 2255 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.373467 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.373471 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.373475 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.373478 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.373482 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.381690 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.381705 LLDP, length 82 [|LLDP] 18:58:48.381707 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c1c 6f21 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.381709 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.381713 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.381717 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.381720 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.381724 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.381728 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.381732 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.392696 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.392712 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.392716 LLDP, length 82 [|LLDP] 18:58:48.392718 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c24 d588 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.392720 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.392725 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.392729 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.392731 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.392735 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.392740 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.400951 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.400967 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.400971 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.400975 LLDP, length 82 [|LLDP] 18:58:48.400977 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c2b 2255 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.400979 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.400983 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.400988 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.400990 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.400995 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.411966 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.411981 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.411985 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.411989 LLDP, length 82 [|LLDP] 18:58:48.411990 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c33 88bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.411992 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.411996 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.412000 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.412003 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.412007 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.422975 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.422989 LLDP, length 82 [|LLDP] 18:58:48.422991 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c3b ef22 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.422993 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.422997 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.423001 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.423003 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.423008 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.423012 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.423017 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.431229 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.431245 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.431249 LLDP, length 82 [|LLDP] 18:58:48.431250 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c42 3bee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.431253 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.431257 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.431261 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.431264 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.431268 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.431273 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.442241 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.442257 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.442261 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.442265 LLDP, length 82 [|LLDP] 18:58:48.442266 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c4a a254 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.442269 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.442273 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.442277 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.442279 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.442283 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.453252 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.453269 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.453273 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.453277 LLDP, length 82 [|LLDP] 18:58:48.453279 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c53 08bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.453281 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.453285 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.453289 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.453291 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.453296 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.461509 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.461524 LLDP, length 82 [|LLDP] 18:58:48.461525 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c59 558e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.461527 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.461531 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.461535 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.461538 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.461542 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.461546 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.461550 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.472517 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.472533 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.472537 LLDP, length 82 [|LLDP] 18:58:48.472539 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c61 bbee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.472541 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.472546 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.472550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.472553 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.472557 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.472561 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.480773 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.480788 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.480793 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.480797 LLDP, length 82 [|LLDP] 18:58:48.480798 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c68 08bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.480800 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.480804 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.480808 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.480810 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.480815 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.491794 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.491808 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.491813 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.491817 LLDP, length 82 [|LLDP] 18:58:48.491819 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c70 6f21 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.491821 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.491825 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.491829 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.491832 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.491836 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.502804 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.502820 LLDP, length 82 [|LLDP] 18:58:48.502822 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c78 d588 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.502824 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.502828 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.502832 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.502835 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.502839 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.502843 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.502847 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.511055 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.511070 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.511074 LLDP, length 82 [|LLDP] 18:58:48.511076 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c7f 2254 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.511078 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.511082 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.511086 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.511089 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.511093 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.511098 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.522062 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.522078 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.522082 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.522086 LLDP, length 82 [|LLDP] 18:58:48.522087 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c87 88bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.522089 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.522094 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.522098 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.522100 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.522105 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.533078 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.533098 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.533102 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.533106 LLDP, length 82 [|LLDP] 18:58:48.533108 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c8f ef21 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.533110 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.533114 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.533119 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.533122 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.533126 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.541334 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.541351 LLDP, length 82 [|LLDP] 18:58:48.541353 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c96 3bee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.541355 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.541359 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.541363 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.541366 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.541370 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.541374 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.541378 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.552364 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.552389 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.552394 LLDP, length 82 [|LLDP] 18:58:48.552396 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c9e a255 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.552398 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.552403 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.552407 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.552411 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.552415 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.552420 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.563363 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.563383 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.563388 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.563393 LLDP, length 82 [|LLDP] 18:58:48.563394 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ca7 08bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.563396 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.563401 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.563405 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.563408 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.563413 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.571611 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.571627 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.571631 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.571636 LLDP, length 82 [|LLDP] 18:58:48.571637 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cad 5587 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.571639 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.571644 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.571653 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.571657 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.571661 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.582613 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.582625 LLDP, length 82 [|LLDP] 18:58:48.582627 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cb5 bbee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.582629 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.582633 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.582637 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.582640 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.582644 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.582648 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.582652 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.590858 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.590868 LLDP, length 82 [|LLDP] 18:58:48.590869 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cbc 08bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.590871 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.590875 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.601895 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.601912 LLDP, length 82 [|LLDP] 18:58:48.601913 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cc4 6f21 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.601915 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.601920 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.601924 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.601927 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.601931 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.601935 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.601940 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.612891 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.612904 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.612908 LLDP, length 82 [|LLDP] 18:58:48.612910 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ccc d587 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.612912 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.612916 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.612920 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.612923 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.612927 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.612932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.621147 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.621160 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.621164 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.621168 LLDP, length 82 [|LLDP] 18:58:48.621169 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cd3 2254 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.621172 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.621176 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.621180 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.621182 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.621187 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.632156 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.632167 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.632171 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.632175 LLDP, length 82 [|LLDP] 18:58:48.632177 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cdb 88bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.632179 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.632183 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.632187 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.632189 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.632194 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.643163 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.643174 LLDP, length 82 [|LLDP] 18:58:48.643175 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ce3 ef21 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.643177 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.643181 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.643185 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.643187 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.643191 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.643195 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.643199 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.651424 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.651437 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.651441 LLDP, length 82 [|LLDP] 18:58:48.651443 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cea 3bee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.651445 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.651449 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.651453 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.651455 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.651459 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.651464 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.662435 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.662447 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.662451 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.662455 LLDP, length 82 [|LLDP] 18:58:48.662457 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cf2 a254 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.662458 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.662462 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.662466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.662468 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.662473 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.670695 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.670710 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.670714 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.670719 LLDP, length 82 [|LLDP] 18:58:48.670720 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cf8 ef21 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.670722 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.670727 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.670731 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.670733 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.670738 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.681703 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.681715 LLDP, length 82 [|LLDP] 18:58:48.681717 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d01 5588 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.681719 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.681723 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.681727 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.681729 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.681733 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.681738 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.681743 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.692727 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.692747 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.692752 LLDP, length 82 [|LLDP] 18:58:48.692754 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d09 bbee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.692756 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.692761 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.692764 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.692768 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.692772 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.692777 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.700980 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.700998 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.701002 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.701006 LLDP, length 82 [|LLDP] 18:58:48.701008 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d10 08ba 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.701010 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.701014 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.701018 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.701021 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.701025 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.711986 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.712002 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.712006 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.712010 LLDP, length 82 [|LLDP] 18:58:48.712012 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d18 6f28 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.712014 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.712018 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.712022 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.712025 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.712029 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.722992 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.723007 LLDP, length 82 [|LLDP] 18:58:48.723008 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d20 d588 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.723010 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.723014 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.723018 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.723021 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.723025 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.723029 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.723037 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.731249 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.731268 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.731273 LLDP, length 82 [|LLDP] 18:58:48.731274 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d27 2254 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.731277 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.731281 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.731285 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.731288 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.731292 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.731297 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.742257 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.742275 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.742279 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.742283 LLDP, length 82 [|LLDP] 18:58:48.742285 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d2f 88ba 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.742287 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.742291 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.742295 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.742297 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.742302 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.753266 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.753279 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.753283 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.753287 LLDP, length 82 [|LLDP] 18:58:48.753289 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d37 ef21 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.753291 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.753295 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.753299 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.753302 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.753307 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.761521 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.761534 LLDP, length 82 [|LLDP] 18:58:48.761535 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d3e 3bee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.761537 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.761541 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.761545 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.761547 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.761551 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.761556 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.761560 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.772540 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.772554 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.772558 LLDP, length 82 [|LLDP] 18:58:48.772560 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d46 a255 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.772561 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.772565 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.772569 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.772572 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.772576 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.772581 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.780795 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.780811 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.780815 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.780819 LLDP, length 82 [|LLDP] 18:58:48.780821 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d4c ef22 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.780823 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.780827 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.780831 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.780833 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.780837 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.791803 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.791817 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.791821 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.791825 LLDP, length 82 [|LLDP] 18:58:48.791827 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d55 5589 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.791829 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.791833 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.791837 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.791840 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.791844 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.802817 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.802831 LLDP, length 82 [|LLDP] 18:58:48.802833 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d5d bbef 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.802835 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.802839 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.802843 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.802846 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.802850 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.802855 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.802859 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.811065 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.811076 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.811079 LLDP, length 82 [|LLDP] 18:58:48.811081 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d64 08bc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.811083 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.811087 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.811091 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.811094 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.811098 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.811102 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.822072 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.822082 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.822086 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.822089 LLDP, length 82 [|LLDP] 18:58:48.822091 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d6c 6f23 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.822093 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.822097 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.822101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.822103 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.822107 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.833097 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.833110 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.833114 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.833118 LLDP, length 82 [|LLDP] 18:58:48.833120 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d74 d589 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.833122 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.833126 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.833130 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.833133 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.833137 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.841340 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.841349 LLDP, length 82 [|LLDP] 18:58:48.841350 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d7b 2256 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.841352 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.841356 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.841360 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.841362 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.841366 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.841370 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.841375 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.852349 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.852359 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.852363 LLDP, length 82 [|LLDP] 18:58:48.852364 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d83 88bd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.852366 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.852370 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.852375 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.852377 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.852381 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.852385 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.863367 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.863380 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.863385 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.863389 LLDP, length 82 [|LLDP] 18:58:48.863390 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d8b ef23 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.863392 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.863396 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.863400 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.863403 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.863407 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.871621 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.871630 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.871634 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.871638 LLDP, length 82 [|LLDP] 18:58:48.871640 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d92 3bef 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.871642 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.871645 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.871658 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.871660 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.871665 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.882632 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.882642 LLDP, length 82 [|LLDP] 18:58:48.882643 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d9a a25b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.882645 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.882649 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.882653 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.882655 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.882659 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.882663 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.882667 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.890890 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.890900 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.890904 LLDP, length 82 [|LLDP] 18:58:48.890905 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0da0 ef23 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.890907 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.890912 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.890915 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.890918 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.890922 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.890927 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.901896 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.901906 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.901910 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.901914 LLDP, length 82 [|LLDP] 18:58:48.901915 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0da9 5589 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.901918 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.901922 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.901926 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.901928 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.901933 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.912906 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.912917 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.912921 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.912925 LLDP, length 82 [|LLDP] 18:58:48.912926 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0db1 bbef 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.912928 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.912932 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.912936 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.912939 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.912943 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.921163 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.921173 LLDP, length 82 [|LLDP] 18:58:48.921175 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0db8 08bc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.921177 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.921181 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.921185 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.921187 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.921191 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.921195 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.921199 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.932173 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.932183 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.932187 LLDP, length 82 [|LLDP] 18:58:48.932188 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dc0 6f23 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.932191 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.932195 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.932199 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.932201 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.932205 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.932210 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.943183 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.943193 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.943197 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.943201 LLDP, length 82 [|LLDP] 18:58:48.943202 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dc8 d589 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.943204 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.943208 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.943212 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.943214 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.943219 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.951441 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.951450 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.951454 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.951458 LLDP, length 82 [|LLDP] 18:58:48.951460 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dcf 2257 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.951461 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.951466 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.951470 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.951472 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.951476 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.962451 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.962461 LLDP, length 82 [|LLDP] 18:58:48.962463 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dd7 88c3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.962464 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.962468 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.962472 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.962475 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.962479 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.962483 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.962488 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.970706 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.970716 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.970720 LLDP, length 82 [|LLDP] 18:58:48.970722 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ddd d589 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.970724 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.970728 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.970733 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.970735 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.970739 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.970744 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.981718 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.981728 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.981732 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.981736 LLDP, length 82 [|LLDP] 18:58:48.981738 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0de6 3bf0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.981740 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.981744 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.981748 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.981750 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.981754 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:48.992726 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:48.992736 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.992740 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:48.992744 LLDP, length 82 [|LLDP] 18:58:48.992746 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dee a257 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:48.992748 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:48.992752 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:48.992756 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:48.992758 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:48.992763 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.000986 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.000996 LLDP, length 82 [|LLDP] 18:58:49.000998 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0df4 ef23 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.000999 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.001004 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.001008 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.001011 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.001014 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.001019 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.001023 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.011998 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.012008 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.012012 LLDP, length 82 [|LLDP] 18:58:49.012014 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dfd 5589 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.012015 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.012019 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.012023 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.012026 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.012029 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.012034 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.023006 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.023018 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.023022 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.023026 LLDP, length 82 [|LLDP] 18:58:49.023027 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e05 bbf0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.023029 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.023033 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.023037 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.023039 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.023044 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.031262 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.031271 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.031276 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.031280 LLDP, length 82 [|LLDP] 18:58:49.031281 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e0c 08bd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.031283 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.031287 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.031291 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.031294 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.031298 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.042274 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.042284 LLDP, length 82 [|LLDP] 18:58:49.042285 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e14 6f22 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.042287 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.042291 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.042295 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.042297 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.042301 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.042305 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.042310 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.053282 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.053292 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.053296 LLDP, length 82 [|LLDP] 18:58:49.053297 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e1c d589 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.053299 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.053304 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.053308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.053310 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.053314 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.053319 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.061538 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.061548 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.061552 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.061556 LLDP, length 82 [|LLDP] 18:58:49.061557 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e23 2256 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.061559 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.061563 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.061567 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.061570 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.061574 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.072549 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.072558 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.072562 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.072566 LLDP, length 82 [|LLDP] 18:58:49.072567 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e2b 88bc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.072569 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.072573 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.072577 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.072580 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.072584 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.080806 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.080815 LLDP, length 82 [|LLDP] 18:58:49.080816 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e31 d58f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.080818 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.080822 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.080826 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.080829 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.080833 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.080837 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.080841 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.091817 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.091826 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.091830 LLDP, length 82 [|LLDP] 18:58:49.091831 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e3a 3bef 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.091833 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.091837 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.091841 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.091843 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.091847 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.091851 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.102827 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.102837 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.102841 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.102845 LLDP, length 82 [|LLDP] 18:58:49.102847 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e42 a256 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.102848 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.102853 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.102856 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.102859 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.102864 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.111084 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.111093 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.111097 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.111101 LLDP, length 82 [|LLDP] 18:58:49.111102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e48 ef22 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.111104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.111108 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.111112 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.111115 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.111119 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.122096 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.122108 LLDP, length 82 [|LLDP] 18:58:49.122109 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e51 5589 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.122111 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.122115 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.122119 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.122122 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.122126 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.122130 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.122134 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.133106 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.133116 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.133120 LLDP, length 82 [|LLDP] 18:58:49.133122 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e59 bbf3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.133124 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.133128 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.133132 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.133134 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.133138 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.133143 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.141360 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.141370 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.141374 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.141378 LLDP, length 82 [|LLDP] 18:58:49.141379 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e60 08bc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.141381 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.141385 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.141389 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.141392 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.141396 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.152371 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.152380 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.152384 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.152388 LLDP, length 82 [|LLDP] 18:58:49.152389 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e68 6f23 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.152391 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.152395 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.152399 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.152402 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.152406 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.160629 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.160638 LLDP, length 82 [|LLDP] 18:58:49.160639 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e6e bbf3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.160641 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.160645 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.160649 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.160651 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.160655 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.160659 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.160663 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.171638 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.171655 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.171660 LLDP, length 82 [|LLDP] 18:58:49.171662 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e77 2255 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.171663 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.171668 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.171672 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.171674 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.171678 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.171682 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.182650 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.182660 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.182664 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.182668 LLDP, length 82 [|LLDP] 18:58:49.182669 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e7f 88bc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.182671 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.182675 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.182679 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.182682 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.182686 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.190908 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.190917 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.190921 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.190925 LLDP, length 82 [|LLDP] 18:58:49.190927 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e85 d589 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.190929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.190933 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.190936 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.190939 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.190943 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.201916 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.201926 LLDP, length 82 [|LLDP] 18:58:49.201927 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e8e 3bef 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.201929 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.201933 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.201937 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.201940 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.201944 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.201948 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.201952 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.212944 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.212961 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.212966 LLDP, length 82 [|LLDP] 18:58:49.212968 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e96 a25d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.212970 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.212974 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.212978 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.212981 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.212985 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.212990 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.221196 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.221211 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.221216 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.221220 LLDP, length 82 [|LLDP] 18:58:49.221221 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e9c ef22 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.221223 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.221227 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.221232 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.221234 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.221238 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.232203 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.232216 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.232221 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.232225 LLDP, length 82 [|LLDP] 18:58:49.232227 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ea5 5589 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.232229 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.232233 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.232237 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.232240 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.232244 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.243214 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.243227 LLDP, length 82 [|LLDP] 18:58:49.243229 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ead bbef 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.243231 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.243235 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.243239 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.243241 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.243245 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.243250 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.243254 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.251467 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.251479 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.251484 LLDP, length 82 [|LLDP] 18:58:49.251485 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0eb4 08bc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.251487 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.251491 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.251495 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.251498 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.251505 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.251511 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.262477 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.262494 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.262499 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.262503 LLDP, length 82 [|LLDP] 18:58:49.262505 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ebc 6f23 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.262507 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.262511 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.262515 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.262517 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.262522 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.270735 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.270748 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.270752 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.270756 LLDP, length 82 [|LLDP] 18:58:49.270758 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ec2 bbef 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.270760 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.270764 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.270768 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.270770 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.270775 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.281749 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.281765 LLDP, length 82 [|LLDP] 18:58:49.281767 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ecb 2256 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.281769 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.281773 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.281777 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.281780 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.281784 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.281788 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.281792 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.292757 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.292771 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.292775 LLDP, length 82 [|LLDP] 18:58:49.292777 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ed3 88bc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.292779 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.292783 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.292787 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.292790 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.292794 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.292799 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.301008 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.301020 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.301024 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.301028 LLDP, length 82 [|LLDP] 18:58:49.301029 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ed9 d589 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.301031 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.301036 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.301039 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.301042 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.301046 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.312022 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.312033 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.312037 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.312041 LLDP, length 82 [|LLDP] 18:58:49.312043 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ee2 3bf0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.312045 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.312049 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.312053 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.312056 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.312060 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.323029 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.323039 LLDP, length 82 [|LLDP] 18:58:49.323040 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0eea a255 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.323042 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.323046 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.323050 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.323052 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.323056 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.323060 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.323064 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.331282 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.331292 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.331296 LLDP, length 82 [|LLDP] 18:58:49.331297 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ef0 ef29 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.331299 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.331303 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.331307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.331309 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.331313 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.331318 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.342294 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.342303 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.342307 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.342311 LLDP, length 82 [|LLDP] 18:58:49.342313 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ef9 5589 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.342315 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.342319 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.342322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.342325 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.342329 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.353302 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.353311 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.353315 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.353319 LLDP, length 82 [|LLDP] 18:58:49.353320 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f01 bbef 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.353322 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.353326 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.353330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.353332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.353336 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.361563 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.361572 LLDP, length 82 [|LLDP] 18:58:49.361573 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f08 08bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.361575 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.361579 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.361582 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.361585 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.361589 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.361593 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.361598 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.372570 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.372579 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.372583 LLDP, length 82 [|LLDP] 18:58:49.372584 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f10 6f23 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.372586 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.372590 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.372594 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.372596 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.372600 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.372605 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.380827 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.380836 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.380841 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.380844 LLDP, length 82 [|LLDP] 18:58:49.380846 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f16 bbef 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.380848 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.380852 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.380856 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.380858 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.380863 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.391837 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.391845 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.391850 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.391854 LLDP, length 82 [|LLDP] 18:58:49.391855 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f1f 2255 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.391857 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.391861 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.391865 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.391867 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.391872 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.402848 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.402857 LLDP, length 82 [|LLDP] 18:58:49.402858 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f27 88bc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.402860 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.402864 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.402868 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.402871 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.402875 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.402879 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.402883 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.411104 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.411113 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.411117 LLDP, length 82 [|LLDP] 18:58:49.411118 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f2d d58b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.411120 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.411124 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.411128 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.411130 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.411134 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.411139 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.422115 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.422124 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.422128 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.422132 LLDP, length 82 [|LLDP] 18:58:49.422133 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f36 3bef 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.422135 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.422139 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.422143 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.422145 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.422150 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.433124 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.433134 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.433138 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.433142 LLDP, length 82 [|LLDP] 18:58:49.433143 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f3e a255 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.433145 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.433149 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.433153 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.433156 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.433160 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.441382 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.441390 LLDP, length 82 [|LLDP] 18:58:49.441391 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f44 ef22 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.441393 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.441397 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.441401 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.441404 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.441408 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.441412 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.441416 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.452391 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.452400 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.452404 LLDP, length 82 [|LLDP] 18:58:49.452406 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f4d 5589 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.452407 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.452411 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.452415 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.452418 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.452422 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.452426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.460649 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.460657 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.460661 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.460666 LLDP, length 82 [|LLDP] 18:58:49.460667 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f53 a255 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.460670 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.460674 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.460677 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.460680 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.460683 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.471667 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.471676 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.471680 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.471684 LLDP, length 82 [|LLDP] 18:58:49.471685 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f5c 08bc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.471687 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.471692 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.471696 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.471698 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.471703 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.482668 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.482678 LLDP, length 82 [|LLDP] 18:58:49.482680 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f64 6f22 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.482682 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.482686 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.482690 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.482692 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.482696 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.482700 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.482705 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.490927 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.490935 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.490939 LLDP, length 82 [|LLDP] 18:58:49.490940 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f6a bbef 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.490942 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.490946 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.490950 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.490953 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.490957 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.490961 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.501937 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.501946 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.501950 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.501954 LLDP, length 82 [|LLDP] 18:58:49.501956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f73 2256 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.501958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.501962 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.501965 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.501968 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.501972 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.512951 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.512960 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.512964 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.512968 LLDP, length 82 [|LLDP] 18:58:49.512970 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f7b 88bc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.512971 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.512975 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.512979 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.512981 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.512985 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.521204 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.521213 LLDP, length 82 [|LLDP] 18:58:49.521214 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f81 d588 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.521216 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.521220 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.521225 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.521227 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.521231 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.521235 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.521239 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.532214 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.532223 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.532227 LLDP, length 82 [|LLDP] 18:58:49.532229 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f8a 3bef 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.532231 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.532235 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.532239 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.532241 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.532245 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.532249 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.543228 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.543238 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.543242 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.543246 LLDP, length 82 [|LLDP] 18:58:49.543247 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f92 a255 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.543249 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.543253 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.543257 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.543259 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.543264 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.551481 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.551490 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.551494 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.551498 LLDP, length 82 [|LLDP] 18:58:49.551500 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f98 ef22 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.551502 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.551506 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.551510 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.551513 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.551517 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.562513 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.562531 LLDP, length 82 [|LLDP] 18:58:49.562533 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fa1 5588 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.562535 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.562539 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.562543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.562546 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.562550 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.562554 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.562559 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.570786 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.570809 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.570814 LLDP, length 82 [|LLDP] 18:58:49.570815 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fa7 a255 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.570818 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.570822 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.570826 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.570830 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.570834 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.570839 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.581780 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.581795 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.581799 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.581804 LLDP, length 82 [|LLDP] 18:58:49.581805 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fb0 08c3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.581807 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.581812 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.581815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.581818 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.581823 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.592779 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.592792 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.592796 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.592800 LLDP, length 82 [|LLDP] 18:58:49.592802 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fb8 6f22 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.592804 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.592808 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.592812 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.592814 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.592818 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.601036 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.601047 LLDP, length 82 [|LLDP] 18:58:49.601049 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fbe bbef 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.601051 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.601055 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.601058 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.601061 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.601065 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.601070 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.601075 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.612044 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.612056 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.612060 LLDP, length 82 [|LLDP] 18:58:49.612062 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fc7 2255 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.612064 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.612068 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.612072 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.612074 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.612078 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.612090 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.623054 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.623066 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.623070 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.623074 LLDP, length 82 [|LLDP] 18:58:49.623075 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fcf 88bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.623077 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.623081 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.623085 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.623088 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.623092 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.631311 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.631323 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.631327 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.631331 LLDP, length 82 [|LLDP] 18:58:49.631333 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fd5 d589 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.631335 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.631339 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.631343 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.631345 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.631350 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.642322 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.642334 LLDP, length 82 [|LLDP] 18:58:49.642336 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fde 3bef 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.642338 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.642342 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.642346 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.642348 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.642352 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.642356 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.642361 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.653328 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.653339 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.653343 LLDP, length 82 [|LLDP] 18:58:49.653344 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fe6 a255 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.653346 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.653350 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.653354 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.653356 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.653360 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.653365 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.661589 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.661600 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.661604 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.661608 LLDP, length 82 [|LLDP] 18:58:49.661609 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fec ef24 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.661611 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.661615 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.661619 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.661622 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.661626 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.672597 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.672607 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.672611 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.672616 LLDP, length 82 [|LLDP] 18:58:49.672617 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ff5 5588 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.672619 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.672624 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.672628 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.672631 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.672635 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.680853 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.680864 LLDP, length 82 [|LLDP] 18:58:49.680865 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ffb a255 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.680867 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.680871 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.680875 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.680877 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.680881 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.680886 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.680890 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.691867 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.691881 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.691885 LLDP, length 82 [|LLDP] 18:58:49.691886 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1004 08bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.691888 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.691891 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.691895 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.691898 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.691902 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.691906 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.702875 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.702887 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.702891 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.702895 LLDP, length 82 [|LLDP] 18:58:49.702897 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 100c 6f22 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.702899 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.702903 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.702907 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.702910 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.702914 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.711132 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.711143 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.711147 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.711151 LLDP, length 82 [|LLDP] 18:58:49.711153 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1012 bbee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.711154 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.711159 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.711163 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.711165 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.711169 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.722140 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.722151 LLDP, length 82 [|LLDP] 18:58:49.722153 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 101b 2255 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.722155 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.722159 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.722162 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.722165 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.722169 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.722173 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.722177 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.733153 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.733164 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.733168 LLDP, length 82 [|LLDP] 18:58:49.733169 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1023 88bc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.733171 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.733175 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.733179 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.733182 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.733186 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.733190 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.741409 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.741422 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.741427 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.741431 LLDP, length 82 [|LLDP] 18:58:49.741433 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1029 d588 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.741435 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.741439 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.741442 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.741445 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.741449 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.752418 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.752428 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.752433 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.752436 LLDP, length 82 [|LLDP] 18:58:49.752438 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1032 3bee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.752440 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.752444 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.752448 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.752451 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.752455 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.760676 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.760687 LLDP, length 82 [|LLDP] 18:58:49.760688 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1038 88bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.760690 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.760694 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.760698 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.760701 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.760705 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.760709 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.760714 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.771692 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.771703 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.771707 LLDP, length 82 [|LLDP] 18:58:49.771708 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1040 ef22 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.771710 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.771714 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.771718 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.771721 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.771725 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.771729 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.782711 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.782727 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.782731 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.782736 LLDP, length 82 [|LLDP] 18:58:49.782737 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1049 5588 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.782740 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.782744 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.782748 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.782751 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.782755 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.790959 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.790974 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.790978 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.790982 LLDP, length 82 [|LLDP] 18:58:49.790984 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 104f a255 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.790986 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.790990 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.790994 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.790996 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.791001 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.801966 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.801977 LLDP, length 82 [|LLDP] 18:58:49.801978 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1058 08bc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.801980 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.801984 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.801988 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.801990 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.801994 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.801998 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.802003 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.812972 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.812983 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.812987 LLDP, length 82 [|LLDP] 18:58:49.812988 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1060 6f21 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.812990 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.812994 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.812998 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.813000 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.813004 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.813009 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.821230 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.821242 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.821246 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.821250 LLDP, length 82 [|LLDP] 18:58:49.821252 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1066 bbee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.821254 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.821258 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.821262 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.821264 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.821268 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.832259 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.832273 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.832277 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.832281 LLDP, length 82 [|LLDP] 18:58:49.832283 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 106f 225b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.832285 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.832290 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.832294 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.832297 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.832301 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.843257 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.843270 LLDP, length 82 [|LLDP] 18:58:49.843272 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1077 88bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.843274 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.843278 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.843282 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.843284 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.843288 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.843292 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.843297 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.851509 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.851522 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.851526 LLDP, length 82 [|LLDP] 18:58:49.851527 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 107d d588 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.851529 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.851533 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.851537 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.851539 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.851543 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.851548 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.862520 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.862531 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.862535 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.862539 LLDP, length 82 [|LLDP] 18:58:49.862541 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1086 3bee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.862543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.862547 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.862551 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.862553 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.862558 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.870775 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.870787 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.870791 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.870795 LLDP, length 82 [|LLDP] 18:58:49.870796 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 108c 88bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.870798 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.870802 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.870806 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.870809 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.870814 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.881785 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.881796 LLDP, length 82 [|LLDP] 18:58:49.881797 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1094 ef22 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.881799 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.881803 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.881807 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.881810 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.881813 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.881818 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.881823 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.892797 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.892809 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.892813 LLDP, length 82 [|LLDP] 18:58:49.892815 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 109d 5588 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.892816 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.892820 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.892825 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.892827 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.892831 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.892835 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.901054 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.901066 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.901070 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.901074 LLDP, length 82 [|LLDP] 18:58:49.901075 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10a3 a254 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.901077 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.901082 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.901086 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.901088 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.901092 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.912064 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.912075 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.912079 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.912083 LLDP, length 82 [|LLDP] 18:58:49.912084 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10ac 08bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.912086 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.912091 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.912095 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.912097 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.912102 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.923074 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.923087 LLDP, length 82 [|LLDP] 18:58:49.923088 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10b4 6f22 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.923090 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.923094 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.923098 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.923101 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.923105 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.923109 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.923113 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.931331 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.931343 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.931347 LLDP, length 82 [|LLDP] 18:58:49.931348 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10ba bbee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.931350 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.931354 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.931358 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.931361 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.931365 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.931369 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.942341 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.942354 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.942358 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.942362 LLDP, length 82 [|LLDP] 18:58:49.942363 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10c3 2254 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.942365 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.942369 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.942373 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.942375 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.942379 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.950597 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.950609 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.950613 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.950617 LLDP, length 82 [|LLDP] 18:58:49.950619 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10c9 6f21 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.950620 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.950624 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.950628 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.950631 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.950635 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.961609 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.961621 LLDP, length 82 [|LLDP] 18:58:49.961622 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10d1 d588 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.961624 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.961628 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.961632 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.961634 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.961638 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.961642 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.961647 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.972615 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.972626 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.972630 LLDP, length 82 [|LLDP] 18:58:49.972632 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10da 3bee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.972634 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.972638 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.972642 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.972645 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.972648 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.972652 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.980875 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.980886 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.980891 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.980895 LLDP, length 82 [|LLDP] 18:58:49.980896 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10e0 88bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.980898 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.980902 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.980906 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.980909 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.980913 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:49.991885 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:49.991897 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.991901 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:49.991905 LLDP, length 82 [|LLDP] 18:58:49.991906 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10e8 ef21 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:49.991909 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:49.991913 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:49.991917 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:49.991919 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:49.991924 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:50.002898 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:50.002909 LLDP, length 82 [|LLDP] 18:58:50.002911 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10f1 5588 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:50.002913 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:50.002917 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:50.002921 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:50.002924 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.002928 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.002932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:50.002936 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:50.011150 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:50.011162 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.011166 LLDP, length 82 [|LLDP] 18:58:50.011167 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10f7 a255 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:50.011169 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:50.011174 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:50.011178 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:50.011180 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:50.011184 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.011189 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:50.022163 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:50.022174 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.022178 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.022182 LLDP, length 82 [|LLDP] 18:58:50.022184 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1100 08bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:50.022186 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:50.022190 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:50.022193 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:50.022196 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:50.022200 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:50.033174 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:50.033187 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.033191 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.033195 LLDP, length 82 [|LLDP] 18:58:50.033196 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1108 6f21 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:50.033198 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:50.033202 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:50.033206 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:50.033208 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:50.033213 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:50.041430 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:50.041442 LLDP, length 82 [|LLDP] 18:58:50.041443 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 110e bbee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:50.041445 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:50.041449 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:50.041453 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:50.041456 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.041460 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.041463 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:50.041468 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:50.052443 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:50.052455 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.052460 LLDP, length 82 [|LLDP] 18:58:50.052461 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1117 2255 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:50.052463 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:50.052467 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:50.052471 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:50.052473 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:50.052477 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.052481 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:50.060699 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:50.060711 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.060716 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.060720 LLDP, length 82 [|LLDP] 18:58:50.060721 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 111d 6f21 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:50.060723 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:50.060728 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:50.060732 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:50.060734 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:50.060739 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:50.071708 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:50.071720 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.071724 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.071728 LLDP, length 82 [|LLDP] 18:58:50.071730 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1125 d587 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:50.071731 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:50.071735 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:50.071739 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:50.071742 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:50.071746 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:50.082718 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:50.082729 LLDP, length 82 [|LLDP] 18:58:50.082731 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 112e 3bf4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:50.082733 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:50.082737 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:50.082740 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:50.082743 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.082747 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.082752 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:50.082756 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:50.090975 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:50.090987 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.090991 LLDP, length 82 [|LLDP] 18:58:50.090992 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1134 88bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:50.090994 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:50.090999 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:50.091003 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:50.091006 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:50.091009 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.091014 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:50.101983 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:50.101995 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.101999 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.102003 LLDP, length 82 [|LLDP] 18:58:50.102004 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 113c ef21 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:50.102006 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:50.102010 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:50.102014 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:50.102016 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:50.102021 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:50.112996 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:50.113007 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.113011 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.113015 LLDP, length 82 [|LLDP] 18:58:50.113017 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1145 5588 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:50.113019 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:50.113023 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:50.113026 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:50.113029 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:50.113033 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:50.121252 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:50.121263 LLDP, length 82 [|LLDP] 18:58:50.121264 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 114b a254 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:50.121266 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:50.121271 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:50.121275 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:50.121277 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.121281 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.121285 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:50.121289 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:50.132264 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:50.132276 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.132280 LLDP, length 82 [|LLDP] 18:58:50.132282 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1154 08ba 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:50.132283 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:50.132287 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:50.132291 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:50.132294 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:50.132297 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.132302 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:50.143273 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:50.143287 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.143291 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.143295 LLDP, length 82 [|LLDP] 18:58:50.143296 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 115c 6f21 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:50.143298 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:50.143302 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:50.143306 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:50.143309 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:50.143313 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:50.151532 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:50.151544 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.151548 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.151552 LLDP, length 82 [|LLDP] 18:58:50.151554 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1162 bbee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:50.151556 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:50.151560 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:50.151564 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:50.151567 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:50.151571 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:50.162541 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:50.162554 LLDP, length 82 [|LLDP] 18:58:50.162555 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 116b 2254 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:50.162557 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:50.162561 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:50.162565 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:50.162568 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.162572 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.162577 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:50.162581 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:50.170798 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:50.170809 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.170813 LLDP, length 82 [|LLDP] 18:58:50.170814 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1171 6f21 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:50.170817 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:50.170821 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:50.170825 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:50.170827 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:50.170831 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.170836 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:50.181807 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:50.181818 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.181822 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.181826 LLDP, length 82 [|LLDP] 18:58:50.181827 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1179 d587 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:50.181829 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:50.181833 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:50.181838 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:50.181840 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:50.181845 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:50.192817 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:50.192829 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.192833 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.192837 LLDP, length 82 [|LLDP] 18:58:50.192838 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1182 3bee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:50.192840 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:50.192844 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:50.192848 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:50.192850 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:50.192855 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:50.201074 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:50.201084 LLDP, length 82 [|LLDP] 18:58:50.201086 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1188 88ba 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:50.201087 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:50.201092 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:50.201096 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:50.201098 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.201102 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.201106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:50.201111 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:50.212088 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:50.212100 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.212104 LLDP, length 82 [|LLDP] 18:58:50.212106 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1190 ef21 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:50.212108 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:50.212112 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:50.212116 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:50.212118 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:50.212122 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.212127 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:50.223095 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:50.223107 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.223111 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.223115 LLDP, length 82 [|LLDP] 18:58:50.223117 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1199 5587 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:50.223118 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:50.223123 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:50.223127 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:50.223129 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:50.223134 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:50.231350 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:50.231361 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.231365 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.231369 LLDP, length 82 [|LLDP] 18:58:50.231370 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 119f a254 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:50.231373 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:50.231377 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:50.231381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:50.231383 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:50.231387 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:50.242361 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:50.242373 LLDP, length 82 [|LLDP] 18:58:50.242375 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11a8 08bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:50.242377 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:50.242380 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:50.242384 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:50.242387 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.242391 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.242395 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:50.242399 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:50.250620 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:50.250632 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.250636 LLDP, length 82 [|LLDP] 18:58:50.250638 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11ae 5587 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:50.250639 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:50.250643 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:50.250647 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:50.250650 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:50.250654 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.250659 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:50.261633 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:50.261646 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.261650 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.261654 LLDP, length 82 [|LLDP] 18:58:50.261655 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11b6 bbed 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:50.261657 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:50.261661 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:50.261665 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:50.261668 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:50.261671 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:50.272642 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:50.272653 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.272657 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.272661 LLDP, length 82 [|LLDP] 18:58:50.272662 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11bf 2254 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:50.272664 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:50.272668 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:50.272672 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:50.272675 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:50.272679 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:50.280920 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:50.280937 LLDP, length 82 [|LLDP] 18:58:50.280938 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11c5 6f27 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:50.280940 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:50.280945 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:50.280949 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:50.280952 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.280956 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.280960 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:50.280964 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:50.291918 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:50.291935 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.291940 LLDP, length 82 [|LLDP] 18:58:50.291941 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11cd d587 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:50.291943 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:50.291947 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:50.291951 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:50.291954 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:50.291958 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.291963 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:50.302931 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:50.302950 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.302954 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.302958 LLDP, length 82 [|LLDP] 18:58:50.302959 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11d6 3bee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:50.302962 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:50.302966 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:50.302970 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:50.302973 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:50.302978 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:50.311187 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:50.311203 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.311207 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.311211 LLDP, length 82 [|LLDP] 18:58:50.311213 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11dc 88bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:50.311215 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:50.311219 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:50.311223 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:50.311226 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:50.311231 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:50.322192 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:50.322209 LLDP, length 82 [|LLDP] 18:58:50.322211 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11e4 ef21 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:50.322213 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:50.322218 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:50.322222 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:50.322225 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.322229 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.322233 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:50.322238 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:50.333205 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:50.333221 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.333225 LLDP, length 82 [|LLDP] 18:58:50.333226 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11ed 558e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:50.333228 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:50.333232 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:50.333236 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:50.333239 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:50.333244 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.333248 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:50.341464 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:50.341480 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.341485 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.341489 LLDP, length 82 [|LLDP] 18:58:50.341490 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11f3 a255 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:50.341499 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:50.341504 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:50.341508 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:50.341511 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:50.341516 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:50.352467 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:50.352481 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.352485 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.352489 LLDP, length 82 [|LLDP] 18:58:50.352490 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11fc 08bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:50.352492 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:50.352496 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:50.352500 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:50.352503 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:50.352507 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:50.360729 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:50.360748 LLDP, length 82 [|LLDP] 18:58:50.360749 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1202 5587 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:50.360752 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:50.360756 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:50.360760 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:50.360763 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.360767 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.360771 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:50.360776 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:50.371733 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:50.371747 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.371759 LLDP, length 82 [|LLDP] 18:58:50.371760 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 120a bbee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:50.371762 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:50.371766 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:50.371770 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:50.371773 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:50.371777 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.371781 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:50.382740 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:50.382753 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.382758 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.382762 LLDP, length 82 [|LLDP] 18:58:50.382763 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1213 2255 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:50.382766 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:50.382770 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:50.382774 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:50.382777 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:50.382781 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:50.390993 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:50.391003 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.391007 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.391011 LLDP, length 82 [|LLDP] 18:58:50.391013 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1219 6f21 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:50.391015 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:50.391019 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:50.391023 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:50.391026 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:50.391030 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:50.402004 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:50.402014 LLDP, length 82 [|LLDP] 18:58:50.402016 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1221 d588 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:50.402018 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:50.402022 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:50.402026 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:50.402028 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.402032 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.402037 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:50.402041 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:50.413016 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:50.413026 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.413030 LLDP, length 82 [|LLDP] 18:58:50.413031 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 122a 3bee 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:50.413033 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:50.413037 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:50.413041 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:50.413044 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:50.413048 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.413052 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:50.421271 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:50.421282 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.421286 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.421290 LLDP, length 82 [|LLDP] 18:58:50.421292 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1230 88bb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:50.421294 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:50.421298 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:50.421302 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:50.421304 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:50.421309 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:50.432282 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:50.432291 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.432295 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.432299 LLDP, length 82 [|LLDP] 18:58:50.432300 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1238 ef22 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:50.432302 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:50.432306 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:50.432310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:50.432313 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:50.432317 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:50.440537 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:50.440546 LLDP, length 82 [|LLDP] 18:58:50.440548 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 123f 3bef 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:50.440550 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:50.440554 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:50.440558 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:50.440561 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.440565 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.440569 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:50.440573 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:50.451549 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:50.451559 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.451563 LLDP, length 82 [|LLDP] 18:58:50.451564 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1247 a25c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:50.451566 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:50.451570 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:50.451574 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:50.451577 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:50.451581 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.451585 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:50.462558 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:50.462568 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.462572 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.462576 LLDP, length 82 [|LLDP] 18:58:50.462577 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1250 08bc 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:50.462580 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:50.462584 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:50.462588 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:50.462590 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:50.462594 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:50.470813 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:50.470824 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.470828 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.470832 LLDP, length 82 [|LLDP] 18:58:50.470834 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1256 558a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:50.470836 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:50.470840 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:50.470844 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:50.470846 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:50.470851 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:50.481827 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:50.481837 LLDP, length 82 [|LLDP] 18:58:50.481839 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 125e bbf0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:50.481841 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:50.481844 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:50.481848 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:50.481851 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.481855 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.481859 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:50.481863 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:50.492835 IP 1.1.1.2.12184 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 18:58:50.492845 IP 1.1.1.2.33793 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.492849 LLDP, length 82 [|LLDP] 18:58:50.492850 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1267 2256 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 18:58:50.492852 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 18:58:50.492856 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 18:58:50.492860 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 18:58:50.492862 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 18:58:50.492866 IP 192.168.1.1.31758 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 18:58:50.492871 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 18:58:50.620222 LLDP, length 230: dentlab-infra2 tcpdump: verbose output suppressed, use -v or -vv for full protocol decode listening on swp33, link-type EN10MB (Ethernet), capture size 262144 bytes 5961 packets captured 5961 packets received by filter 0 packets dropped by kernel 597 packets dropped by interface -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_bum_traffic_bridge_without_rif from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_bum_traffic_bridge.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=43, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=11] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=43, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=12] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 18:58:59 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=43, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 INFO asyncssh:logging.py:92 [conn=43, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=14] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 INFO asyncssh:logging.py:92 [conn=43, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=43, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=43, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=16] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=43, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"b2:b2:ed:f9:e0:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"f6:33:41:29:6d:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":96,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=43, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=43, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=18] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=43, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=43, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=19] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=43, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=20] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 18:58:59 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=43, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=21] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=43, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=22] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 18:58:59 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=43, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=23] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=43, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=24] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=43, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=24] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":96,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=43, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=43, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=25] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=43, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=43, chan=26] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=43, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=43, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=43, chan=26] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/bridging/test_bridging_bum_traffic_port.py::test_bridging_bum_traffic_port_with_rif | 268.73 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_bum_traffic_port_with_rif">Starting testcase:test_bridging_bum_traffic_port_with_rif from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_bum_traffic_port.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-2521' coro=<test_bridging_bum_traffic_port_with_rif() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_bum_traffic_port.py:49> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=43, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=44] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=44] Local address: 172.17.0.3, port 48836 INFO asyncssh:logging.py:92 [conn=44] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=44] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=44] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=44, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=44, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 18:59:00 UTC 2023 INFO asyncssh:logging.py:92 [conn=44, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=44, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip address add 100.1.1.253/24 dev swp33 && ip address add 101.1.1.253/24 dev swp34 INFO asyncssh:logging.py:92 [conn=44, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=2] Command: ip address add 100.1.1.253/24 dev swp33 && ip address add 101.1.1.253/24 dev swp34 INFO asyncssh:logging.py:92 [conn=44, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=44, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=44, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=44, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=4] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=44, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=44, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=44, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip -j link show swp33 INFO asyncssh:logging.py:92 [conn=44, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=6] Command: ip -j link show swp33 INFO asyncssh:logging.py:92 [conn=44, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=6] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:2:7' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Bridged_UnknownL2UC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for BridgedLLDP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for LACPDU INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4ToMe INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ARP_Request_BC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ARP_Reply INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_Broadcast INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPV4_SSH INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPV4_Telnet INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Host_to_Host_IPv4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_ICMP_Request INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_DCHP_BC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_Reserved_MC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_All_Systems_on_this_Subnet INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_All_Routers_on_this_Subnet INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_OSPFIGP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_RIP2_Routers INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_EIGRP_Routers INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_DHCP_Server/Relay_Agent INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_VRRP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_IGMP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPV4_BGP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [DENT infrastructure 2] Starting timeout --preserve-status 15 tcpdump -i swp33 -n on infra2... INFO asyncssh:logging.py:92 [conn=44, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=44, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=7] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S timeout --preserve-status 15 tcpdump -i swp33 -n INFO asyncssh:logging.py:92 [conn=44, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=8] Command: echo onl | sudo -S timeout --preserve-status 15 tcpdump -i swp33 -n INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f7599870>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI Bridged_UnknownL2UC SIP-DIP N/A Tx 599 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI BridgedLLDP SIP-DIP N/A Tx 599 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI LACPDU SIP-DIP N/A Tx 599 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPv4ToMe SIP-DIP N/A Tx 599 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI ARP_Request_BC SIP-DIP N/A Tx 599 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI ARP_Reply SIP-DIP N/A Tx 599 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPv4_Broadcast SIP-DIP N/A Tx 599 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPV4_SSH SIP-DIP N/A Tx 599 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPV4_Telnet SIP-DIP N/A Tx 599 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI Host_to_Host_IPv4 SIP-DIP N/A Tx 599 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPv4_ICMP_Request SIP-DIP N/A Tx 599 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPv4_DCHP_BC SIP-DIP N/A Tx 599 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPv4_Reserved_MC SIP-DIP N/A Tx 599 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPv4_All_Systems_on_this_Subnet SIP-DIP N/A Tx 599 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPv4_All_Routers_on_this_Subnet SIP-DIP N/A Tx 599 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPv4_OSPFIGP SIP-DIP N/A Tx 599 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPv4_RIP2_Routers SIP-DIP N/A Tx 599 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPv4_EIGRP_Routers SIP-DIP N/A Tx 599 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPv4_DHCP_Server/Relay_Agent SIP-DIP N/A Tx 599 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPv4_VRRP SIP-DIP N/A Tx 599 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPv4_IGMP SIP-DIP N/A Tx 599 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPV4_BGP SIP-DIP N/A Tx 599 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=44, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=8] Channel closed DEBUG infra2:Logger.py:156 19:03:12.603698 IP6 fe80::1abe:92ff:fe13:64a5 > ff02::2: ICMP6, router solicitation, length 16 19:03:13.289558 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.289561 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.289562 LLDP, length 82 [|LLDP] 19:03:13.289655 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.289656 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0099 3247 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.289658 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.289660 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.289661 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.289662 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.289663 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.289664 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.289666 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.289731 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.289733 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.289738 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.297764 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.297766 LLDP, length 82 [|LLDP] 19:03:13.297788 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.297789 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 009f 7f13 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.297790 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.297791 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.297793 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.297828 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.297830 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.297832 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.297834 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.297835 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.297836 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.297837 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.297839 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.308769 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.308771 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.308772 LLDP, length 82 [|LLDP] 19:03:13.308810 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.308811 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00a7 e57a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.308813 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.308814 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.308815 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.308816 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.308817 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.308818 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.308845 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.308847 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.308849 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.308850 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.317023 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.317025 LLDP, length 82 [|LLDP] 19:03:13.317051 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.317052 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00ae 324d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.317054 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.317055 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.317056 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.317057 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.317058 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.317060 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.317061 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.317103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.317104 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.317106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.317108 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.328030 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.328032 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.328033 LLDP, length 82 [|LLDP] 19:03:13.328075 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.328076 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00b6 98ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.328078 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.328079 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.328080 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.328081 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.328106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.328108 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.328110 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.328111 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.328112 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.328114 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.339046 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.339048 LLDP, length 82 [|LLDP] 19:03:13.339073 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.339074 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00be ff13 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.339075 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.339076 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.339077 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.339078 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.339079 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.339080 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.339082 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.339121 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.339123 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.339125 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.339127 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.347312 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.347314 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.347315 LLDP, length 82 [|LLDP] 19:03:13.347366 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.347367 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00c5 4be0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.347369 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.347370 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.347371 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.347372 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.347373 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.347374 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.347376 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.347403 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.347404 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.347407 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.358311 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.358313 LLDP, length 82 [|LLDP] 19:03:13.358341 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.358342 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00cd b246 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.358343 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.358344 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.358345 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.358347 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.358348 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.358366 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.358367 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.358369 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.358371 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.358372 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.358373 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.369325 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.369327 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.369328 LLDP, length 82 [|LLDP] 19:03:13.369365 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.369366 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00d6 18ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.369368 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.369369 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.369370 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.369371 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.369372 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.369373 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.369375 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.369400 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.369401 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.369404 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.377586 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.377587 LLDP, length 82 [|LLDP] 19:03:13.377606 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.377607 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00dc 6579 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.377608 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.377610 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.377611 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.377627 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.377628 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.377631 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.377632 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.377633 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.377634 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.377635 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.377637 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.388615 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.388616 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.388618 LLDP, length 82 [|LLDP] 19:03:13.388662 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.388663 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00e4 cbe0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.388664 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.388666 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.388667 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.388668 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.388669 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.388670 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.388687 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.388688 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.388690 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.388692 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.396852 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.396853 LLDP, length 82 [|LLDP] 19:03:13.396880 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.396881 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00eb 18af 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.396882 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.396883 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.396884 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.396886 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.396887 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.396888 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.396890 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.396924 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.396926 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.396928 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.396930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.407854 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.407856 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.407864 LLDP, length 82 [|LLDP] 19:03:13.407900 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.407901 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00f3 7f14 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.407903 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.407904 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.407905 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.407906 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.407921 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.407923 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.407925 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.407926 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.407928 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.407929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.418864 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.418866 LLDP, length 82 [|LLDP] 19:03:13.418893 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.418893 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00fb e57a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.418895 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.418896 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.418897 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.418898 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.418900 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.418901 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.418902 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.418935 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.418936 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.418939 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.418941 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.430136 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.430138 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.430139 LLDP, length 82 [|LLDP] 19:03:13.430177 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.430178 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0102 3248 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.430179 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.430181 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.430182 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.430183 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.430184 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.430185 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.430186 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.430212 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.430213 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.430216 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.438132 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.438134 LLDP, length 82 [|LLDP] 19:03:13.438154 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.438155 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 010a 98ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.438157 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.438158 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.438159 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.438160 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.438161 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.438178 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.438179 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.438181 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.438182 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.438184 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.438185 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.449141 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.449143 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.449144 LLDP, length 82 [|LLDP] 19:03:13.449187 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.449189 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0112 ff1b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.449190 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.449191 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.449193 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.449194 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.449195 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.449196 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.449197 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.449222 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.449223 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.449226 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.457407 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.457408 LLDP, length 82 [|LLDP] 19:03:13.457433 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.457434 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0119 4be0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.457435 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.457436 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.457438 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.457453 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.457454 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.457457 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.457458 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.457459 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.457460 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.457461 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.457463 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.468410 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.468412 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.468419 LLDP, length 82 [|LLDP] 19:03:13.468456 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.468457 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0121 b247 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.468459 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.468460 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.468461 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.468462 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.468463 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.468464 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.468481 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.468483 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.468485 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.468487 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.479420 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.479421 LLDP, length 82 [|LLDP] 19:03:13.479450 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.479451 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 012a 18ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.479453 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.479454 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.479455 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.479456 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.479457 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.479458 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.479460 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.479493 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.479494 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.479497 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.479498 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.490807 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.490809 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.490810 LLDP, length 82 [|LLDP] 19:03:13.490846 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.490847 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0130 657a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.490848 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.490850 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.490851 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.490852 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.490867 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.490869 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.490871 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.490872 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.490874 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.490875 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.498688 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.498690 LLDP, length 82 [|LLDP] 19:03:13.498710 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.498711 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0138 cbe1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.498712 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.498713 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.498715 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.498716 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.498717 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.498718 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.498720 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.498751 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.498752 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.498755 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.498756 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.506941 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.506942 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.506943 LLDP, length 82 [|LLDP] 19:03:13.506984 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.506985 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 013f 18ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.506987 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.506988 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.506989 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.506990 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.506991 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.506993 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.506994 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.507018 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.507019 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.507022 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.517959 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.517961 LLDP, length 82 [|LLDP] 19:03:13.517987 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.517988 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0147 7f13 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.517990 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.517990 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.517992 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.517993 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.517994 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.518011 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.518013 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.518015 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.518016 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.518017 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.518018 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.528959 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.528961 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.528962 LLDP, length 82 [|LLDP] 19:03:13.529001 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.529002 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 014f e579 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.529004 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.529005 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.529006 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.529007 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.529008 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.529009 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.529010 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.529034 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.529035 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.529038 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.537217 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.537219 LLDP, length 82 [|LLDP] 19:03:13.537243 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.537244 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0156 3246 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.537245 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.537246 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.537247 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.537261 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.537263 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.537265 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.537266 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.537267 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.537269 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.537270 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.537271 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.551475 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.551477 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.551478 LLDP, length 82 [|LLDP] 19:03:13.551513 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.551514 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 015e 98ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.551515 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.551517 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.551518 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.551519 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.551520 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.551521 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.551537 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.551538 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.551540 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.551542 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.559246 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.559248 LLDP, length 82 [|LLDP] 19:03:13.559275 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.559276 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0166 ff13 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.559277 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.559278 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.559279 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.559281 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.559282 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.559283 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.559284 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.559318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.559319 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.559321 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.559323 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.567498 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.567500 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.567501 LLDP, length 82 [|LLDP] 19:03:13.567544 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.567545 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 016d 4be6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.567547 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.567548 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.567549 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.567550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.567564 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.567566 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.567568 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.567570 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.567571 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.567573 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.578509 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.578511 LLDP, length 82 [|LLDP] 19:03:13.578537 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.578538 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0175 b245 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.578539 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.578540 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.578542 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.578543 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.578544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.578545 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.578546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.578579 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.578580 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.578582 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.578584 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.586765 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.586767 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.586768 LLDP, length 82 [|LLDP] 19:03:13.586809 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.586810 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 017b ff13 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.586812 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.586813 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.586814 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.586816 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.586817 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.586818 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.586819 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.586844 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.586845 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.586848 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.597775 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.597777 LLDP, length 82 [|LLDP] 19:03:13.597806 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.597807 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0184 6579 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.597808 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.597810 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.597811 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.597812 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.597813 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.597831 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.597833 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.597835 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.597836 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.597838 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.597839 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.608787 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.608789 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.608790 LLDP, length 82 [|LLDP] 19:03:13.608828 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.608829 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 018c cbe0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.608831 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.608832 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.608833 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.608834 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.608835 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.608837 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.608838 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.608864 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.608865 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.608867 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.617045 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.617047 LLDP, length 82 [|LLDP] 19:03:13.617066 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.617067 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0193 18ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.617069 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.617069 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.617071 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.617085 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.617086 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.617088 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.617089 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.617090 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.617092 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.617093 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.617094 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.628052 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.628053 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.628054 LLDP, length 82 [|LLDP] 19:03:13.628097 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.628098 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 019b 7f13 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.628100 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.628101 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.628102 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.628103 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.628104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.628106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.628121 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.628122 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.628125 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.628126 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.639063 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.639065 LLDP, length 82 [|LLDP] 19:03:13.639092 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.639093 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01a3 e579 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.639094 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.639095 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.639096 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.639097 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.639098 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.639100 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.639101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.639133 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.639135 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.639137 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.639139 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.647323 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.647325 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.647326 LLDP, length 82 [|LLDP] 19:03:13.647369 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.647370 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01aa 3247 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.647372 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.647373 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.647374 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.647376 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.647391 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.647392 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.647395 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.647396 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.647397 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.647399 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.658328 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.658330 LLDP, length 82 [|LLDP] 19:03:13.658357 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.658357 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01b2 98ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.658359 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.658360 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.658361 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.658363 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.658364 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.658365 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.658367 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.658401 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.658402 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.658405 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.658406 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.669341 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.669343 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.669344 LLDP, length 82 [|LLDP] 19:03:13.669387 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.669388 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01ba ff14 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.669390 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.669391 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.669393 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.669394 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.669395 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.669396 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.669397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.669423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.669424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.669427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.677605 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.677607 LLDP, length 82 [|LLDP] 19:03:13.677627 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.677627 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01c1 4be0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.677629 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.677630 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.677631 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.677632 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.677633 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.677650 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.677651 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.677653 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.677655 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.677656 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.677658 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.688609 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.688611 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.688612 LLDP, length 82 [|LLDP] 19:03:13.688655 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.688656 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01c9 b247 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.688658 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.688659 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.688660 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.688661 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.688662 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.688663 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.688665 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.688689 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.688691 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.688694 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.696866 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.696868 LLDP, length 82 [|LLDP] 19:03:13.696894 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.696895 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01cf ff14 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.696896 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.696898 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.696899 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.696914 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.696915 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.696917 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.696919 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.696920 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.696921 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.696922 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.696924 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.707874 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.707876 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.707877 LLDP, length 82 [|LLDP] 19:03:13.707921 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.707921 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01d8 657b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.707923 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.707924 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.707925 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.707926 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.707927 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.707929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.707944 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.707945 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.707948 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.707950 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.718884 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.718885 LLDP, length 82 [|LLDP] 19:03:13.718912 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.718913 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01e0 cbe1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.718914 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.718915 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.718917 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.718918 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.718919 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.718920 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.718922 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.718953 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.718954 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.718956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.718958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.727148 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.727149 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.727150 LLDP, length 82 [|LLDP] 19:03:13.727187 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.727188 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01e7 18ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.727190 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.727191 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.727192 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.727193 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.727207 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.727209 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.727211 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.727213 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.727214 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.727215 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.738157 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.738159 LLDP, length 82 [|LLDP] 19:03:13.738179 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.738180 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01ef 7f14 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.738182 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.738183 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.738184 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.738185 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.738186 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.738187 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.738189 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.738221 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.738222 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.738225 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.738226 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.749163 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.749164 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.749165 LLDP, length 82 [|LLDP] 19:03:13.749208 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.749209 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01f7 e57b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.749210 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.749212 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.749213 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.749214 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.749215 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.749216 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.749217 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.749241 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.749243 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.749246 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.757422 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.757424 LLDP, length 82 [|LLDP] 19:03:13.757451 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.757452 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01fe 3247 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.757454 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.757455 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.757456 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.757457 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.757458 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.757475 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.757476 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.757478 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.757479 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.757481 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.757482 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.768430 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.768432 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.768433 LLDP, length 82 [|LLDP] 19:03:13.768475 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.768476 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0206 98ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.768478 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.768479 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.768480 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.768481 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.768483 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.768484 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.768485 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.768509 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.768510 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.768513 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.779444 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.779446 LLDP, length 82 [|LLDP] 19:03:13.779466 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.779467 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 020e ff14 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.779468 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.779469 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.779470 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.779485 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.779486 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.779488 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.779489 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.779490 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.779492 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.779493 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.779494 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.787702 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.787704 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.787705 LLDP, length 82 [|LLDP] 19:03:13.787749 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.787750 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0215 4be0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.787752 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.787753 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.787754 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.787755 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.787756 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.787757 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.787773 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.787775 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.787777 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.787779 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.798727 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.798729 LLDP, length 82 [|LLDP] 19:03:13.798754 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.798755 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 021d b246 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.798756 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.798757 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.798758 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.798760 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.798761 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.798762 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.798763 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.798806 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.798808 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.798810 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.798812 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.806971 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.806973 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.806974 LLDP, length 82 [|LLDP] 19:03:13.807012 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.807013 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0223 ff14 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.807014 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.807015 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.807016 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.807018 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.807032 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.807033 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.807035 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.807037 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.807038 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.807040 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.817983 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.817985 LLDP, length 82 [|LLDP] 19:03:13.818016 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.818017 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 022c 6580 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.818018 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.818019 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.818021 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.818022 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.818023 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.818024 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.818025 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.818062 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.818063 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.818066 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.818068 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.828991 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.828993 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.828994 LLDP, length 82 [|LLDP] 19:03:13.829041 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.829042 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0234 cbe0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.829043 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.829045 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.829046 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.829047 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.829048 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.829049 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.829050 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.829077 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.829079 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.829082 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.837251 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.837252 LLDP, length 82 [|LLDP] 19:03:13.837272 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.837273 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 023b 18ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.837275 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.837276 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.837277 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.837279 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.837280 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.837296 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.837298 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.837300 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.837301 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.837302 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.837304 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.848264 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.848266 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.848267 LLDP, length 82 [|LLDP] 19:03:13.848310 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.848311 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0243 7f12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.848312 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.848314 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.848315 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.848316 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.848317 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.848319 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.848320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.848346 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.848348 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.848350 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.859269 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.859271 LLDP, length 82 [|LLDP] 19:03:13.859293 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.859294 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 024b e579 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.859295 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.859296 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.859298 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.859315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.859316 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.859319 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.859320 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.859321 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.859322 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.859323 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.859325 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.867518 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.867520 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.867521 LLDP, length 82 [|LLDP] 19:03:13.867563 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.867564 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0252 3246 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.867565 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.867566 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.867567 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.867568 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.867570 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.867571 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.867587 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.867588 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.867590 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.867592 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.878531 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.878533 LLDP, length 82 [|LLDP] 19:03:13.878559 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.878560 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 025a 98ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.878561 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.878562 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.878564 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.878565 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.878566 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.878567 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.878568 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.878599 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.878600 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.878603 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.878604 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.886783 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.886785 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.886786 LLDP, length 82 [|LLDP] 19:03:13.886829 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.886830 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0260 e579 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.886831 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.886832 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.886833 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.886834 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.886848 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.886850 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.886852 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.886853 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.886854 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.886855 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.897794 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.897796 LLDP, length 82 [|LLDP] 19:03:13.897820 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.897821 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0269 4be0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.897823 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.897823 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.897825 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.897826 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.897827 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.897828 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.897830 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.897862 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.897863 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.897866 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.897867 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.908805 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.908807 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.908808 LLDP, length 82 [|LLDP] 19:03:13.908848 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.908849 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0271 b247 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.908850 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.908852 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.908853 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.908854 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.908855 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.908856 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.908857 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.908881 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.908883 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.908885 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.917073 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.917075 LLDP, length 82 [|LLDP] 19:03:13.917093 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.917094 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0277 ff13 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.917096 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.917097 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.917098 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.917098 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.917099 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.917115 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.917117 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.917119 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.917120 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.917121 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.917123 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.928074 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.928076 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.928077 LLDP, length 82 [|LLDP] 19:03:13.928119 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.928120 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0280 657a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.928121 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.928123 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.928124 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.928125 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.928126 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.928127 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.928128 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.928152 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.928153 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.928156 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.939086 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.939088 LLDP, length 82 [|LLDP] 19:03:13.939116 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.939117 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0288 cbe0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.939118 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.939119 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.939121 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.939135 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.939136 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.939139 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.939140 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.939141 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.939142 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.939143 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.939145 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.947338 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.947341 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.947341 LLDP, length 82 [|LLDP] 19:03:13.947381 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.947382 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 028f 18ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.947383 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.947384 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.947385 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.947386 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.947387 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.947389 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.947404 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.947405 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.947408 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.947409 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.958352 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.958354 LLDP, length 82 [|LLDP] 19:03:13.958372 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.958373 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0297 7f14 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.958374 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.958375 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.958376 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.958378 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.958379 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.958380 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.958381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.958414 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.958415 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.958417 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.958419 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.969360 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.969362 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.969363 LLDP, length 82 [|LLDP] 19:03:13.969405 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.969406 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 029f e57b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.969407 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.969408 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.969410 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.969411 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.969425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.969426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.969428 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.969430 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.969431 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.969433 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.977620 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.977622 LLDP, length 82 [|LLDP] 19:03:13.977641 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.977642 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02a6 3247 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.977643 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.977644 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.977645 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.977647 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.977648 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.977649 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.977650 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.977682 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.977683 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.977686 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.977687 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.988625 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.988627 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.988628 LLDP, length 82 [|LLDP] 19:03:13.988669 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.988670 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02ae 98b3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.988671 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.988673 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.988674 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.988675 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.988676 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.988677 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.988678 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.988703 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.988704 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.988707 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.996883 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.996885 LLDP, length 82 [|LLDP] 19:03:13.996909 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.996909 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02b4 e57a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.996911 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.996912 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.996913 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.996914 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.996915 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.996931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.996933 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.996935 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.996936 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.996937 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.996939 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.007896 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.007898 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.007899 LLDP, length 82 [|LLDP] 19:03:14.007938 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.007939 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02bd 4be1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.007940 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.007942 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.007943 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.007944 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.007945 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.007946 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.007947 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.007972 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.007974 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.007976 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.018905 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.018906 LLDP, length 82 [|LLDP] 19:03:14.018930 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.018931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02c5 b247 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.018932 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.018933 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.018934 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.018950 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.018951 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.018953 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.018954 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.018956 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.018957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.018958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.018960 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.027161 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.027163 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.027164 LLDP, length 82 [|LLDP] 19:03:14.027204 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.027205 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02cb ff14 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.027206 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.027208 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.027209 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.027210 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.027211 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.027212 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.027228 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.027229 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.027232 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.027233 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.038184 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.038186 LLDP, length 82 [|LLDP] 19:03:14.038207 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.038208 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02d4 657a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.038210 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.038211 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.038212 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.038213 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.038214 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.038215 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.038216 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.038256 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.038257 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.038259 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.038261 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.049201 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.049210 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.049211 LLDP, length 82 [|LLDP] 19:03:14.049260 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.049261 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02dc cbe0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.049263 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.049264 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.049265 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.049266 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.049284 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.049285 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.049288 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.049290 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.049291 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.049292 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.057445 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.057447 LLDP, length 82 [|LLDP] 19:03:14.057476 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.057477 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02e3 18ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.057478 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.057479 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.057480 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.057482 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.057483 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.057484 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.057485 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.057529 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.057530 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.057532 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.057534 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.068461 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.068463 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.068465 LLDP, length 82 [|LLDP] 19:03:14.068504 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.068505 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02eb 7f1a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.068506 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.068507 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.068509 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.068510 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.068511 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.068512 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.068513 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.068538 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.068540 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.068543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.076711 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.076712 LLDP, length 82 [|LLDP] 19:03:14.076738 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.076739 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02f1 cbe0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.076740 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.076741 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.076742 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.076744 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.076745 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.076766 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.076767 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.076770 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.076771 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.076772 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.076774 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.087722 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.087724 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.087725 LLDP, length 82 [|LLDP] 19:03:14.087776 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.087777 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02fa 3246 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.087779 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.087780 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.087781 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.087783 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.087784 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.087785 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.087786 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.087814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.087815 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.087818 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.098731 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.098732 LLDP, length 82 [|LLDP] 19:03:14.098757 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.098757 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0302 98ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.098759 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.098760 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.098761 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.098778 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.098779 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.098781 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.098782 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.098783 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.098785 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.098786 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.098788 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.106990 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.106992 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.106999 LLDP, length 82 [|LLDP] 19:03:14.107043 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.107044 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0308 e57a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.107046 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.107047 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.107047 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.107049 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.107050 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.107051 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.107070 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.107071 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.107074 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.107076 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.118004 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.118006 LLDP, length 82 [|LLDP] 19:03:14.118041 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.118042 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0311 4bdf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.118043 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.118044 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.118045 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.118047 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.118048 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.118049 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.118050 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.118089 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.118091 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.118094 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.118095 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.129025 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.129027 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.129028 LLDP, length 82 [|LLDP] 19:03:14.129088 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.129089 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0319 b246 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.129091 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.129093 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.129094 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.129095 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.129115 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.129116 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.129119 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.129120 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.129121 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.129124 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.137271 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.137273 LLDP, length 82 [|LLDP] 19:03:14.137314 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.137315 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 031f ff13 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.137317 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.137318 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.137319 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.137321 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.137322 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.137323 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.137324 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.137367 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.137368 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.137370 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.137372 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.148287 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.148290 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.148291 LLDP, length 82 [|LLDP] 19:03:14.148359 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.148361 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0328 6579 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.148363 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.148364 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.148366 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.148367 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.148369 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.148370 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.148371 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.148410 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.148411 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.148416 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.159326 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.159328 LLDP, length 82 [|LLDP] 19:03:14.159360 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.159360 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0330 cbe0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.159362 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.159364 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.159365 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.159366 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.159367 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.159410 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.159411 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.159415 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.159416 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.159418 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.159420 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.167552 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.167553 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.167566 LLDP, length 82 [|LLDP] 19:03:14.167613 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.167614 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0337 18ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.167615 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.167617 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.167618 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.167619 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.167620 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.167622 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.167623 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.167662 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.167664 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.167667 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.178560 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.178561 LLDP, length 82 [|LLDP] 19:03:14.178583 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.178584 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 033f 7f13 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.178585 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.178586 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.178587 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.178605 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.178606 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.178608 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.178610 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.178611 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.178612 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.178614 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.178615 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.186814 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.186816 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.186817 LLDP, length 82 [|LLDP] 19:03:14.186856 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.186857 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0345 cbe0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.186858 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.186859 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.186861 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.186862 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.186863 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.186864 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.186881 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.186882 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.186885 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.186886 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.197820 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.197822 LLDP, length 82 [|LLDP] 19:03:14.197855 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.197856 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 034e 3246 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.197857 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.197858 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.197859 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.197861 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.197862 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.197863 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.197864 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.197900 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.197901 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.197904 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.197905 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.208831 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.208833 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.208834 LLDP, length 82 [|LLDP] 19:03:14.208883 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.208884 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0356 98ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.208885 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.208886 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.208888 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.208889 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.208904 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.208905 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.208907 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.208909 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.208910 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.208911 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.217106 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.217108 LLDP, length 82 [|LLDP] 19:03:14.217134 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.217135 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 035c e57a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.217136 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.217138 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.217139 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.217140 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.217141 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.217143 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.217144 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.217198 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.217199 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.217202 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.217203 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.228110 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.228112 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.228113 LLDP, length 82 [|LLDP] 19:03:14.228156 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.228157 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0365 4be0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.228158 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.228160 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.228160 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.228162 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.228163 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.228164 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.228165 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.228193 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.228195 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.228197 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.239114 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.239116 LLDP, length 82 [|LLDP] 19:03:14.239143 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.239144 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 036d b24c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.239146 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.239147 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.239148 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.239149 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.239150 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.239167 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.239169 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.239171 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.239173 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.239174 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.239175 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.247365 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.247366 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.247367 LLDP, length 82 [|LLDP] 19:03:14.247408 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.247409 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0373 ff14 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.247411 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.247412 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.247414 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.247415 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.247416 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.247417 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.247418 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.247443 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.247444 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.247447 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.258374 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.258375 LLDP, length 82 [|LLDP] 19:03:14.258402 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.258402 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 037c 657b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.258404 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.258405 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.258406 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.258421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.258422 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.258425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.258426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.258427 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.258428 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.258429 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.258431 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.269392 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.269394 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.269395 LLDP, length 82 [|LLDP] 19:03:14.269430 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.269431 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0384 cbe1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.269432 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.269433 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.269435 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.269436 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.269437 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.269438 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.269453 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.269454 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.269457 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.269458 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.277638 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.277640 LLDP, length 82 [|LLDP] 19:03:14.277666 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.277666 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 038b 18ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.277668 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.277669 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.277670 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.277671 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.277672 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.277674 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.277675 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.277706 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.277707 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.277709 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.277711 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.288660 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.288662 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.288663 LLDP, length 82 [|LLDP] 19:03:14.288697 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.288697 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0393 7f14 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.288699 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.288700 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.288702 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.288703 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.288730 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.288731 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.288734 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.288735 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.288736 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.288738 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.296914 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.296916 LLDP, length 82 [|LLDP] 19:03:14.296935 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.296936 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0399 cbe1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.296937 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.296938 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.296939 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.296940 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.296941 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.296943 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.296944 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.296976 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.296977 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.296980 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.296981 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.307927 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.307929 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.307930 LLDP, length 82 [|LLDP] 19:03:14.307964 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.307965 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03a2 3247 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.307966 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.307968 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.307969 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.307970 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.307972 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.307973 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.307974 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.307998 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.307999 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.308002 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.318927 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.318928 LLDP, length 82 [|LLDP] 19:03:14.318953 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.318953 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03aa 98b4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.318955 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.318956 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.318957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.318958 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.318959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.318975 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.318976 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.318979 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.318980 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.318981 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.318983 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.327182 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.327184 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.327185 LLDP, length 82 [|LLDP] 19:03:14.327224 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.327225 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03b0 e57a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.327227 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.327228 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.327229 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.327230 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.327232 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.327233 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.327234 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.327257 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.327259 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.327261 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.338206 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.338208 LLDP, length 82 [|LLDP] 19:03:14.338227 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.338228 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03b9 4be1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.338230 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.338231 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.338233 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.338249 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.338250 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.338253 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.338254 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.338255 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.338257 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.338258 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.338259 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.349206 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.349208 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.349209 LLDP, length 82 [|LLDP] 19:03:14.349250 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.349251 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03c1 b246 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.349252 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.349253 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.349255 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.349256 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.349257 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.349258 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.349272 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.349274 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.349276 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.349277 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.357460 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.357462 LLDP, length 82 [|LLDP] 19:03:14.357486 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.357487 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03c7 ff13 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.357489 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.357490 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.357491 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.357492 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.357493 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.357494 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.357495 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.357526 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.357528 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.357530 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.357531 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.368469 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.368471 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.368472 LLDP, length 82 [|LLDP] 19:03:14.368513 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.368514 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03d0 657a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.368515 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.368517 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.368518 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.368519 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.368533 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.368534 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.368537 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.368538 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.368539 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.368541 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.376728 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.376731 LLDP, length 82 [|LLDP] 19:03:14.376754 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.376755 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03d6 b246 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.376757 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.376758 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.376759 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.376760 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.376761 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.376762 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.376763 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.376794 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.376795 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.376798 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.376799 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.387738 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.387740 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.387741 LLDP, length 82 [|LLDP] 19:03:14.387781 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.387782 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03df 18ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.387783 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.387784 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.387785 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.387787 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.387788 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.387789 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.387790 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.387814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.387815 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.387818 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.398763 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.398765 LLDP, length 82 [|LLDP] 19:03:14.398783 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.398784 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03e7 7f13 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.398785 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.398786 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.398787 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.398789 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.398790 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.398805 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.398807 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.398809 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.398810 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.398812 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.398813 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.407018 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.407019 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.407020 LLDP, length 82 [|LLDP] 19:03:14.407055 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.407057 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03ed cbdf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.407058 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.407059 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.407061 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.407062 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.407063 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.407064 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.407065 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.407089 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.407090 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.407093 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.418017 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.418019 LLDP, length 82 [|LLDP] 19:03:14.418044 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.418044 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03f6 3246 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.418046 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.418047 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.418048 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.418064 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.418065 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.418067 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.418069 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.418070 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.418072 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.418073 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.418075 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.429027 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.429029 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.429030 LLDP, length 82 [|LLDP] 19:03:14.429072 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.429073 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03fe 98ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.429075 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.429076 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.429077 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.429078 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.429079 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.429080 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.429096 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.429097 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.429099 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.429100 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.437282 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.437284 LLDP, length 82 [|LLDP] 19:03:14.437309 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.437310 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0404 e580 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.437311 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.437313 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.437314 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.437315 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.437316 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.437317 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.437318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.437349 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.437350 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.437353 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.437354 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.448292 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.448294 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.448295 LLDP, length 82 [|LLDP] 19:03:14.448336 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.448337 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 040d 4be0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.448339 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.448340 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.448341 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.448342 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.448356 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.448357 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.448359 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.448360 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.448362 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.448363 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.459313 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.459315 LLDP, length 82 [|LLDP] 19:03:14.459333 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.459334 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0415 b246 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.459336 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.459337 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.459338 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.459339 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.459340 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.459341 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.459343 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.459373 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.459375 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.459377 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.459379 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.467575 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.467577 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.467578 LLDP, length 82 [|LLDP] 19:03:14.467612 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.467612 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 041b ff13 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.467614 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.467615 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.467616 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.467618 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.467619 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.467620 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.467621 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.467645 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.467653 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.467656 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.478570 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.478572 LLDP, length 82 [|LLDP] 19:03:14.478598 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.478598 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0424 657a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.478600 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.478601 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.478602 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.478603 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.478604 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.478620 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.478621 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.478624 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.478625 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.478626 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.478628 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.486842 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.486843 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.486844 LLDP, length 82 [|LLDP] 19:03:14.486885 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.486886 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 042a b247 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.486887 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.486888 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.486890 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.486891 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.486892 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.486893 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.486894 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.486918 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.486919 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.486922 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.497835 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.497837 LLDP, length 82 [|LLDP] 19:03:14.497860 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.497861 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0433 18ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.497863 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.497864 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.497865 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.497879 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.497880 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.497882 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.497884 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.497885 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.497886 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.497888 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.497889 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.508847 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.508849 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.508850 LLDP, length 82 [|LLDP] 19:03:14.508890 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.508891 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 043b 7f14 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.508892 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.508894 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.508895 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.508896 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.508898 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.508899 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.508913 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.508914 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.508917 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.508918 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.517108 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.517109 LLDP, length 82 [|LLDP] 19:03:14.517127 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.517128 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0441 cbe4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.517130 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.517131 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.517132 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.517133 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.517134 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.517135 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.517136 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.517168 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.517170 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.517172 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.517174 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.528126 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.528128 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.528129 LLDP, length 82 [|LLDP] 19:03:14.528163 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.528164 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 044a 3247 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.528165 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.528167 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.528168 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.528169 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.528183 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.528184 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.528187 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.528188 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.528189 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.528191 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.539126 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.539128 LLDP, length 82 [|LLDP] 19:03:14.539152 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.539153 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0452 98ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.539154 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.539156 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.539157 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.539158 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.539159 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.539160 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.539161 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.539193 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.539194 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.539196 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.539198 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.547383 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.547385 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.547386 LLDP, length 82 [|LLDP] 19:03:14.547426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.547427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0458 e57a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.547429 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.547430 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.547431 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.547433 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.547434 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.547435 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.547436 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.547461 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.547463 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.547466 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.558393 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.558395 LLDP, length 82 [|LLDP] 19:03:14.558420 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.558421 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0461 4be1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.558423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.558424 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.558425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.558426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.558427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.558444 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.558445 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.558447 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.558449 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.558450 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.558452 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.569412 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.569414 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.569415 LLDP, length 82 [|LLDP] 19:03:14.569448 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.569449 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0469 b24d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.569451 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.569452 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.569454 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.569455 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.569456 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.569457 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.569458 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.569482 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.569484 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.569486 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.577659 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.577660 LLDP, length 82 [|LLDP] 19:03:14.577685 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.577686 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 046f ff13 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.577687 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.577688 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.577690 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.577704 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.577705 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.577707 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.577709 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.577710 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.577711 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.577713 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.577714 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.588681 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.588682 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.588683 LLDP, length 82 [|LLDP] 19:03:14.588717 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.588718 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0478 657a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.588720 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.588721 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.588722 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.588723 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.588724 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.588725 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.588741 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.588742 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.588744 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.588746 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.596928 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.596930 LLDP, length 82 [|LLDP] 19:03:14.596954 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.596955 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 047e b247 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.596956 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.596957 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.596958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.596959 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.596961 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.596962 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.596963 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.596994 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.596995 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.596998 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.596999 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.607935 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.607937 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.607938 LLDP, length 82 [|LLDP] 19:03:14.607982 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.607983 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0487 18ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.607985 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.607986 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.607987 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.607988 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.608003 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.608004 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.608007 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.608008 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.608009 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.608010 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.618948 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.618950 LLDP, length 82 [|LLDP] 19:03:14.618974 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.618974 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 048f 7f13 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.618976 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.618977 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.618978 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.618979 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.618980 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.618981 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.618983 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.619016 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.619018 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.619020 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.619022 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.627210 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.627211 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.627212 LLDP, length 82 [|LLDP] 19:03:14.627247 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.627248 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0495 cbe0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.627250 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.627251 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.627252 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.627254 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.627255 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.627256 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.627257 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.627281 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.627282 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.627285 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.638216 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.638218 LLDP, length 82 [|LLDP] 19:03:14.638243 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.638244 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 049e 3246 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.638246 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.638247 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.638248 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.638249 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.638250 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.638267 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.638268 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.638271 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.638272 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.638273 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.638274 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.649224 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.649226 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.649227 LLDP, length 82 [|LLDP] 19:03:14.649268 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.649269 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04a6 98ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.649270 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.649272 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.649273 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.649274 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.649275 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.649276 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.649278 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.649301 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.649302 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.649305 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.657485 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.657487 LLDP, length 82 [|LLDP] 19:03:14.657513 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.657514 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04ac e579 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.657515 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.657517 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.657518 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.657535 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.657536 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.657538 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.657539 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.657540 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.657542 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.657543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.657544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.668491 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.668493 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.668494 LLDP, length 82 [|LLDP] 19:03:14.668535 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.668536 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04b5 4bdf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.668537 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.668538 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.668539 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.668541 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.668542 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.668543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.668558 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.668559 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.668562 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.668563 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.676750 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.676752 LLDP, length 82 [|LLDP] 19:03:14.676776 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.676777 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04bb 98ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.676778 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.676779 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.676780 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.676781 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.676782 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.676784 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.676785 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.676817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.676818 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.676821 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.676822 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.687766 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.687768 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.687769 LLDP, length 82 [|LLDP] 19:03:14.687814 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.687815 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04c3 ff19 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.687817 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.687818 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.687819 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.687821 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.687835 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.687837 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.687839 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.687840 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.687841 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.687843 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.698770 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.698772 LLDP, length 82 [|LLDP] 19:03:14.698798 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.698799 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04cc 6579 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.698800 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.698801 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.698802 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.698803 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.698804 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.698805 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.698807 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.698837 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.698839 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.698841 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.698843 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.707028 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.707029 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.707030 LLDP, length 82 [|LLDP] 19:03:14.707070 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.707071 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04d2 b247 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.707073 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.707074 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.707075 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.707076 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.707077 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.707078 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.707080 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.707103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.707104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.707107 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.718036 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.718038 LLDP, length 82 [|LLDP] 19:03:14.718065 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.718065 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04db 18ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.718067 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.718068 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.718069 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.718070 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.718071 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.718087 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.718088 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.718091 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.718092 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.718093 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.718095 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.729046 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.729048 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.729049 LLDP, length 82 [|LLDP] 19:03:14.729090 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.729091 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04e3 7f14 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.729092 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.729094 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.729095 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.729096 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.729097 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.729098 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.729100 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.729123 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.729124 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.729127 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.737303 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.737305 LLDP, length 82 [|LLDP] 19:03:14.737329 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.737330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04e9 cbe0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.737331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.737332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.737333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.737348 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.737349 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.737352 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.737354 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.737355 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.737356 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.737357 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.737359 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.748314 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.748315 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.748316 LLDP, length 82 [|LLDP] 19:03:14.748358 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.748358 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04f2 3247 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.748360 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.748362 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.748363 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.748364 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.748366 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.748367 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.748382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.748383 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.748386 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.748387 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.759326 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.759329 LLDP, length 82 [|LLDP] 19:03:14.759354 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.759355 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04fa 98ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.759356 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.759357 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.759359 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.759360 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.759361 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.759362 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.759363 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.759395 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.759396 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.759399 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.759400 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.767593 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.767594 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.767595 LLDP, length 82 [|LLDP] 19:03:14.767629 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.767631 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0500 e57d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.767632 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.767633 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.767635 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.767636 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.767659 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.767660 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.767663 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.767664 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.767665 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.767667 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.778599 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.778601 LLDP, length 82 [|LLDP] 19:03:14.778621 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.778622 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0509 4be1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.778623 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.778625 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.778626 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.778627 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.778628 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.778629 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.778630 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.778664 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.778665 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.778668 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.778669 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.786851 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.786853 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.786854 LLDP, length 82 [|LLDP] 19:03:14.786894 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.786895 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 050f 98ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.786897 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.786898 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.786899 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.786900 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.786902 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.786903 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.786904 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.786928 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.786929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.786932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.797874 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.797876 LLDP, length 82 [|LLDP] 19:03:14.797907 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.797908 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0517 ff14 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.797909 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.797911 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.797912 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.797913 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.797914 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.797934 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.797935 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.797938 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.797939 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.797940 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.797942 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.808878 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.808881 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.808888 LLDP, length 82 [|LLDP] 19:03:14.808931 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.808932 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0520 657b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.808933 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.808934 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.808935 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.808937 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.808938 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.808939 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.808940 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.808967 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.808968 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.808971 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.817131 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.817132 LLDP, length 82 [|LLDP] 19:03:14.817160 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.817160 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0526 b247 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.817162 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.817163 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.817164 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.817180 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.817181 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.817184 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.817185 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.817186 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.817188 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.817189 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.817191 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.828152 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.828154 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.828155 LLDP, length 82 [|LLDP] 19:03:14.828192 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.828192 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 052f 18ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.828194 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.828195 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.828196 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.828198 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.828199 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.828200 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.828217 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.828218 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.828221 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.828222 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.839151 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.839153 LLDP, length 82 [|LLDP] 19:03:14.839179 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.839180 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0537 7f14 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.839181 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.839182 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.839184 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.839185 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.839186 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.839187 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.839188 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.839225 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.839226 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.839229 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.839231 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.847417 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.847418 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.847426 LLDP, length 82 [|LLDP] 19:03:14.847476 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.847477 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 053d cbe1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.847478 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.847480 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.847481 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.847482 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.847499 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.847501 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.847504 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.847505 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.847506 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.847508 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.858427 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.858429 LLDP, length 82 [|LLDP] 19:03:14.858460 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.858460 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0546 3246 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.858462 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.858463 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.858464 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.858465 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.858466 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.858468 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.858469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.858512 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.858514 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.858517 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.858518 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.866674 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.866676 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.866677 LLDP, length 82 [|LLDP] 19:03:14.866719 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.866720 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 054c 7f14 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.866722 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.866723 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.866724 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.866725 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.866726 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.866727 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.866729 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.866754 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.866755 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.866758 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.877685 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.877687 LLDP, length 82 [|LLDP] 19:03:14.877713 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.877714 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0554 e57a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.877715 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.877717 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.877718 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.877719 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.877720 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.877737 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.877738 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.877740 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.877741 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.877743 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.877744 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.888692 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.888694 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.888695 LLDP, length 82 [|LLDP] 19:03:14.888737 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.888738 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 055d 4be0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.888740 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.888741 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.888742 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.888743 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.888745 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.888746 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.888747 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.888771 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.888772 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.888775 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.896955 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.896957 LLDP, length 82 [|LLDP] 19:03:14.896982 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.896983 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0563 98ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.896985 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.896986 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.896987 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.897002 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.897003 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.897005 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.897007 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.897008 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.897009 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.897010 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.897011 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.907987 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.907989 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.907990 LLDP, length 82 [|LLDP] 19:03:14.908032 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.908033 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 056b ff13 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.908034 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.908036 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.908037 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.908038 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.908040 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.908041 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.908058 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.908059 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.908061 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.908063 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.918974 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.918975 LLDP, length 82 [|LLDP] 19:03:14.919000 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.919001 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0574 6579 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.919002 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.919003 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.919004 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.919005 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.919006 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.919008 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.919009 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.919043 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.919044 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.919047 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.919048 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.927229 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.927232 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.927233 LLDP, length 82 [|LLDP] 19:03:14.927276 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.927277 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 057a b246 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.927279 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.927279 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.927280 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.927281 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.927295 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.927297 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.927299 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.927300 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.927301 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.927302 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.938238 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.938240 LLDP, length 82 [|LLDP] 19:03:14.938268 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.938269 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0583 18b3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.938270 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.938271 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.938272 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.938273 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.938274 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.938276 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.938277 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.938312 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.938314 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.938316 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.938318 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.949247 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.949249 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.949250 LLDP, length 82 [|LLDP] 19:03:14.949292 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.949293 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 058b 7f12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.949295 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.949296 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.949297 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.949299 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.949300 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.949301 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.949302 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.949326 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.949328 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.949331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.957508 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.957510 LLDP, length 82 [|LLDP] 19:03:14.957534 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.957535 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0591 cbe0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.957536 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.957537 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.957538 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.957539 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.957540 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.957558 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.957559 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.957561 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.957562 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.957564 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.957565 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.968522 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.968524 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.968525 LLDP, length 82 [|LLDP] 19:03:14.968560 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.968561 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 059a 3246 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.968562 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.968564 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.968565 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.968566 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.968567 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.968568 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.968569 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.968594 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.968595 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.968598 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.976775 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.976776 LLDP, length 82 [|LLDP] 19:03:14.976802 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.976803 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05a0 7f13 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.976805 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.976806 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.976807 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.976821 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.976822 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.976825 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.976826 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.976827 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.976828 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.976829 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.976831 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.987782 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.987783 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.987784 LLDP, length 82 [|LLDP] 19:03:14.987825 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.987826 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05a8 e57a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.987827 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.987828 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.987829 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.987831 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.987832 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.987833 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.987848 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.987849 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.987852 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.987853 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.998790 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.998792 LLDP, length 82 [|LLDP] 19:03:14.998816 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.998817 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05b1 4be0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.998819 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.998820 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.998821 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.998822 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.998823 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.998824 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.998826 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.998858 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.998859 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.998862 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.998863 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.007060 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.007062 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.007063 LLDP, length 82 [|LLDP] 19:03:15.007100 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.007101 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05b7 98ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.007103 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.007118 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.007120 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.007121 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.007137 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.007138 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.007141 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.007143 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.007145 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.007147 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.018085 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.018087 LLDP, length 82 [|LLDP] 19:03:15.018122 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.018124 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05bf ff14 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.018125 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.018126 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.018128 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.018129 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.018130 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.018132 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.018133 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.018192 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.018194 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.018197 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.018199 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.029081 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.029084 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.029085 LLDP, length 82 [|LLDP] 19:03:15.029141 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.029142 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05c8 657a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.029144 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.029145 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.029146 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.029148 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.029149 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.029150 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.029151 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.029178 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.029180 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.029183 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.037331 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.037332 LLDP, length 82 [|LLDP] 19:03:15.037361 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.037361 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05ce b248 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.037363 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.037364 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.037365 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.037366 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.037367 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.037387 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.037388 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.037391 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.037392 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.037394 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.037395 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.048339 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.048341 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.048342 LLDP, length 82 [|LLDP] 19:03:15.048387 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.048388 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05d7 18ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.048389 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.048391 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.048392 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.048393 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.048394 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.048395 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.048396 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.048423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.048424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.048427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.059349 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.059350 LLDP, length 82 [|LLDP] 19:03:15.059376 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.059377 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05df 7f14 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.059379 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.059380 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.059381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.059396 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.059397 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.059400 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.059401 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.059403 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.059404 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.059406 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.059407 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.067607 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.067609 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.067610 LLDP, length 82 [|LLDP] 19:03:15.067661 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.067662 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05e5 cbe1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.067664 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.067666 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.067667 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.067668 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.067669 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.067670 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.067687 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.067689 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.067691 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.067693 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.078625 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.078627 LLDP, length 82 [|LLDP] 19:03:15.078649 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.078649 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05ee 3247 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.078651 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.078652 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.078653 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.078654 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.078656 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.078657 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.078658 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.078691 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.078693 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.078695 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.078696 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.086864 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.086865 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.086866 LLDP, length 82 [|LLDP] 19:03:15.086904 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.086905 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05f4 7f14 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.086907 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.086908 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.086909 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.086923 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.086925 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.097880 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.097881 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.097901 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.097903 LLDP, length 82 [|LLDP] 19:03:15.097918 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.097919 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05fc e57b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.097920 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.097922 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.097923 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.097924 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.097926 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.097927 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.097949 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.097951 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.097952 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.108905 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.108908 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.108915 LLDP, length 82 [|LLDP] 19:03:15.108964 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.108965 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0605 4be1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.108966 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.108967 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.108981 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.108983 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.108984 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.108986 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.108987 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.108988 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.109003 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.109006 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.117178 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.117180 LLDP, length 82 [|LLDP] 19:03:15.117202 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.117203 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 060b 98ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.117205 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.117206 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.117207 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.117208 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.117209 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.117233 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.117236 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.117237 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.117238 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.117270 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.117272 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.128172 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.128174 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.128175 LLDP, length 82 [|LLDP] 19:03:15.128232 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.128233 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0613 ff14 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.128234 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.128236 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.128237 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.128238 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.128239 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.128240 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.128266 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.128268 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.128272 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.128274 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.139170 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.139172 LLDP, length 82 [|LLDP] 19:03:15.139198 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.139199 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 061c 657a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.139201 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.139202 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.139203 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.139219 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.139221 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.139222 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.139223 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.139225 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.139226 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.139253 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.139256 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.147431 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.147433 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.147434 LLDP, length 82 [|LLDP] 19:03:15.147480 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.147481 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0622 b246 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.147483 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.147484 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.147485 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.147487 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.147488 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.147489 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.147515 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.147517 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.147520 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.147522 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.158444 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.158446 LLDP, length 82 [|LLDP] 19:03:15.158473 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.158474 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 062b 18ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.158475 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.158476 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.158477 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.158478 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.158480 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.158481 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.158516 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.158518 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.158519 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.158530 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.158533 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.166694 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.166695 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.166696 LLDP, length 82 [|LLDP] 19:03:15.166738 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.166739 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0631 657a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.166741 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.166742 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.166743 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.166744 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.166759 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.166761 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.166762 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.166763 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.166776 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.166783 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.177702 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.177704 LLDP, length 82 [|LLDP] 19:03:15.177731 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.177732 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0639 cbe0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.177733 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.177734 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.177735 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.177736 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.177738 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.177739 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.177776 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.177778 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.177779 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.177791 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.177793 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.188723 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.188725 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.188726 LLDP, length 82 [|LLDP] 19:03:15.188767 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.188768 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0642 324d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.188770 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.188771 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.188784 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.188786 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.188787 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.188788 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.188789 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.188790 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.188805 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.188807 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.196974 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.196975 LLDP, length 82 [|LLDP] 19:03:15.196994 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.196995 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0648 7f13 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.196996 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.196998 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.196999 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.197000 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.197001 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.197016 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.197018 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.197019 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.197021 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.197046 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.197048 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.207977 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.207978 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.207979 LLDP, length 82 [|LLDP] 19:03:15.208017 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.208018 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0650 e579 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.208020 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.208021 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.208022 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.208023 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.208024 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.208025 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.208047 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.208050 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.208053 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.208055 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.218995 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.218996 LLDP, length 82 [|LLDP] 19:03:15.219023 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.219024 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0659 4bdf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.219026 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.219027 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.219028 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.219043 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.219045 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.219046 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.219048 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.219049 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.219050 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.219078 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.219081 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.227248 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.227249 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.227250 LLDP, length 82 [|LLDP] 19:03:15.227295 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.227295 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 065f 98ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.227297 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.227298 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.227299 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.227301 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.227302 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.227303 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.227326 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.227328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.227331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.227333 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.238263 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.238264 LLDP, length 82 [|LLDP] 19:03:15.238297 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.238298 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0667 ff13 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.238299 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.238301 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.238302 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.238303 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.238304 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.238306 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.238343 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.238345 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.238346 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.238357 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.238360 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.249293 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.249295 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.249296 LLDP, length 82 [|LLDP] 19:03:15.249345 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.249346 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0670 657a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.249348 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.249349 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.249350 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.249351 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.249369 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.249371 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.249372 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.249373 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.249387 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.249389 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.257530 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.257532 LLDP, length 82 [|LLDP] 19:03:15.257561 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.257562 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0676 b246 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.257564 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.257565 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.257566 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.257567 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.257569 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.257570 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.257603 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.257605 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.257606 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.257617 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.257620 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.268543 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.268545 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.268546 LLDP, length 82 [|LLDP] 19:03:15.268593 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.268594 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 067f 18ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.268595 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.268596 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.268608 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.268610 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.268611 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.268613 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.268614 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.268615 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.268630 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.268632 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.276794 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.276795 LLDP, length 82 [|LLDP] 19:03:15.276821 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.276821 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0685 657a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.276823 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.276824 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.276825 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.276827 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.276828 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.276844 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.276846 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.276847 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.276848 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.276872 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.276874 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.287802 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.287804 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.287805 LLDP, length 82 [|LLDP] 19:03:15.287846 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.287848 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 068d cbe0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.287849 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.287850 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.287851 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.287853 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.287854 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.287855 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.287891 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.287893 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.287897 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.287899 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.298815 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.298816 LLDP, length 82 [|LLDP] 19:03:15.298840 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.298842 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0696 3247 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.298843 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.298844 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.298846 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.298860 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.298862 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.298863 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.298864 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.298866 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.298867 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.298893 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.298895 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.307074 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.307075 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.307076 LLDP, length 82 [|LLDP] 19:03:15.307116 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.307116 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 069c 7f14 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.307118 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.307119 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.307120 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.307121 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.307122 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.307123 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.307147 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.307149 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.307152 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.307154 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.318082 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.318083 LLDP, length 82 [|LLDP] 19:03:15.318108 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.318108 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06a4 e57a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.318110 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.318111 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.318112 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.318113 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.318114 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.318116 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.318146 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.318148 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.318149 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.318161 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.318163 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.329089 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.329091 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.329092 LLDP, length 82 [|LLDP] 19:03:15.329134 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.329135 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06ad 4be0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.329136 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.329137 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.329138 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.329139 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.329153 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.329155 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.329156 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.329158 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.329171 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.329173 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.337348 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.337349 LLDP, length 82 [|LLDP] 19:03:15.337373 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.337374 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06b3 98ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.337375 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.337376 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.337378 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.337379 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.337380 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.337381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.337410 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.337412 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.337414 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.337424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.337427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.348357 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.348359 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.348360 LLDP, length 82 [|LLDP] 19:03:15.348401 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.348402 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06bb ff14 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.348404 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.348405 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.348416 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.348418 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.348419 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.348420 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.348421 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.348423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.348437 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.348439 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.356619 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.356621 LLDP, length 82 [|LLDP] 19:03:15.356649 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.356649 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06c2 4be0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.356651 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.356652 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.356653 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.356654 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.356656 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.356674 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.356676 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.356677 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.356678 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.356707 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.356709 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.367638 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.367640 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.367641 LLDP, length 82 [|LLDP] 19:03:15.367686 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.367687 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06ca b246 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.367689 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.367690 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.367691 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.367693 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.367694 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.367695 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.367720 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.367722 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.367726 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.367728 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.378647 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.378649 LLDP, length 82 [|LLDP] 19:03:15.378667 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.378668 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06d3 18ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.378669 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.378670 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.378671 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.378686 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.378688 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.378689 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.378690 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.378691 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.378692 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.378717 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.378720 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.386893 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.386895 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.386896 LLDP, length 82 [|LLDP] 19:03:15.386936 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.386937 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06d9 6580 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.386938 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.386939 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.386940 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.386941 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.386943 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.386944 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.386967 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.386969 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.386972 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.386974 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.397905 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.397907 LLDP, length 82 [|LLDP] 19:03:15.397931 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.397931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06e1 cbe0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.397933 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.397934 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.397935 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.397936 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.397937 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.397939 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.397969 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.397971 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.397972 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.397984 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.397986 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.408913 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.408915 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.408916 LLDP, length 82 [|LLDP] 19:03:15.408956 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.408957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06ea 3246 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.408958 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.408959 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.408961 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.408962 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.408976 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.408978 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.408979 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.408980 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.408993 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.408995 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.417175 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.417176 LLDP, length 82 [|LLDP] 19:03:15.417195 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.417196 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06f0 7f13 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.417198 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.417199 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.417200 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.417201 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.417202 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.417204 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.417234 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.417236 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.417237 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.417249 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.417251 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.428180 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.428182 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.428183 LLDP, length 82 [|LLDP] 19:03:15.428223 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.428223 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06f8 e579 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.428225 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.428226 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.428239 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.428241 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.428242 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.428243 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.428244 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.428245 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.428260 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.428262 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.439200 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.439202 LLDP, length 82 [|LLDP] 19:03:15.439220 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.439221 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0701 4be7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.439223 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.439224 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.439225 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.439226 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.439228 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.439242 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.439244 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.439246 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.439247 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.439271 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.439274 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.447447 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.447448 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.447449 LLDP, length 82 [|LLDP] 19:03:15.447491 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.447492 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0707 98ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.447494 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.447495 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.447496 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.447497 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.447498 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.447499 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.447522 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.447524 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.447527 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.447530 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.458458 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.458460 LLDP, length 82 [|LLDP] 19:03:15.458489 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.458490 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 070f ff13 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.458491 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.458493 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.458494 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.458512 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.458514 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.458516 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.458517 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.458518 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.458519 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.458550 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.458552 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.466716 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.466719 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.466720 LLDP, length 82 [|LLDP] 19:03:15.466762 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.466763 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0716 4be0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.466765 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.466766 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.466767 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.466768 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.466769 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.466770 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.466794 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.466796 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.466800 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.466801 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.477727 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.477729 LLDP, length 82 [|LLDP] 19:03:15.477754 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.477755 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 071e b247 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.477756 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.477757 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.477759 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.477760 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.477761 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.477762 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.477793 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.477795 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.477796 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.477808 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.477810 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.488747 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.488748 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.488749 LLDP, length 82 [|LLDP] 19:03:15.488784 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.488785 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0727 18ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.488787 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.488788 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.488789 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.488790 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.488804 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.488806 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.488807 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.488809 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.488822 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.488824 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.497004 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.497006 LLDP, length 82 [|LLDP] 19:03:15.497025 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.497025 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 072d 657a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.497027 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.497028 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.497029 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.497030 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.497031 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.497032 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.497062 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.497063 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.497065 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.497076 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.497078 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.508003 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.508005 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.508006 LLDP, length 82 [|LLDP] 19:03:15.508047 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.508047 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0735 cbe1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.508049 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.508050 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.508062 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.508063 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.508065 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.508066 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.508067 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.508068 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.508083 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.508085 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.519015 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.519016 LLDP, length 82 [|LLDP] 19:03:15.519041 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.519041 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 073e 3247 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.519043 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.519044 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.519045 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.519046 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.519048 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.519064 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.519066 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.519067 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.519068 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.519092 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.519095 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.527270 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.527272 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.527273 LLDP, length 82 [|LLDP] 19:03:15.527311 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.527312 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0744 7f14 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.527314 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.527315 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.527316 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.527317 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.527318 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.527320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.527343 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.527345 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.527348 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.527350 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.538291 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.538293 LLDP, length 82 [|LLDP] 19:03:15.538312 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.538313 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 074c e57a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.538314 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.538315 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.538316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.538331 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.538333 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.538334 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.538335 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.538337 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.538338 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.538365 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.538367 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.549289 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.549291 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.549292 LLDP, length 82 [|LLDP] 19:03:15.549334 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.549335 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0755 4be0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.549336 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.549338 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.549339 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.549340 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.549341 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.549342 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.549365 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.549367 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.549371 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.549373 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.557560 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.557561 LLDP, length 82 [|LLDP] 19:03:15.557582 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.557583 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 075b 98ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.557584 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.557585 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.557586 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.557588 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.557589 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.557590 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.557621 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.557623 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.557624 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.557636 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.557638 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.568559 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.568561 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.568562 LLDP, length 82 [|LLDP] 19:03:15.568598 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.568599 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0763 ff14 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.568601 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.568602 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.568603 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.568604 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.568618 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.568620 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.568621 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.568623 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.568635 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.568638 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.576815 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.576817 LLDP, length 82 [|LLDP] 19:03:15.576841 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.576842 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 076a 4be0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.576843 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.576844 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.576845 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.576847 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.576848 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.576849 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.576881 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.576883 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.576884 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.576897 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.576899 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.587825 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.587826 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.587828 LLDP, length 82 [|LLDP] 19:03:15.587870 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.587871 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0772 b247 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.587872 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.587873 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.587885 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.587887 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.587888 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.587889 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.587891 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.587892 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.587906 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.587908 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.598834 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.598836 LLDP, length 82 [|LLDP] 19:03:15.598861 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.598862 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 077b 18ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.598863 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.598864 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.598865 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.598866 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.598868 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.598883 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.598885 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.598886 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.598887 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.598911 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.598913 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.607092 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.607093 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.607095 LLDP, length 82 [|LLDP] 19:03:15.607134 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.607135 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0781 6579 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.607137 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.607138 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.607139 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.607140 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.607141 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.607142 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.607165 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.607167 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.607170 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.607172 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.618105 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.618106 LLDP, length 82 [|LLDP] 19:03:15.618125 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.618126 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0789 cbdf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.618127 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.618128 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.618129 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.618143 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.618145 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.618146 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.618147 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.618148 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.618149 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.618174 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.618176 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.629111 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.629113 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.629114 LLDP, length 82 [|LLDP] 19:03:15.629154 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.629155 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0792 3246 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.629157 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.629158 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.629159 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.629161 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.629162 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.629163 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.629185 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.629187 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.629191 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.629193 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.637367 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.637369 LLDP, length 82 [|LLDP] 19:03:15.637394 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.637394 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0798 7f1a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.637396 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.637397 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.637398 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.637399 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.637400 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.637402 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.637431 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.637432 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.637433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.637445 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.637447 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.648385 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.648386 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.648388 LLDP, length 82 [|LLDP] 19:03:15.648423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.648424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07a0 e579 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.648426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.648427 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.648428 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.648429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.648442 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.648444 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.648446 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.648447 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.648459 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.648462 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.656636 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.656638 LLDP, length 82 [|LLDP] 19:03:15.656662 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.656663 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07a7 3246 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.656664 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.656665 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.656666 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.656668 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.656669 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.656670 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.656699 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.656701 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.656703 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.656714 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.656716 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.667659 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.667660 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.667661 LLDP, length 82 [|LLDP] 19:03:15.667697 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.667698 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07af 98ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.667699 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.667700 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.667713 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.667715 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.667716 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.667717 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.667718 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.667720 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.667735 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.667737 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.678661 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.678663 LLDP, length 82 [|LLDP] 19:03:15.678688 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.678689 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07b7 ff13 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.678690 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.678691 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.678693 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.678694 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.678695 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.678711 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.678713 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.678714 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.678715 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.678741 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.678743 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.686917 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.686918 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.686920 LLDP, length 82 [|LLDP] 19:03:15.686959 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.686960 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07be 4bdf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.686962 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.686963 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.686964 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.686965 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.686967 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.686968 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.686990 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.686992 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.686995 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.686997 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.698105 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.698107 LLDP, length 82 [|LLDP] 19:03:15.698125 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.698126 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07c6 b246 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.698128 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.698129 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.698130 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.698145 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.698147 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.698148 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.698149 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.698150 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.698152 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.698178 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.698180 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.708936 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.708937 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.708938 LLDP, length 82 [|LLDP] 19:03:15.708980 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.708980 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07cf 18ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.708982 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.708983 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.708984 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.708985 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.708986 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.708987 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.709010 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.709012 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.709015 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.709017 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.717195 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.717197 LLDP, length 82 [|LLDP] 19:03:15.717225 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.717225 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07d5 657a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.717227 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.717228 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.717229 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.717230 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.717232 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.717233 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.717269 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.717271 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.717272 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.717284 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.717286 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.728205 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.728206 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.728207 LLDP, length 82 [|LLDP] 19:03:15.728250 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.728250 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07dd cbe0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.728252 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.728253 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.728254 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.728256 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.728269 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.728271 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.728273 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.728274 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.728287 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.728289 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.739222 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.739224 LLDP, length 82 [|LLDP] 19:03:15.739243 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.739244 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07e6 3246 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.739245 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.739246 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.739247 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.739249 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.739250 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.739251 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.739280 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.739282 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.739283 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.739294 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.739297 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.747480 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.747482 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.747483 LLDP, length 82 [|LLDP] 19:03:15.747517 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.747518 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07ec 7f14 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.747520 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.747521 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.747533 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.747534 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.747536 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.747537 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.747538 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.747539 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.747554 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.747556 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.758497 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.758499 LLDP, length 82 [|LLDP] 19:03:15.758524 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.758525 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07f4 e57a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.758527 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.758528 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.758529 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.758530 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.758532 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.758552 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.758554 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.758555 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.758556 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.758587 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.758589 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.766753 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.766754 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.766755 LLDP, length 82 [|LLDP] 19:03:15.766796 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.766797 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07fb 3247 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.766799 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.766800 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.766801 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.766802 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.766803 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.766804 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.766830 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.766832 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.766835 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.766837 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.777748 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.777750 LLDP, length 82 [|LLDP] 19:03:15.777778 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.777779 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0803 98ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.777780 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.777782 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.777783 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.777799 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.777801 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.777802 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.777803 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.777805 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.777806 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.777834 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.777836 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.788759 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.788761 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.788762 LLDP, length 82 [|LLDP] 19:03:15.788805 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.788807 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 080b ff14 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.788808 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.788809 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.788810 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.788811 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.788812 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.788813 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.788837 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.788839 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.788842 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.788844 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.797032 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.797033 LLDP, length 82 [|LLDP] 19:03:15.797058 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.797059 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0812 4be1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.797061 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.797062 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.797063 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.797064 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.797065 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.797067 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.797105 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.797107 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.797108 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.797121 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.797123 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.808041 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.808043 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.808044 LLDP, length 82 [|LLDP] 19:03:15.808086 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.808087 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 081a b247 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.808089 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.808090 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.808091 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.808092 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.808107 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.808109 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.808110 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.808111 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.808125 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.808127 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.819037 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.819039 LLDP, length 82 [|LLDP] 19:03:15.819065 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.819066 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0823 18ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.819068 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.819069 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.819070 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.819071 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.819072 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.819073 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.819106 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.819108 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.819110 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.819122 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.819125 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.827293 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.827295 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.827296 LLDP, length 82 [|LLDP] 19:03:15.827339 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.827340 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0829 657b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.827341 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.827343 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.827355 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.827356 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.827357 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.827359 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.827360 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.827361 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.827376 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.827378 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.838308 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.838310 LLDP, length 82 [|LLDP] 19:03:15.838337 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.838337 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0831 cbe1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.838339 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.838340 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.838341 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.838342 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.838344 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.838361 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.838363 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.838365 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.838366 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.838393 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.838395 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.849324 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.849325 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.849326 LLDP, length 82 [|LLDP] 19:03:15.849377 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.849378 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 083a 3247 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.849379 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.849380 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.849382 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.849383 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.849384 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.849385 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.849411 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.849413 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.849417 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.849419 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.857574 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.857576 LLDP, length 82 [|LLDP] 19:03:15.857605 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.857606 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0840 7f14 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.857608 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.857609 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.857610 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.857627 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.857629 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.857630 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.857631 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.857632 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.857633 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.857665 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.857667 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.868587 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.868589 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.868590 LLDP, length 82 [|LLDP] 19:03:15.868633 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.868634 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0848 e57a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.868635 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.868637 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.868638 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.868639 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.868640 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.868641 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.868667 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.868669 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.868672 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.868693 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.876871 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.876874 LLDP, length 82 [|LLDP] 19:03:15.876902 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.876904 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 084f 3247 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.876905 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.876906 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.876908 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.876909 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.876910 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.876911 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.876967 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.876971 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.876972 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.876986 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.876988 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.887870 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.887872 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.887873 LLDP, length 82 [|LLDP] 19:03:15.887924 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.887926 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0857 98b1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.887927 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.887928 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.887930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.887931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.887948 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.887950 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.887951 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.887952 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.887966 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.887968 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.898862 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.898864 LLDP, length 82 [|LLDP] 19:03:15.898894 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.898895 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 085f ff14 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.898897 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.898898 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.898899 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.898900 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.898901 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.898902 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.898941 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.898943 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.898944 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.898958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.898960 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.907118 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.907120 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.907121 LLDP, length 82 [|LLDP] 19:03:15.907165 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.907166 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0866 4be0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.907168 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.907169 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.907181 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.907183 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.907184 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.907185 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.907186 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.907187 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.907203 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.907205 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.918131 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.918133 LLDP, length 82 [|LLDP] 19:03:15.918160 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.918160 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 086e b246 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.918162 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.918163 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.918164 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.918166 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.918167 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.918183 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.918185 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.918186 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.918188 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.918216 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.918218 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.929142 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.929143 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.929145 LLDP, length 82 [|LLDP] 19:03:15.929182 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.929183 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0877 18ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.929185 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.929186 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.929188 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.929189 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.929190 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.929191 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.929214 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.929216 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.929220 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.929222 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.937394 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.937395 LLDP, length 82 [|LLDP] 19:03:15.937423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.937424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 087d 6579 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.937425 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.937426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.937427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.937442 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.937444 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.937446 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.937447 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.937448 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.937450 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.937478 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.937481 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.948405 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.948407 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.948408 LLDP, length 82 [|LLDP] 19:03:15.948454 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.948455 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0885 cbdf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.948456 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.948458 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.948459 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.948460 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.948461 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.948462 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.948486 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.948488 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.948491 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.948494 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.956662 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.956663 LLDP, length 82 [|LLDP] 19:03:15.956684 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.956685 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 088c 18ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.956687 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.956688 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.956689 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.956690 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.956691 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.956692 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.956723 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.956725 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.956726 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.956739 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.956741 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.967689 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.967691 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.967692 LLDP, length 82 [|LLDP] 19:03:15.967731 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.967732 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0894 7f13 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.967733 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.967735 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.967736 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.967737 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.967752 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.967754 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.967755 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.967756 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.967769 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.967772 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.978682 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.978684 LLDP, length 82 [|LLDP] 19:03:15.978715 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.978716 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 089c e579 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.978718 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.978719 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.978720 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.978721 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.978722 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.978723 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.978757 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.978759 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.978760 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.978772 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.978774 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.986940 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.986941 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.986942 LLDP, length 82 [|LLDP] 19:03:15.986987 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.986988 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08a3 3246 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.986990 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.986991 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.987003 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.987005 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.987006 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.987007 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.987008 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.987009 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.987024 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.987026 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.997947 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.997949 LLDP, length 82 [|LLDP] 19:03:15.997975 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.997976 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08ab 98ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.997977 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.997978 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.997979 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.997981 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.997982 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.997996 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.997998 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.998000 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.998001 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.998027 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.998029 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.008962 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.008964 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.008965 LLDP, length 82 [|LLDP] 19:03:16.009003 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.009004 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08b3 ff13 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.009006 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.009007 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.009008 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.009009 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.009010 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.009011 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.009036 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.009038 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.009041 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.009043 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.017215 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.017217 LLDP, length 82 [|LLDP] 19:03:16.017242 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.017243 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08ba 4be0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.017244 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.017245 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.017246 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.017261 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.017262 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.017264 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.017265 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.017266 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.017267 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.017295 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.017297 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.028224 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.028225 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.028226 LLDP, length 82 [|LLDP] 19:03:16.028270 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.028270 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08c2 b246 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.028272 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.028273 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.028275 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.028276 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.028277 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.028278 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.028301 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.028303 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.028306 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.028308 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.039239 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.039240 LLDP, length 82 [|LLDP] 19:03:16.039265 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.039266 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08cb 18ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.039267 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.039268 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.039269 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.039270 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.039271 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.039273 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.039305 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.039307 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.039309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.039320 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.039322 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.047499 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.047500 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.047501 LLDP, length 82 [|LLDP] 19:03:16.047540 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.047541 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08d1 657a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.047543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.047544 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.047545 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.047546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.047560 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.047562 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.047563 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.047565 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.047578 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.047581 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.058502 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.058504 LLDP, length 82 [|LLDP] 19:03:16.058530 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.058531 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08d9 cbe7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.058533 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.058534 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.058535 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.058536 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.058537 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.058538 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.058570 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.058573 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.058574 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.058586 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.058588 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.066758 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.066760 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.066761 LLDP, length 82 [|LLDP] 19:03:16.066805 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.066805 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08e0 18ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.066807 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.066809 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.066820 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.066822 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.066823 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.066824 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.066825 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.066827 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.066841 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.066843 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.077774 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.077775 LLDP, length 82 [|LLDP] 19:03:16.077801 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.077802 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08e8 7f14 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.077803 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.077804 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.077805 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.077806 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.077807 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.077824 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.077826 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.077827 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.077828 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.077854 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.077856 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.088782 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.088783 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.088784 LLDP, length 82 [|LLDP] 19:03:16.088832 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.088833 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08f0 e57b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.088835 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.088836 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.088837 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.088838 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.088839 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.088840 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.088864 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.088866 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.088869 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.088871 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.097045 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.097047 LLDP, length 82 [|LLDP] 19:03:16.097067 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.097068 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08f7 3247 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.097069 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.097070 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.097071 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.097086 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.097087 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.097089 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.097090 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.097091 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.097092 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.097121 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.097123 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.108059 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.108061 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.108062 LLDP, length 82 [|LLDP] 19:03:16.108115 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.108116 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08ff 98ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.108118 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.108119 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.108120 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.108122 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.108123 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.108124 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.108150 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.108152 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.108155 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.108157 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.119061 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.119063 LLDP, length 82 [|LLDP] 19:03:16.119090 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.119091 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0907 ff14 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.119093 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.119094 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.119095 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.119096 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.119097 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.119099 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.119132 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.119134 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.119135 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.119147 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.119149 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.127317 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.127319 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.127320 LLDP, length 82 [|LLDP] 19:03:16.127365 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.127366 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 090e 4be1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.127367 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.127368 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.127370 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.127371 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.127385 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.127387 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.127388 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.127389 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.127402 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.127404 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.138327 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.138328 LLDP, length 82 [|LLDP] 19:03:16.138355 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.138356 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0916 b24b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.138357 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.138358 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.138360 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.138361 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.138362 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.138363 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.138396 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.138399 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.138400 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.138412 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.138414 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.146583 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.146585 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.146586 LLDP, length 82 [|LLDP] 19:03:16.146630 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.146632 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 091c ff14 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.146633 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.146634 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.146647 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.146649 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.146650 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.146651 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.146652 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.146653 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.146668 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.146670 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.157596 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.157597 LLDP, length 82 [|LLDP] 19:03:16.157623 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.157624 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0925 657a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.157626 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.157627 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.157628 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.157630 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.157631 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.157647 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.157649 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.157650 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.157651 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.157676 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.157678 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.168608 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.168609 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.168610 LLDP, length 82 [|LLDP] 19:03:16.168648 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.168649 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 092d cbe1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.168651 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.168652 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.168653 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.168654 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.168656 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.168657 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.168680 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.168682 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.168685 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.168687 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.176860 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.176862 LLDP, length 82 [|LLDP] 19:03:16.176888 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.176889 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0934 18ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.176890 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.176891 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.176892 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.176907 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.176909 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.176910 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.176912 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.176913 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.176914 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.176941 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.176943 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.187889 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.187891 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.187899 LLDP, length 82 [|LLDP] 19:03:16.187955 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.187956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 093c 7f14 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.187957 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.187959 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.187960 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.187961 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.187962 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.187963 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.187990 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.187992 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.187996 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.187998 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.198884 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.198886 LLDP, length 82 [|LLDP] 19:03:16.198916 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.198917 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0944 e579 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.198919 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.198920 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.198921 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.198922 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.198923 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.198925 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.198964 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.198966 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.198968 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.198980 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.198982 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.207155 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.207157 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.207158 LLDP, length 82 [|LLDP] 19:03:16.207198 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.207199 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 094b 3247 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.207200 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.207207 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.207208 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.207209 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.207223 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.207225 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.207227 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.207228 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.207242 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.207244 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.218148 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.218150 LLDP, length 82 [|LLDP] 19:03:16.218180 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.218181 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0953 98ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.218183 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.218184 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.218185 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.218186 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.218187 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.218188 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.218225 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.218227 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.218228 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.218240 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.218243 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.229161 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.229162 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.229164 LLDP, length 82 [|LLDP] 19:03:16.229213 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.229213 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 095b ff13 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.229215 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.229216 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.229230 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.229231 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.229233 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.229234 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.229235 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.229236 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.229251 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.229254 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.237412 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.237413 LLDP, length 82 [|LLDP] 19:03:16.237439 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.237440 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0962 4bdf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.237442 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.237442 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.237444 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.237445 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.237446 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.237462 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.237464 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.237465 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.237466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.237492 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.237494 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.248424 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.248425 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.248426 LLDP, length 82 [|LLDP] 19:03:16.248470 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.248471 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 096a b246 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.248472 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.248474 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.248475 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.248476 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.248477 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.248478 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.248503 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.248505 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.248509 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.248511 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.256680 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.256682 LLDP, length 82 [|LLDP] 19:03:16.256707 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.256708 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0970 ff1a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.256709 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.256711 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.256712 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.256727 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.256729 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.256730 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.256731 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.256733 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.256734 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.256762 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.256764 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.267704 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.267705 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.267706 LLDP, length 82 [|LLDP] 19:03:16.267752 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.267753 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0979 6579 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.267754 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.267756 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.267757 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.267758 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.267760 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.267761 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.267794 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.267796 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.267800 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.267802 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.278702 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.278704 LLDP, length 82 [|LLDP] 19:03:16.278732 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.278733 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0981 cbe0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.278735 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.278736 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.278737 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.278738 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.278739 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.278740 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.278775 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.278777 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.278779 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.278790 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.278793 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.286958 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.286959 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.286960 LLDP, length 82 [|LLDP] 19:03:16.287007 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.287008 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0988 18ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.287010 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.287011 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.287013 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.287014 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.287029 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.287030 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.287032 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.287033 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.287046 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.287048 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.297972 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.297974 LLDP, length 82 [|LLDP] 19:03:16.298003 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.298004 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0990 7f13 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.298005 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.298007 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.298008 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.298009 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.298010 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.298011 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.298065 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.298067 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.298069 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.298081 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.298083 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.308988 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.308996 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.308997 LLDP, length 82 [|LLDP] 19:03:16.309041 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.309042 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0998 e581 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.309044 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.309045 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.309058 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.309060 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.309061 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.309063 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.309064 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.309065 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.309080 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.309082 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.318934 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.318935 LLDP, length 82 [|LLDP] 19:03:16.318958 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.318958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 099f 3246 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.318960 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.318961 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.318962 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.318963 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.318964 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.318982 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.318984 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.318985 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.318987 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.319016 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.319018 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.328253 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.328254 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.328255 LLDP, length 82 [|LLDP] 19:03:16.328294 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.328295 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09a7 98ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.328297 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.328298 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.328299 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.328301 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.328302 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.328303 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.328327 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.328329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.328333 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.328335 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.339261 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.339262 LLDP, length 82 [|LLDP] 19:03:16.339289 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.339290 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09af ff14 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.339292 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.339293 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.339294 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.339309 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.339311 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.339313 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.339314 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.339315 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.339316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.339355 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.339358 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.347525 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.347527 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.347527 LLDP, length 82 [|LLDP] 19:03:16.347565 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.347566 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09b6 4be0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.347567 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.347568 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.347570 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.347571 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.347572 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.347573 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.347596 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.347599 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.347603 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.347605 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.358530 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.358532 LLDP, length 82 [|LLDP] 19:03:16.358566 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.358567 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09be b247 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.358568 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.358570 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.358571 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.358572 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.358573 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.358574 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.358616 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.358618 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.358620 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.358632 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.358634 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.366791 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.366800 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.366801 LLDP, length 82 [|LLDP] 19:03:16.366852 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.366853 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09c4 ff14 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.366855 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.366856 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.366857 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.366858 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.366876 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.366878 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.366879 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.366880 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.366894 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.366897 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.377808 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.377810 LLDP, length 82 [|LLDP] 19:03:16.377836 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.377837 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09cd 657a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.377838 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.377839 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.377841 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.377842 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.377843 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.377844 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.377892 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.377894 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.377896 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.377909 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.377911 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.388811 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.388814 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.388815 LLDP, length 82 [|LLDP] 19:03:16.388858 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.388859 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09d5 cbe2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.388861 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.388862 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.388876 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.388878 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.388879 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.388881 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.388882 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.388883 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.388898 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.388900 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.397069 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.397071 LLDP, length 82 [|LLDP] 19:03:16.397102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.397103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09dc 18ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.397104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.397105 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.397107 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.397108 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.397109 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.397127 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.397129 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.397130 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.397131 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.397162 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.397164 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.408072 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.408080 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.408081 LLDP, length 82 [|LLDP] 19:03:16.408119 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.408120 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09e4 7f13 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.408122 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.408123 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.408124 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.408125 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.408127 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.408128 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.408152 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.408154 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.408157 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.408159 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.419087 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.419089 LLDP, length 82 [|LLDP] 19:03:16.419123 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.419124 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09ec e57a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.419126 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.419128 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.419129 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.419146 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.419148 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.419149 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.419150 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.419152 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.419154 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.419186 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.419189 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.427356 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.427364 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.427366 LLDP, length 82 [|LLDP] 19:03:16.427424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.427425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09f3 3246 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.427427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.427428 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.427429 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.427431 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.427432 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.427433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.427472 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.427475 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.427479 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.427481 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.438363 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.438365 LLDP, length 82 [|LLDP] 19:03:16.438388 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.438389 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09fb 98ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.438391 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.438392 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.438393 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.438394 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.438395 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.438396 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.438437 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.438439 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.438440 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.438451 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.438454 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.446615 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.446617 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.446618 LLDP, length 82 [|LLDP] 19:03:16.446663 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.446664 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a01 e579 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.446666 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.446667 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.446668 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.446669 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.446685 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.446687 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.446688 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.446689 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.446703 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.446706 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.457623 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.457631 LLDP, length 82 [|LLDP] 19:03:16.457653 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.457654 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a0a 4be0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.457655 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.457656 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.457657 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.457659 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.457660 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.457661 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.457700 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.457702 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.457703 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.457715 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.457722 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.468625 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.468627 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.468628 LLDP, length 82 [|LLDP] 19:03:16.468679 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.468679 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a12 b246 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.468681 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.468682 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.468695 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.468698 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.468699 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.468700 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.468701 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.468702 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.468717 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.468719 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.476885 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.476887 LLDP, length 82 [|LLDP] 19:03:16.476917 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.476918 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a18 ff13 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.476920 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.476921 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.476922 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.476923 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.476924 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.476942 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.476944 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.476946 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.476947 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.476977 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.476980 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.487914 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.487915 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.487917 LLDP, length 82 [|LLDP] 19:03:16.487966 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.487967 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a21 657a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.487969 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.487970 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.487972 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.487973 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.487974 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.487975 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.488002 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.488004 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.488008 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.488009 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.498907 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.498909 LLDP, length 82 [|LLDP] 19:03:16.498939 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.498939 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a29 cbe0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.498941 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.498942 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.498943 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.498960 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.498962 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.498963 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.498964 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.498966 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.498967 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.498999 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.499001 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.507164 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.507166 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.507167 LLDP, length 82 [|LLDP] 19:03:16.507219 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.507220 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a30 18b4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.507222 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.507223 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.507224 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.507226 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.507227 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.507228 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.507253 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.507255 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.507258 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.507260 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.518171 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.518173 LLDP, length 82 [|LLDP] 19:03:16.518200 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.518201 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a38 7f14 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.518202 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.518203 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.518204 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.518205 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.518207 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.518208 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.518244 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.518246 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.518248 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.518263 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.518265 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.529190 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.529193 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.529194 LLDP, length 82 [|LLDP] 19:03:16.529247 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.529249 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a40 e57a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.529250 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.529252 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.529253 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.529254 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.529271 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.529273 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.529274 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.529275 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.529289 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.529292 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.537439 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.537441 LLDP, length 82 [|LLDP] 19:03:16.537471 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.537471 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a47 3247 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.537473 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.537474 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.537475 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.537476 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.537477 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.537478 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.537514 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.537517 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.537518 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.537530 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.537533 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.548458 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.548460 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.548461 LLDP, length 82 [|LLDP] 19:03:16.548501 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.548502 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a4f 98ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.548504 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.548505 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.548518 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.548520 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.548521 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.548523 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.548524 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.548525 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.548540 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.548542 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.556717 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.556719 LLDP, length 82 [|LLDP] 19:03:16.556739 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.556740 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a55 e57b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.556742 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.556743 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.556744 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.556745 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.556746 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.556764 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.556766 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.556767 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.556768 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.556795 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.556797 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.567738 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.567740 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.567741 LLDP, length 82 [|LLDP] 19:03:16.567793 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.567794 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a5e 4be1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.567796 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.567797 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.567799 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.567800 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.567801 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.567802 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.567826 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.567828 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.567832 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.567834 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.578738 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.578740 LLDP, length 82 [|LLDP] 19:03:16.578759 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.578760 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a66 b247 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.578762 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.578763 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.578764 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.578779 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.578781 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.578782 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.578783 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.578784 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.578786 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.578812 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.578814 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.586995 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.586997 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.586998 LLDP, length 82 [|LLDP] 19:03:16.587043 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.587044 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a6c ff14 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.587046 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.587047 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.587048 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.587049 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.587050 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.587051 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.587076 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.587078 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.587082 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.587084 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.597997 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.597999 LLDP, length 82 [|LLDP] 19:03:16.598031 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.598032 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a75 657a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.598034 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.598035 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.598036 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.598037 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.598038 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.598039 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.598078 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.598080 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.598081 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.598094 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.598096 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.609011 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.609014 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.609014 LLDP, length 82 [|LLDP] 19:03:16.609067 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.609068 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a7d cbe0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.609070 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.609071 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.609072 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.609073 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.609090 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.609091 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.609093 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.609094 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.609108 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.609110 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.617268 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.617270 LLDP, length 82 [|LLDP] 19:03:16.617300 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.617301 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a84 18ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.617303 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.617304 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.617305 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.617306 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.617308 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.617309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.617352 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.617355 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.617356 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.617368 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.617370 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.628269 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.628271 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.628278 LLDP, length 82 [|LLDP] 19:03:16.628320 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.628321 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a8c 7f14 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.628323 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.628324 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.628338 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.628340 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.628341 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.628343 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.628344 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.628345 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.628360 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.628362 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.636528 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.636530 LLDP, length 82 [|LLDP] 19:03:16.636555 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.636556 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a92 cbe0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.636558 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.636559 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.636560 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.636561 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.636562 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.636578 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.636580 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.636581 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.636583 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.636610 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.636612 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.647554 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.647556 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.647557 LLDP, length 82 [|LLDP] 19:03:16.647608 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.647609 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a9b 3246 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.647611 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.647612 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.647614 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.647615 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.647616 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.647617 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.647644 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.647660 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.647665 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.647667 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.658558 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.658560 LLDP, length 82 [|LLDP] 19:03:16.658583 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.658584 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0aa3 98ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.658586 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.658587 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.658592 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.658611 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.658613 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.658615 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.658616 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.658618 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.658619 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.658651 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.658653 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.666822 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.666831 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.666832 LLDP, length 82 [|LLDP] 19:03:16.666886 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.666888 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0aa9 e579 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.666889 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.666891 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.666892 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.666893 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.666894 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.666896 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.666924 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.666927 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.666931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.666933 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.677824 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.677826 LLDP, length 82 [|LLDP] 19:03:16.677861 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.677862 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ab2 4be0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.677864 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.677865 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.677866 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.677867 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.677868 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.677870 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.677913 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.677915 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.677916 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.677928 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.677930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.688834 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.688837 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.688845 LLDP, length 82 [|LLDP] 19:03:16.688894 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.688895 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0aba b246 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.688897 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.688898 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.688899 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.688901 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.688917 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.688919 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.688920 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.688922 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.688935 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.688938 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.697094 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.697103 LLDP, length 82 [|LLDP] 19:03:16.697130 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.697131 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ac0 ff13 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.697133 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.697134 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.697135 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.697136 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.697137 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.697138 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.697187 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.697189 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.697191 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.697203 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.697205 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.708115 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.708117 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.708118 LLDP, length 82 [|LLDP] 19:03:16.708169 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.708169 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ac9 6579 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.708171 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.708172 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.708187 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.708189 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.708190 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.708191 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.708192 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.708193 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.708210 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.708212 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.719127 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.719129 LLDP, length 82 [|LLDP] 19:03:16.719155 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.719156 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ad1 cbdf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.719158 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.719159 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.719161 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.719162 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.719163 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.719184 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.719186 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.719187 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.719189 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.719223 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.719225 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.727363 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.727365 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.727366 LLDP, length 82 [|LLDP] 19:03:16.727418 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.727419 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ad8 18ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.727421 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.727422 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.727423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.727424 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.727426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.727427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.727451 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.727454 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.727457 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.727459 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.738374 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.738400 LLDP, length 82 [|LLDP] 19:03:16.738428 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.738429 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ae0 7f13 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.738431 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.738432 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.738434 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.738452 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.738454 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.738455 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.738457 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.738458 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.738460 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.738510 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.738512 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.746670 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.746672 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.746674 LLDP, length 82 [|LLDP] 19:03:16.746729 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.746730 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ae6 cbe0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.746732 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.746733 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.746734 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.746736 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.746738 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.746739 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.746777 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.746780 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.746784 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.746787 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.757653 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.757655 LLDP, length 82 [|LLDP] 19:03:16.757684 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.757685 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0aef 324e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.757687 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.757688 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.757689 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.757690 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.757692 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.757693 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.757736 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.757739 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.757740 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.757753 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.757755 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.768649 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.768651 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.768652 LLDP, length 82 [|LLDP] 19:03:16.768697 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.768698 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0af7 98ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.768700 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.768701 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.768702 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.768703 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.768718 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.768721 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.768722 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.768723 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.768736 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.768738 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.776906 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.776908 LLDP, length 82 [|LLDP] 19:03:16.776932 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.776933 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0afd e57a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.776935 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.776936 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.776937 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.776938 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.776939 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.776940 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.776977 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.776979 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.776980 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.776993 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.776995 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.787916 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.787918 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.787919 LLDP, length 82 [|LLDP] 19:03:16.787962 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.787963 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b06 4be0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.787965 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.787966 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.787978 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.787980 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.787981 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.787983 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.787984 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.787985 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.788004 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.788006 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.798937 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.798939 LLDP, length 82 [|LLDP] 19:03:16.798969 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.798970 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b0e b247 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.798971 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.798973 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.798974 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.798976 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.798977 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.798997 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.798999 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.799000 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.799002 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.799038 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.799040 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.807185 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.807187 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.807195 LLDP, length 82 [|LLDP] 19:03:16.807240 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.807241 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b14 ff14 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.807243 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.807244 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.807246 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.807247 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.807248 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.807249 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.807274 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.807276 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.807279 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.807282 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.818195 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.818198 LLDP, length 82 [|LLDP] 19:03:16.818226 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.818227 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b1d 657b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.818228 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.818229 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.818231 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.818246 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.818248 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.818249 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.818251 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.818252 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.818253 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.818284 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.818286 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.829221 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.829223 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.829224 LLDP, length 82 [|LLDP] 19:03:16.829260 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.829261 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b25 cbe1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.829263 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.829264 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.829265 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.829266 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.829268 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.829269 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.829294 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.829297 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.829300 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.829302 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.837457 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.837459 LLDP, length 82 [|LLDP] 19:03:16.837483 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.837484 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b2c 18ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.837485 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.837486 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.837488 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.837489 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.837490 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.837491 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.837522 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.837525 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.837526 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.837537 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.837539 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.848474 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.848476 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.848477 LLDP, length 82 [|LLDP] 19:03:16.848525 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.848526 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b34 7f14 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.848527 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.848529 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.848530 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.848531 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.848546 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.848548 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.848549 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.848550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.848564 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.848566 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.856724 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.856726 LLDP, length 82 [|LLDP] 19:03:16.856751 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.856752 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b3a cbe1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.856754 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.856755 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.856757 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.856758 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.856759 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.856760 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.856792 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.856794 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.856796 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.856807 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.856810 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.867730 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.867732 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.867733 LLDP, length 82 [|LLDP] 19:03:16.867772 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.867773 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b43 3247 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.867774 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.867775 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.867787 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.867789 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.867790 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.867791 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.867793 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.867794 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.867808 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.867810 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.878738 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.878739 LLDP, length 82 [|LLDP] 19:03:16.878761 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.878762 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b4b 98ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.878763 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.878765 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.878766 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.878767 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.878768 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.878783 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.878784 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.878785 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.878787 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.878810 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.878812 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.886996 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.886998 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.886999 LLDP, length 82 [|LLDP] 19:03:16.887037 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.887038 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b51 e57a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.887039 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.887040 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.887041 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.887043 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.887044 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.887045 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.887067 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.887069 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.887072 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.887075 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.898005 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.898007 LLDP, length 82 [|LLDP] 19:03:16.898030 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.898031 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b5a 4be0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.898033 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.898034 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.898035 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.898049 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.898051 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.898052 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.898053 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.898054 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.898055 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.898080 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.898082 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.909017 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.909018 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.909019 LLDP, length 82 [|LLDP] 19:03:16.909055 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.909056 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b62 b247 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.909058 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.909059 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.909060 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.909061 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.909063 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.909064 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.909085 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.909087 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.909091 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.909092 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.917273 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.917274 LLDP, length 82 [|LLDP] 19:03:16.917296 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.917297 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b68 ff13 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.917299 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.917300 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.917301 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.917303 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.917304 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.917305 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.917333 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.917335 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.917336 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.917347 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.917350 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.928284 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.928286 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.928286 LLDP, length 82 [|LLDP] 19:03:16.928326 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.928327 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b71 6579 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.928328 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.928330 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.928331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.928332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.928345 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.928347 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.928349 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.928350 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.928362 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.928365 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.936545 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.936546 LLDP, length 82 [|LLDP] 19:03:16.936569 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.936570 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b77 b247 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.936572 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.936573 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.936574 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.936575 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.936577 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.936578 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.936609 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.936612 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.936613 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.936624 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.936626 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.947550 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.947552 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.947553 LLDP, length 82 [|LLDP] 19:03:16.947589 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.947590 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b80 18ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.947591 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.947592 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.947603 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.947605 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.947606 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.947607 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.947609 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.947610 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.947624 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.947626 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.958564 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.958565 LLDP, length 82 [|LLDP] 19:03:16.958589 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.958590 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b88 7f13 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.958591 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.958593 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.958594 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.958595 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.958596 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.958612 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.958613 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.958615 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.958616 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.958641 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.958643 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.966819 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.966821 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.966822 LLDP, length 82 [|LLDP] 19:03:16.966861 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.966862 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b8e cbdf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.966863 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.966865 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.966866 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.966867 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.966868 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.966870 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.966892 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.966894 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.966897 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.966899 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.977828 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.977830 LLDP, length 82 [|LLDP] 19:03:16.977851 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.977852 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b97 3246 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.977853 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.977855 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.977856 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.977869 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.977871 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.977872 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.977873 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.977874 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.977875 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.977899 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.977901 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.988838 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.988840 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.988841 LLDP, length 82 [|LLDP] 19:03:16.988876 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.988877 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b9f 98ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.988879 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.988880 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.988881 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.988882 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.988884 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.988885 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.988907 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.988909 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.988912 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.988914 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.997105 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.997106 LLDP, length 82 [|LLDP] 19:03:16.997122 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.997123 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ba5 e579 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.997124 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.997126 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.997127 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.997128 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.997129 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.997130 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.997157 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.997159 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.997161 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.997171 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.997173 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.008117 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.008119 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.008120 LLDP, length 82 [|LLDP] 19:03:17.008148 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.008149 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bae 4be7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.008151 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.008152 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.008153 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.008154 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.008167 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.008170 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.008171 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.008172 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.008184 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.008186 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.019117 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.019119 LLDP, length 82 [|LLDP] 19:03:17.019139 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.019140 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bb6 b246 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.019142 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.019143 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.019144 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.019146 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.019147 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.019148 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.019175 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.019177 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.019178 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.019198 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.019200 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.027451 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.027454 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.027455 LLDP, length 82 [|LLDP] 19:03:17.027560 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.027561 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bbc ff14 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.027563 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.027564 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.027595 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.027598 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.027599 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.027601 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.027602 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.027604 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.027623 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.027625 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.038465 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.038468 LLDP, length 82 [|LLDP] 19:03:17.038519 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.038520 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bc5 657a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.038522 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.038523 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.038525 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.038526 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.038528 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.038570 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.038573 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.038575 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.038576 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.038646 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.038649 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.046711 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.046714 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.046715 LLDP, length 82 [|LLDP] 19:03:17.046813 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.046814 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bcb b24a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.046816 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.046817 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.046818 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.046820 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.046821 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.046823 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.046865 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.046867 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.046872 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.046875 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.057723 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.057726 LLDP, length 82 [|LLDP] 19:03:17.057778 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.057779 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bd4 18ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.057781 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.057782 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.057784 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.057828 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.057832 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.057833 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.057834 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.057835 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.057836 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.057907 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.057911 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.068746 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.068749 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.068750 LLDP, length 82 [|LLDP] 19:03:17.068855 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.068856 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bdc 7f14 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.068858 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.068859 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.068861 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.068862 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.068863 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.068865 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.068908 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.068910 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.068915 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.068917 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.076987 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.076991 LLDP, length 82 [|LLDP] 19:03:17.077041 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.077042 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0be2 cbe1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.077044 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.077046 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.077047 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.077048 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.077049 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.077051 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.077147 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.077150 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.077151 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.077165 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.077168 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.088007 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.088010 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.088011 LLDP, length 82 [|LLDP] 19:03:17.088109 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.088110 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0beb 3247 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.088111 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.088113 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.088114 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.088116 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.088145 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.088148 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.088149 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.088151 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.088167 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.088170 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.099011 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.099014 LLDP, length 82 [|LLDP] 19:03:17.099063 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.099064 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bf3 98ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.099066 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.099068 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.099069 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.099070 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.099071 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.099073 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.099165 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.099168 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.099169 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.099184 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.099187 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.107204 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.107205 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.107206 LLDP, length 82 [|LLDP] 19:03:17.107248 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.107249 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bf9 e57a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.107251 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.107252 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.107265 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.107267 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.107268 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.107270 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.107271 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.107272 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.107287 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.107289 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.118210 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.118211 LLDP, length 82 [|LLDP] 19:03:17.118235 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.118235 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c02 4c02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.118237 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.118238 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.118239 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.118241 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.118242 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.118257 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.118259 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.118260 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.118261 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.118286 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.118288 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.129219 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.129220 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.129221 LLDP, length 82 [|LLDP] 19:03:17.129257 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.129258 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c0a b268 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.129260 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.129261 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.129262 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.129263 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.129265 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.129266 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.129289 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.129291 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.129294 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.129296 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.137477 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.137478 LLDP, length 82 [|LLDP] 19:03:17.137504 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.137504 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c10 ff35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.137506 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.137507 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.137509 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.137522 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.137524 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.137525 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.137526 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.137527 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.137529 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.137555 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.137558 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.148487 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.148488 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.148489 LLDP, length 82 [|LLDP] 19:03:17.148528 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.148529 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c19 659b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.148530 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.148531 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.148532 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.148534 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.148535 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.148536 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.148559 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.148561 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.148564 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.148566 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.156741 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.156742 LLDP, length 82 [|LLDP] 19:03:17.156765 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.156766 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c1f b268 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.156768 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.156769 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.156770 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.156772 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.156773 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.156774 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.156802 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.156804 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.156806 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.156817 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.156819 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.167752 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.167753 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.167754 LLDP, length 82 [|LLDP] 19:03:17.167791 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.167792 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c28 18cf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.167794 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.167795 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.167796 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.167798 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.167812 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.167813 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.167815 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.167816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.167828 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.167830 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.178762 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.178763 LLDP, length 82 [|LLDP] 19:03:17.178785 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.178786 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c30 7f35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.178787 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.178789 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.178790 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.178791 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.178792 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.178794 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.178820 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.178823 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.178824 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.178835 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.178837 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.187020 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.187021 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.187022 LLDP, length 82 [|LLDP] 19:03:17.187059 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.187060 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c36 cc01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.187062 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.187063 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.187073 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.187075 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.187077 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.187078 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.187079 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.187080 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.187094 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.187097 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.198029 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.198030 LLDP, length 82 [|LLDP] 19:03:17.198051 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.198052 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c3f 3267 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.198053 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.198055 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.198056 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.198057 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.198058 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.198073 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.198075 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.198076 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.198077 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.198099 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.198101 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.209038 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.209040 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.209040 LLDP, length 82 [|LLDP] 19:03:17.209075 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.209076 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c47 98ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.209078 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.209079 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.209080 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.209081 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.209083 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.209084 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.209106 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.209108 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.209111 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.209114 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.217295 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.217297 LLDP, length 82 [|LLDP] 19:03:17.217318 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.217319 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c4d e5a2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.217320 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.217321 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.217323 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.217336 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.217338 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.217339 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.217340 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.217341 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.217342 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.217367 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.217369 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.228305 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.228307 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.228308 LLDP, length 82 [|LLDP] 19:03:17.228342 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.228343 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c56 4c02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.228345 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.228346 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.228347 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.228348 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.228349 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.228351 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.228373 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.228375 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.228379 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.228380 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.236562 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.236564 LLDP, length 82 [|LLDP] 19:03:17.236584 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.236584 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c5c 98cf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.236586 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.236587 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.236589 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.236590 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.236591 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.236592 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.236618 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.236620 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.236621 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.236632 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.236634 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.247574 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.247576 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.247577 LLDP, length 82 [|LLDP] 19:03:17.247615 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.247617 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c64 ff35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.247618 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.247619 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.247620 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.247622 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.247635 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.247637 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.247638 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.247639 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.247665 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.247667 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.258589 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.258591 LLDP, length 82 [|LLDP] 19:03:17.258616 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.258617 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c6d 659c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.258619 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.258620 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.258621 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.258623 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.258624 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.258625 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.258660 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.258662 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.258664 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.258675 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.258685 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.266848 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.266850 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.266851 LLDP, length 82 [|LLDP] 19:03:17.266896 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.266897 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c73 b269 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.266899 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.266900 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.266913 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.266916 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.266917 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.266919 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.266920 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.266921 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.266935 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.266937 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.277860 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.277862 LLDP, length 82 [|LLDP] 19:03:17.277888 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.277889 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c7c 18cf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.277891 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.277892 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.277893 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.277895 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.277896 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.277913 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.277915 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.277916 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.277917 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.277946 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.277948 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.288868 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.288870 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.288871 LLDP, length 82 [|LLDP] 19:03:17.288908 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.288909 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c84 7f35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.288911 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.288912 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.288913 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.288914 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.288916 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.288917 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.288954 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.288956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.288959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.288962 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.297143 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.297145 LLDP, length 82 [|LLDP] 19:03:17.297172 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.297173 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c8a cc06 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.297174 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.297175 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.297177 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.297196 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.297198 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.297199 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.297200 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.297202 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.297203 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.297238 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.297240 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.308139 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.308141 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.308142 LLDP, length 82 [|LLDP] 19:03:17.308186 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.308187 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c93 3269 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.308189 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.308190 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.308191 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.308193 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.308194 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.308196 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.308229 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.308231 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.308234 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.308237 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.319147 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.319149 LLDP, length 82 [|LLDP] 19:03:17.319175 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.319176 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c9b 98ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.319178 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.319179 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.319181 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.319182 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.319183 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.319184 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.319219 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.319221 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.319222 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.319235 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.319237 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.327402 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.327403 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.327404 LLDP, length 82 [|LLDP] 19:03:17.327448 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.327449 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ca1 e59b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.327451 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.327452 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.327453 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.327454 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.327468 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.327471 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.327472 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.327473 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.327486 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.327489 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.338420 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.338422 LLDP, length 82 [|LLDP] 19:03:17.338445 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.338446 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0caa 4c02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.338447 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.338449 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.338450 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.338451 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.338453 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.338454 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.338492 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.338495 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.338496 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.338508 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.338511 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.346667 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.346668 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.346670 LLDP, length 82 [|LLDP] 19:03:17.346710 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.346712 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cb0 98cf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.346713 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.346714 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.346727 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.346729 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.346730 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.346731 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.346732 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.346733 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.346747 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.346749 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.357675 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.357677 LLDP, length 82 [|LLDP] 19:03:17.357700 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.357702 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cb8 ff35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.357703 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.357704 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.357705 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.357707 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.357708 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.357723 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.357725 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.357726 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.357727 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.357751 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.357754 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.368687 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.368688 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.368689 LLDP, length 82 [|LLDP] 19:03:17.368725 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.368726 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cc1 659b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.368728 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.368729 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.368730 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.368731 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.368732 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.368733 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.368756 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.368758 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.368761 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.368763 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.376940 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.376942 LLDP, length 82 [|LLDP] 19:03:17.376963 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.376964 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cc7 b268 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.376965 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.376967 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.376968 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.376981 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.376982 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.376983 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.376985 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.376986 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.376987 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.377013 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.377016 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.387968 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.387969 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.387970 LLDP, length 82 [|LLDP] 19:03:17.388017 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.388018 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cd0 18ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.388020 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.388021 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.388023 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.388024 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.388025 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.388026 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.388052 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.388054 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.388058 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.388060 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.398969 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.398971 LLDP, length 82 [|LLDP] 19:03:17.398998 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.398999 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cd8 7f34 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.399001 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.399002 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.399003 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.399004 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.399006 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.399007 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.399041 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.399043 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.399045 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.399057 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.399059 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.407227 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.407228 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.407229 LLDP, length 82 [|LLDP] 19:03:17.407270 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.407271 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cde cc01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.407273 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.407274 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.407275 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.407277 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.407296 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.407298 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.407299 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.407300 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.407314 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.407316 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.418233 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.418235 LLDP, length 82 [|LLDP] 19:03:17.418260 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.418261 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ce7 3268 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.418263 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.418264 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.418265 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.418266 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.418267 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.418268 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.418299 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.418301 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.418302 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.418314 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.418316 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.426500 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.426501 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.426503 LLDP, length 82 [|LLDP] 19:03:17.426533 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.426534 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ced 7f34 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.426536 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.426537 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.426549 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.426551 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.426552 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.426554 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.426555 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.426556 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.426570 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.426572 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.437496 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.437498 LLDP, length 82 [|LLDP] 19:03:17.437519 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.437520 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cf5 e59a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.437522 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.437523 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.437524 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.437526 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.437527 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.437541 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.437543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.437544 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.437546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.437569 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.437571 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.448525 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.448526 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.448527 LLDP, length 82 [|LLDP] 19:03:17.448558 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.448559 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cfe 4c01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.448560 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.448562 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.448563 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.448564 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.448566 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.448567 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.448589 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.448591 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.448594 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.448596 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.456764 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.456766 LLDP, length 82 [|LLDP] 19:03:17.456789 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.456790 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d04 98cf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.456792 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.456793 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.456794 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.456807 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.456809 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.456810 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.456811 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.456812 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.456814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.456838 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.456841 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.467775 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.467777 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.467778 LLDP, length 82 [|LLDP] 19:03:17.467816 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.467817 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d0c ff3b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.467818 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.467819 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.467820 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.467822 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.467823 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.467824 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.467848 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.467850 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.467853 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.467855 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.478784 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.478786 LLDP, length 82 [|LLDP] 19:03:17.478808 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.478809 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d15 659b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.478811 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.478812 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.478814 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.478815 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.478816 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.478817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.478845 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.478847 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.478849 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.478860 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.478862 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.487042 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.487044 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.487045 LLDP, length 82 [|LLDP] 19:03:17.487082 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.487083 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d1b b268 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.487084 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.487085 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.487086 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.487088 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.487102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.487103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.487104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.487106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.487118 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.487120 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.498061 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.498062 LLDP, length 82 [|LLDP] 19:03:17.498078 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.498078 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d24 18cf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.498080 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.498081 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.498082 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.498084 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.498085 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.498086 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.498113 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.498115 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.498117 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.498128 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.498130 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.509062 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.509063 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.509064 LLDP, length 82 [|LLDP] 19:03:17.509099 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.509100 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d2c 7f35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.509102 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.509103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.509113 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.509115 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.509117 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.509118 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.509119 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.509120 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.509135 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.509137 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.517319 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.517320 LLDP, length 82 [|LLDP] 19:03:17.517342 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.517343 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d32 cc02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.517344 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.517345 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.517346 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.517347 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.517349 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.517363 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.517365 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.517366 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.517367 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.517390 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.517392 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.528327 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.528328 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.528329 LLDP, length 82 [|LLDP] 19:03:17.528364 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.528365 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d3b 3269 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.528367 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.528368 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.528369 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.528370 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.528372 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.528373 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.528395 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.528397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.528400 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.528402 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.536582 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.536584 LLDP, length 82 [|LLDP] 19:03:17.536605 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.536606 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d41 7f36 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.536608 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.536609 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.536610 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.536623 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.536625 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.536626 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.536627 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.536628 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.536629 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.536653 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.536655 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.547595 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.547597 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.547598 LLDP, length 82 [|LLDP] 19:03:17.547633 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.547634 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d49 e59d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.547636 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.547637 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.547638 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.547640 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.547642 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.547643 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.547677 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.547679 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.547682 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.547685 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.558613 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.558614 LLDP, length 82 [|LLDP] 19:03:17.558631 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.558632 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d52 4c03 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.558633 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.558635 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.558636 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.558637 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.558639 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.558640 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.558670 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.558672 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.558674 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.558685 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.558687 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.566865 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.566866 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.566867 LLDP, length 82 [|LLDP] 19:03:17.566904 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.566905 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d58 98cf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.566906 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.566907 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.566908 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.566910 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.566924 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.566926 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.566927 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.566928 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.566941 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.566943 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.577872 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.577874 LLDP, length 82 [|LLDP] 19:03:17.577896 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.577897 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d60 ff35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.577898 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.577899 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.577901 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.577902 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.577903 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.577904 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.577934 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.577937 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.577938 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.577949 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.577952 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.588881 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.588883 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.588884 LLDP, length 82 [|LLDP] 19:03:17.588920 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.588921 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d69 659c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.588923 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.588924 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.588935 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.588937 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.588938 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.588940 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.588941 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.588942 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.588956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.588959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.597141 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.597142 LLDP, length 82 [|LLDP] 19:03:17.597164 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.597165 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d6f b269 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.597179 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.597181 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.597183 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.597184 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.597185 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.597202 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.597205 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.597206 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.597208 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.597234 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.597237 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.608196 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.608205 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.608206 LLDP, length 82 [|LLDP] 19:03:17.608260 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.608261 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d78 18cf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.608263 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.608265 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.608266 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.608268 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.608269 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.608270 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.608308 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.608310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.608315 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.608317 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.619173 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.619175 LLDP, length 82 [|LLDP] 19:03:17.619193 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.619194 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d80 7f35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.619196 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.619197 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.619198 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.619214 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.619216 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.619218 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.619219 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.619220 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.619222 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.619251 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.619254 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.627420 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.627421 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.627422 LLDP, length 82 [|LLDP] 19:03:17.627458 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.627459 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d86 cc02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.627461 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.627462 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.627463 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.627464 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.627466 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.627467 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.627489 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.627491 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.627494 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.627497 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.638430 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.638431 LLDP, length 82 [|LLDP] 19:03:17.638453 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.638454 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d8f 3268 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.638456 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.638457 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.638458 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.638459 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.638460 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.638461 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.638491 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.638493 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.638494 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.638506 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.638508 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.646686 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.646687 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.646688 LLDP, length 82 [|LLDP] 19:03:17.646725 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.646726 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d95 7f35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.646727 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.646729 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.646730 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.646731 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.646744 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.646746 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.646748 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.646748 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.646762 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.646764 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.657697 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.657698 LLDP, length 82 [|LLDP] 19:03:17.657721 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.657722 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d9d e59b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.657723 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.657724 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.657726 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.657727 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.657728 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.657729 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.657759 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.657761 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.657762 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.657774 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.657776 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.668718 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.668720 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.668721 LLDP, length 82 [|LLDP] 19:03:17.668767 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.668768 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0da6 4c01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.668770 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.668771 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.668784 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.668786 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.668788 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.668789 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.668790 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.668791 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.668807 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.668810 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.676966 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.676968 LLDP, length 82 [|LLDP] 19:03:17.676991 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.676992 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dac 98ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.676993 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.676995 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.676996 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.676997 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.676998 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.677014 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.677015 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.677017 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.677018 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.677043 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.677045 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.687974 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.687976 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.687977 LLDP, length 82 [|LLDP] 19:03:17.688015 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.688017 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0db4 ff34 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.688018 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.688019 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.688021 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.688022 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.688023 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.688025 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.688047 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.688049 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.688053 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.688054 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.698984 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.698985 LLDP, length 82 [|LLDP] 19:03:17.699009 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.699010 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dbd 659b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.699011 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.699012 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.699013 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.699027 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.699028 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.699029 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.699031 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.699032 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.699033 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.699060 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.699062 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.707239 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.707241 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.707242 LLDP, length 82 [|LLDP] 19:03:17.707278 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.707279 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dc3 b268 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.707281 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.707282 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.707283 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.707284 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.707285 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.707287 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.707310 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.707311 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.707315 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.707317 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.718250 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.718251 LLDP, length 82 [|LLDP] 19:03:17.718273 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.718274 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dcc 18d4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.718276 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.718277 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.718278 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.718279 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.718280 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.718282 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.718311 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.718313 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.718314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.718325 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.718327 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.726509 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.726511 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.726511 LLDP, length 82 [|LLDP] 19:03:17.726548 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.726549 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dd2 659b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.726551 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.726552 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.726554 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.726555 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.726569 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.726571 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.726573 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.726574 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.726587 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.726589 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.737521 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.737522 LLDP, length 82 [|LLDP] 19:03:17.737545 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.737546 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dda cc02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.737548 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.737549 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.737550 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.737552 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.737553 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.737554 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.737583 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.737585 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.737586 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.737598 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.737600 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.748530 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.748531 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.748533 LLDP, length 82 [|LLDP] 19:03:17.748569 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.748570 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0de3 3268 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.748572 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.748573 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.748586 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.748588 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.748589 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.748591 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.748592 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.748593 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.748608 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.748610 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.756783 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.756785 LLDP, length 82 [|LLDP] 19:03:17.756808 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.756809 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0de9 7f35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.756810 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.756812 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.756813 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.756814 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.756815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.756830 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.756831 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.756833 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.756834 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.756857 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.756859 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.767797 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.767799 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.767800 LLDP, length 82 [|LLDP] 19:03:17.767837 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.767838 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0df1 e59c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.767840 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.767841 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.767842 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.767843 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.767845 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.767846 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.767869 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.767871 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.767874 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.767877 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.778806 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.778808 LLDP, length 82 [|LLDP] 19:03:17.778830 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.778831 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dfa 4c02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.778833 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.778834 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.778835 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.778848 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.778850 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.778852 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.778853 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.778854 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.778856 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.778880 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.778882 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.787074 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.787075 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.787076 LLDP, length 82 [|LLDP] 19:03:17.787107 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.787109 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e00 98cf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.787110 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.787111 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.787113 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.787114 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.787115 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.787117 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.787140 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.787142 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.787145 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.787148 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.798093 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.798095 LLDP, length 82 [|LLDP] 19:03:17.798118 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.798119 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e08 ff35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.798121 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.798122 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.798123 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.798124 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.798125 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.798126 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.798164 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.798166 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.798168 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.798180 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.798182 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.809088 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.809090 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.809091 LLDP, length 82 [|LLDP] 19:03:17.809132 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.809133 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e11 659c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.809135 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.809136 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.809137 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.809139 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.809154 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.809156 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.809157 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.809158 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.809172 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.809174 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.817339 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.817340 LLDP, length 82 [|LLDP] 19:03:17.817363 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.817364 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e17 b268 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.817366 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.817367 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.817368 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.817369 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.817370 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.817371 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.817401 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.817403 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.817404 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.817416 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.817418 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.828350 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.828351 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.828352 LLDP, length 82 [|LLDP] 19:03:17.828391 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.828392 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e20 18cf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.828394 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.828395 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.828406 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.828407 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.828409 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.828410 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.828411 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.828412 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.828426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.828429 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.836606 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.836608 LLDP, length 82 [|LLDP] 19:03:17.836630 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.836631 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e26 659b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.836632 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.836633 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.836635 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.836636 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.836637 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.836651 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.836653 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.836654 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.836655 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.836678 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.836680 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.847628 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.847629 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.847630 LLDP, length 82 [|LLDP] 19:03:17.847685 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.847686 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e2e cc02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.847688 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.847689 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.847691 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.847692 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.847693 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.847694 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.847719 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.847721 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.847724 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.847727 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.858642 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.858644 LLDP, length 82 [|LLDP] 19:03:17.858665 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.858666 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e37 3268 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.858667 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.858669 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.858670 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.858685 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.858687 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.858689 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.858690 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.858691 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.858693 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.858721 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.858723 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.866885 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.866887 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.866888 LLDP, length 82 [|LLDP] 19:03:17.866929 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.866930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e3d 7f35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.866932 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.866933 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.866934 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.866935 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.866936 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.866938 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.866961 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.866963 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.866966 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.866969 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.877895 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.877897 LLDP, length 82 [|LLDP] 19:03:17.877920 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.877921 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e45 e59b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.877923 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.877924 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.877925 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.877926 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.877927 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.877928 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.877960 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.877962 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.877963 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.877975 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.877977 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.888908 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.888910 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.888911 LLDP, length 82 [|LLDP] 19:03:17.888951 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.888952 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e4e 4c01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.888954 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.888955 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.888956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.888958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.888972 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.888974 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.888975 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.888977 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.888989 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.888992 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.897161 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.897163 LLDP, length 82 [|LLDP] 19:03:17.897184 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.897186 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e54 98cf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.897187 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.897188 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.897190 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.897191 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.897192 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.897193 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.897221 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.897223 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.897225 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.897236 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.897238 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.908173 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.908174 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.908175 LLDP, length 82 [|LLDP] 19:03:17.908214 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.908215 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e5c ff35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.908217 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.908218 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.908229 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.908231 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.908233 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.908234 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.908235 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.908236 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.908251 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.908253 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.916427 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.916429 LLDP, length 82 [|LLDP] 19:03:17.916452 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.916453 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e63 4c09 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.916454 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.916456 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.916457 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.916458 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.916459 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.916474 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.916476 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.916477 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.916478 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.916502 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.916505 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.927449 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.927450 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.927451 LLDP, length 82 [|LLDP] 19:03:17.927482 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.927483 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e6b b268 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.927485 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.927486 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.927487 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.927488 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.927489 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.927491 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.927513 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.927514 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.927517 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.927520 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.938448 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.938449 LLDP, length 82 [|LLDP] 19:03:17.938471 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.938472 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e74 18cf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.938474 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.938475 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.938477 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.938491 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.938493 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.938494 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.938496 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.938497 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.938498 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.938523 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.938526 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.946705 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.946706 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.946708 LLDP, length 82 [|LLDP] 19:03:17.946744 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.946744 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e7a 659b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.946746 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.946747 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.946748 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.946749 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.946751 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.946752 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.946775 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.946776 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.946779 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.946782 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.957716 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.957718 LLDP, length 82 [|LLDP] 19:03:17.957740 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.957740 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e82 cc02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.957742 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.957743 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.957744 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.957745 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.957747 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.957748 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.957775 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.957777 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.957778 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.957790 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.957792 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.968729 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.968730 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.968731 LLDP, length 82 [|LLDP] 19:03:17.968771 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.968772 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e8b 326f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.968773 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.968774 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.968776 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.968777 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.968790 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.968792 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.968793 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.968795 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.968807 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.968809 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.976986 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.976988 LLDP, length 82 [|LLDP] 19:03:17.977011 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.977012 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e91 7f36 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.977013 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.977014 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.977016 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.977017 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.977018 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.977019 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.977048 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.977050 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.977051 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.977063 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.977065 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.987997 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.987999 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.988000 LLDP, length 82 [|LLDP] 19:03:17.988038 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.988039 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e99 e59c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.988040 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.988042 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.988053 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.988054 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.988056 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.988057 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.988058 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.988059 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.988073 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.988076 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.999012 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.999013 LLDP, length 82 [|LLDP] 19:03:17.999042 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.999043 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ea2 4c02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.999044 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.999045 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.999047 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.999048 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.999049 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.999066 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.999068 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.999069 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.999071 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.999099 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.999101 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.007269 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.007271 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.007272 LLDP, length 82 [|LLDP] 19:03:18.007316 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.007318 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ea8 98cf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.007319 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.007320 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.007321 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.007323 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.007324 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.007325 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.007348 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.007350 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.007354 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.007356 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.018290 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.018292 LLDP, length 82 [|LLDP] 19:03:18.018313 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.018314 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0eb0 ff36 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.018315 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.018316 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.018317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.018332 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.018334 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.018336 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.018337 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.018338 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.018339 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.018369 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.018372 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.026540 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.026542 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.026543 LLDP, length 82 [|LLDP] 19:03:18.026581 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.026582 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0eb7 4c02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.026584 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.026585 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.026586 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.026587 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.026588 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.026590 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.026614 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.026616 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.026620 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.026622 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.037544 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.037545 LLDP, length 82 [|LLDP] 19:03:18.037570 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.037571 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ebf b269 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.037572 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.037573 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.037575 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.037576 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.037577 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.037578 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.037608 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.037611 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.037612 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.037624 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.037626 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.048561 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.048563 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.048564 LLDP, length 82 [|LLDP] 19:03:18.048601 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.048601 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ec8 18ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.048603 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.048604 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.048606 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.048607 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.048620 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.048623 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.048624 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.048625 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.048637 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.048639 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.056810 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.056812 LLDP, length 82 [|LLDP] 19:03:18.056837 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.056838 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ece 659b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.056840 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.056841 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.056842 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.056843 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.056844 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.056846 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.056876 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.056878 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.056880 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.056891 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.056893 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.067820 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.067822 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.067823 LLDP, length 82 [|LLDP] 19:03:18.067865 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.067866 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ed6 cc02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.067867 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.067868 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.067880 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.067882 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.067884 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.067885 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.067886 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.067887 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.067901 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.067904 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.078839 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.078841 LLDP, length 82 [|LLDP] 19:03:18.078862 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.078862 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0edf 3268 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.078864 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.078865 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.078866 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.078867 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.078868 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.078885 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.078887 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.078888 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.078889 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.078915 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.078917 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.087091 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.087093 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.087094 LLDP, length 82 [|LLDP] 19:03:18.087136 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.087137 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ee5 7f35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.087138 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.087139 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.087141 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.087142 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.087143 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.087144 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.087167 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.087169 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.087172 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.087174 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.098096 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.098098 LLDP, length 82 [|LLDP] 19:03:18.098123 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.098124 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0eed e59b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.098125 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.098126 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.098127 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.098141 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.098142 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.098143 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.098145 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.098146 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.098147 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.098174 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.098176 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.109190 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.109193 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.109194 LLDP, length 82 [|LLDP] 19:03:18.109296 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.109297 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ef6 4c01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.109299 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.109300 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.109302 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.109303 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.109304 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.109306 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.109351 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.109354 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.109360 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.109362 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.117425 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.117428 LLDP, length 82 [|LLDP] 19:03:18.117474 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.117474 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0efc 98ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.117476 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.117478 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.117479 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.117480 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.117481 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.117483 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.117573 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.117576 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.117577 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.117591 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.117594 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.128392 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.128394 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.128395 LLDP, length 82 [|LLDP] 19:03:18.128435 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.128436 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f04 ff34 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.128438 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.128439 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.128440 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.128441 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.128458 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.128460 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.128461 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.128462 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.128475 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.128477 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.136644 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.136646 LLDP, length 82 [|LLDP] 19:03:18.136665 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.136666 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f0b 4c01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.136667 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.136668 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.136670 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.136671 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.136672 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.136673 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.136707 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.136709 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.136710 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.136722 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.136724 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.147644 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.147658 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.147659 LLDP, length 82 [|LLDP] 19:03:18.147695 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.147696 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f13 b268 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.147697 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.147699 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.147711 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.147713 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.147715 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.147716 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.147717 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.147718 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.147732 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.147735 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.158651 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.158653 LLDP, length 82 [|LLDP] 19:03:18.158679 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.158679 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f1c 18ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.158681 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.158682 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.158683 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.158684 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.158685 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.158701 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.158703 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.158705 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.158706 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.158731 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.158733 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.166913 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.166914 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.166915 LLDP, length 82 [|LLDP] 19:03:18.166957 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.166958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f22 65a2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.166959 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.166961 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.166962 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.166963 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.166964 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.166965 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.166989 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.166991 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.166993 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.166996 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.177920 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.177921 LLDP, length 82 [|LLDP] 19:03:18.177950 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.177951 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f2a cc01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.177953 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.177954 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.177955 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.177971 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.177972 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.177973 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.177974 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.177976 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.177977 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.178003 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.178006 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.188932 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.188933 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.188934 LLDP, length 82 [|LLDP] 19:03:18.188977 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.188978 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f33 3268 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.188980 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.188981 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.188982 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.188983 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.188984 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.188986 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.189008 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.189010 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.189014 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.189016 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.197187 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.197189 LLDP, length 82 [|LLDP] 19:03:18.197214 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.197215 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f39 7f35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.197216 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.197217 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.197219 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.197220 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.197221 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.197222 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.197253 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.197255 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.197256 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.197268 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.197270 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.208200 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.208202 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.208203 LLDP, length 82 [|LLDP] 19:03:18.208244 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.208245 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f41 e59b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.208246 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.208247 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.208248 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.208250 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.208264 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.208266 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.208267 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.208268 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.208281 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.208283 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.216455 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.216457 LLDP, length 82 [|LLDP] 19:03:18.216482 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.216482 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f48 3269 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.216484 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.216485 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.216486 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.216487 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.216488 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.216490 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.216520 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.216522 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.216523 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.216534 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.216536 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.227469 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.227471 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.227478 LLDP, length 82 [|LLDP] 19:03:18.227520 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.227521 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f50 98cf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.227522 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.227524 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.227537 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.227539 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.227540 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.227541 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.227543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.227544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.227559 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.227561 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.238479 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.238481 LLDP, length 82 [|LLDP] 19:03:18.238512 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.238513 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f58 ff36 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.238514 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.238515 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.238516 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.238517 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.238518 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.238538 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.238539 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.238541 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.238542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.238573 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.238575 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.246733 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.246735 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.246736 LLDP, length 82 [|LLDP] 19:03:18.246779 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.246780 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f5f 4c02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.246782 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.246783 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.246784 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.246786 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.246787 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.246788 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.246812 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.246814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.246817 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.246819 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.257742 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.257744 LLDP, length 82 [|LLDP] 19:03:18.257771 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.257772 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f67 b268 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.257773 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.257774 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.257776 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.257790 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.257792 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.257793 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.257794 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.257796 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.257797 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.257823 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.257825 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.268752 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.268754 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.268755 LLDP, length 82 [|LLDP] 19:03:18.268797 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.268798 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f70 18ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.268799 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.268800 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.268802 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.268803 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.268804 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.268806 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.268829 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.268831 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.268834 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.268836 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.277008 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.277010 LLDP, length 82 [|LLDP] 19:03:18.277035 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.277036 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f76 659b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.277037 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.277038 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.277039 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.277040 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.277042 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.277043 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.277073 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.277075 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.277076 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.277088 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.277090 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.288021 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.288022 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.288023 LLDP, length 82 [|LLDP] 19:03:18.288068 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.288069 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f7e cc02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.288070 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.288072 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.288073 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.288074 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.288102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.288104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.288105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.288107 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.288120 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.288122 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.299040 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.299042 LLDP, length 82 [|LLDP] 19:03:18.299060 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.299061 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f87 3268 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.299063 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.299064 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.299065 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.299066 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.299067 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.299068 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.299098 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.299100 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.299101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.299112 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.299115 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.307289 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.307290 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.307291 LLDP, length 82 [|LLDP] 19:03:18.307332 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.307333 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f8d 7f34 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.307334 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.307336 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.307347 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.307350 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.307351 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.307352 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.307353 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.307354 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.307368 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.307370 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.318297 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.318299 LLDP, length 82 [|LLDP] 19:03:18.318324 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.318325 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f95 e59b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.318326 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.318328 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.318329 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.318330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.318331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.318347 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.318349 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.318350 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.318352 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.318377 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.318379 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.326555 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.326557 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.326558 LLDP, length 82 [|LLDP] 19:03:18.326600 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.326601 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f9c 3268 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.326603 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.326604 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.326605 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.326606 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.326607 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.326608 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.326631 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.326632 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.326636 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.326638 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.337591 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.337594 LLDP, length 82 [|LLDP] 19:03:18.337619 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.337620 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fa4 98ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.337622 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.337623 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.337624 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.337644 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.337646 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.337648 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.337649 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.337650 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.337651 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.337688 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.337690 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.348584 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.348586 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.348587 LLDP, length 82 [|LLDP] 19:03:18.348637 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.348638 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fac ff34 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.348640 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.348641 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.348643 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.348644 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.348645 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.348647 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.348673 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.348675 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.348679 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.348681 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.356851 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.356853 LLDP, length 82 [|LLDP] 19:03:18.356875 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.356876 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fb3 4c01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.356878 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.356879 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.356880 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.356881 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.356883 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.356884 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.356925 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.356927 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.356928 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.356940 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.356943 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.367852 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.367854 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.367855 LLDP, length 82 [|LLDP] 19:03:18.367903 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.367904 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fbb b268 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.367905 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.367907 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.367908 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.367909 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.367924 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.367926 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.367927 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.367928 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.367946 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.367948 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.378853 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.378862 LLDP, length 82 [|LLDP] 19:03:18.378884 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.378884 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fc4 18ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.378886 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.378887 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.378888 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.378889 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.378890 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.378891 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.378927 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.378929 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.378930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.378942 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.378944 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.387112 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.387114 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.387115 LLDP, length 82 [|LLDP] 19:03:18.387163 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.387164 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fca 659b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.387165 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.387167 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.387180 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.387182 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.387184 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.387185 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.387186 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.387187 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.387203 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.387205 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.398124 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.398127 LLDP, length 82 [|LLDP] 19:03:18.398154 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.398155 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fd2 cc02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.398157 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.398158 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.398159 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.398160 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.398161 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.398179 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.398181 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.398182 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.398184 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.398212 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.398214 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.409140 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.409142 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.409143 LLDP, length 82 [|LLDP] 19:03:18.409188 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.409189 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fdb 3269 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.409191 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.409192 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.409194 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.409195 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.409196 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.409198 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.409224 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.409226 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.409229 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.409231 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.417401 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.417404 LLDP, length 82 [|LLDP] 19:03:18.417427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.417427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fe1 7f3b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.417429 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.417431 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.417432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.417449 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.417451 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.417452 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.417453 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.417454 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.417455 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.417486 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.417488 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.428416 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.428418 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.428418 LLDP, length 82 [|LLDP] 19:03:18.428468 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.428469 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fe9 e59c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.428470 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.428471 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.428472 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.428474 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.428475 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.428476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.428504 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.428506 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.428509 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.428512 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.436663 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.436665 LLDP, length 82 [|LLDP] 19:03:18.436697 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.436698 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ff0 3269 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.436700 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.436701 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.436702 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.436703 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.436705 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.436706 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.436744 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.436747 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.436748 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.436760 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.436762 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.447686 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.447688 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.447695 LLDP, length 82 [|LLDP] 19:03:18.447742 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.447747 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ff8 98cf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.447749 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.447750 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.447751 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.447753 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.447770 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.447773 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.447774 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.447775 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.447788 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.447790 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.458682 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.458684 LLDP, length 82 [|LLDP] 19:03:18.458712 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.458713 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1000 ff35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.458715 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.458716 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.458717 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.458733 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.458735 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.458737 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.458784 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.458786 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.458788 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.458801 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.458804 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.466976 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.466978 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.466979 LLDP, length 82 [|LLDP] 19:03:18.467034 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.467035 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1007 4c02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.467037 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.467038 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.467061 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.467064 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.467065 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.467067 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.467069 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.467070 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.467087 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.467091 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.477942 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.477944 LLDP, length 82 [|LLDP] 19:03:18.477972 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.477973 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 100f b268 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.477975 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.477976 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.477977 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.477979 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.477980 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.478033 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.488967 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.488969 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.488970 LLDP, length 82 [|LLDP] 19:03:18.489014 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.489015 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1018 18ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.489017 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.489018 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.489019 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.489021 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.489022 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.489023 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.489024 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.489052 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.489053 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.489056 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.497222 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.497224 LLDP, length 82 [|LLDP] 19:03:18.497256 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.497257 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 101e 659c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.497258 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.497259 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.497260 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.497262 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.497263 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.497283 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.497284 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.497287 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.497288 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.497289 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.497291 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.508230 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.508232 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.508233 LLDP, length 82 [|LLDP] 19:03:18.508284 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.508285 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1026 cc02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.508286 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.508287 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.508288 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.508290 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.508291 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.508292 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.508298 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.508326 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.508328 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.508332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.516496 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.516505 LLDP, length 82 [|LLDP] 19:03:18.516533 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.516534 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 102d 18ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.516535 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.516537 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.516538 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.516561 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.516562 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.516564 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.516565 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.516566 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.516567 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.516569 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.516570 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.527514 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.527516 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.527517 LLDP, length 82 [|LLDP] 19:03:18.527569 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.527570 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1035 7f35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.527572 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.527573 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.527574 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.527576 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.527578 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.527579 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.527600 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.527602 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.527604 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.527606 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.538505 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.538507 LLDP, length 82 [|LLDP] 19:03:18.538537 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.538538 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 103d e59b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.538539 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.538541 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.538542 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.538543 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.538544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.538545 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.538546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.538587 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.538588 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.538591 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.538592 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.546758 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.546760 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.546761 LLDP, length 82 [|LLDP] 19:03:18.546810 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.546811 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1044 3267 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.546813 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.546814 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.546815 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.546817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.546833 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.546834 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.546837 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.546838 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.546840 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.546841 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.557768 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.557770 LLDP, length 82 [|LLDP] 19:03:18.557796 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.557797 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 104c 98cf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.557799 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.557800 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.557801 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.557803 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.557804 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.557805 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.557806 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.557841 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.557842 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.557845 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.557846 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.568777 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.568778 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.568779 LLDP, length 82 [|LLDP] 19:03:18.568824 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.568825 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1054 ff35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.568826 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.568828 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.568829 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.568830 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.568831 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.568833 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.568834 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.568859 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.568860 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.568862 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.577040 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.577042 LLDP, length 82 [|LLDP] 19:03:18.577064 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.577065 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 105b 4c02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.577066 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.577067 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.577069 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.577070 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.577071 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.577088 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.577089 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.577091 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.577093 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.577094 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.577096 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.588052 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.588053 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.588054 LLDP, length 82 [|LLDP] 19:03:18.588094 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.588095 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1063 b26f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.588097 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.588098 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.588099 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.588100 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.588101 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.588103 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.588104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.588129 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.588130 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.588133 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.599056 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.599058 LLDP, length 82 [|LLDP] 19:03:18.599079 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.599080 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 106c 18cf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.599081 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.599082 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.599084 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.599098 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.599100 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.599102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.599103 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.599105 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.599106 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.599107 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.599109 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.607310 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.607312 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.607313 LLDP, length 82 [|LLDP] 19:03:18.607357 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.607358 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1072 659c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.607359 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.607361 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.607362 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.607363 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.607364 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.607366 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.607383 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.607384 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.607387 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.607388 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.618321 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.618323 LLDP, length 82 [|LLDP] 19:03:18.618351 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.618352 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 107a cc03 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.618353 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.618355 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.618356 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.618357 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.618359 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.618360 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.618361 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.618395 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.618397 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.618399 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.618401 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.626576 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.626578 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.626579 LLDP, length 82 [|LLDP] 19:03:18.626622 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.626623 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1081 18cf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.626625 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.626626 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.626627 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.626628 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.626643 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.626644 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.626646 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.626647 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.626648 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.626650 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.637589 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.637591 LLDP, length 82 [|LLDP] 19:03:18.637616 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.637617 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1089 7f36 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.637618 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.637620 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.637621 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.637622 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.637623 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.637624 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.637625 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.637658 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.637660 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.637662 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.637664 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.648606 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.648608 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.648609 LLDP, length 82 [|LLDP] 19:03:18.648643 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.648644 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1091 e59c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.648646 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.648647 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.648648 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.648650 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.648651 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.648652 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.648654 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.648678 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.648679 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.648682 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.656857 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.656859 LLDP, length 82 [|LLDP] 19:03:18.656886 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.656887 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1098 3268 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.656888 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.656889 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.656891 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.656892 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.656893 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.656911 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.656912 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.656915 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.656916 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.656918 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.656919 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.667867 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.667870 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.667871 LLDP, length 82 [|LLDP] 19:03:18.667916 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.667917 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10a0 98d4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.667919 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.667920 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.667921 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.667922 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.667924 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.667925 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.667926 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.667952 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.667954 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.667957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.678875 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.678877 LLDP, length 82 [|LLDP] 19:03:18.678904 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.678905 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10a8 ff35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.678906 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.678907 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.678909 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.678924 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.678926 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.678928 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.678930 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.678931 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.678932 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.678934 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.678935 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.687137 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.687139 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.687140 LLDP, length 82 [|LLDP] 19:03:18.687187 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.687188 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10af 4c02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.687190 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.687190 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.687191 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.687193 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.687194 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.687195 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.687212 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.687213 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.687215 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.687217 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.698153 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.698155 LLDP, length 82 [|LLDP] 19:03:18.698175 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.698175 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10b7 b268 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.698177 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.698178 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.698179 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.698180 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.698181 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.698182 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.698184 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.698217 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.698218 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.698221 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.698223 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.706399 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.706401 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.706402 LLDP, length 82 [|LLDP] 19:03:18.706443 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.706444 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10bd ff35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.706446 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.706447 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.706448 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.706449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.706465 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.706466 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.706469 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.706470 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.706471 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.706473 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.717408 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.717410 LLDP, length 82 [|LLDP] 19:03:18.717436 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.717437 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10c6 659b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.717439 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.717440 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.717441 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.717443 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.717443 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.717445 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.717446 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.717481 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.717482 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.717485 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.717486 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.728420 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.728422 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.728423 LLDP, length 82 [|LLDP] 19:03:18.728466 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.728467 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10ce cc02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.728469 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.728470 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.728471 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.728472 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.728473 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.728475 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.728476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.728502 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.728503 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.728506 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.736684 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.736686 LLDP, length 82 [|LLDP] 19:03:18.736703 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.736703 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10d5 18ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.736705 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.736706 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.736707 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.736709 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.736710 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.736725 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.736727 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.736729 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.736730 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.736732 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.736733 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.747701 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.747703 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.747704 LLDP, length 82 [|LLDP] 19:03:18.747738 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.747739 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10dd 7f34 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.747741 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.747742 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.747743 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.747745 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.747746 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.747747 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.747748 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.747772 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.747773 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.747776 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.758695 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.758697 LLDP, length 82 [|LLDP] 19:03:18.758723 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.758724 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10e5 e59b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.758726 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.758727 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.758728 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.758743 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.758744 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.758747 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.758748 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.758749 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.758750 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.758752 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.758753 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.766954 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.766956 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.766957 LLDP, length 82 [|LLDP] 19:03:18.766999 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.767000 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10ec 3268 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.767001 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.767003 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.767004 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.767005 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.767006 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.767008 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.767024 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.767025 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.767027 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.767029 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.777964 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.777966 LLDP, length 82 [|LLDP] 19:03:18.777992 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.777993 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10f4 98ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.777994 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.777995 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.777997 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.777998 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.777999 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.778000 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.778001 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.778034 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.778035 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.778037 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.778039 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.788974 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.788976 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.788976 LLDP, length 82 [|LLDP] 19:03:18.789018 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.789019 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10fc ff35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.789020 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.789021 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.789023 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.789024 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.789039 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.789041 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.789043 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.789044 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.789046 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.789047 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.797253 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.797256 LLDP, length 82 [|LLDP] 19:03:18.797286 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.797287 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1103 4c01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.797288 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.797290 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.797291 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.797292 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.797293 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.797295 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.797296 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.797337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.797338 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.797341 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.797342 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.808242 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.808244 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.808244 LLDP, length 82 [|LLDP] 19:03:18.808287 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.808288 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 110b b268 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.808289 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.808290 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.808292 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.808293 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.808294 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.808296 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.808297 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.808323 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.808324 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.808327 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.816508 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.816510 LLDP, length 82 [|LLDP] 19:03:18.816529 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.816529 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1111 ff35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.816531 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.816532 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.816533 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.816535 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.816536 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.816553 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.816554 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.816556 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.816558 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.816559 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.816560 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.827506 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.827508 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.827509 LLDP, length 82 [|LLDP] 19:03:18.827551 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.827552 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 111a 659b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.827553 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.827554 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.827555 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.827557 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.827558 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.827559 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.827560 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.827585 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.827586 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.827589 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.838518 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.838519 LLDP, length 82 [|LLDP] 19:03:18.838547 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.838547 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1122 cc08 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.838549 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.838550 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.838551 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.838567 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.838568 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.838570 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.838572 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.838573 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.838574 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.838575 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.838577 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.846788 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.846789 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.846790 LLDP, length 82 [|LLDP] 19:03:18.846830 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.846831 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1129 18cf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.846833 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.846834 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.846835 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.846836 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.846838 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.846839 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.846856 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.846858 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.846860 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.846861 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.857796 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.857797 LLDP, length 82 [|LLDP] 19:03:18.857816 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.857817 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1131 7f35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.857818 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.857820 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.857821 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.857822 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.857823 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.857824 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.857825 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.857858 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.857859 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.857862 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.857864 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.868795 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.868797 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.868798 LLDP, length 82 [|LLDP] 19:03:18.868838 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.868840 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1139 e59b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.868841 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.868842 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.868843 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.868845 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.868859 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.868860 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.868863 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.868864 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.868865 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.868867 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.877042 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.877043 LLDP, length 82 [|LLDP] 19:03:18.877063 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.877064 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1140 3269 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.877065 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.877066 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.877067 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.877069 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.877070 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.877100 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.888061 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.888063 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1148 98cf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.888065 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.888072 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.888087 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.888088 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.888090 LLDP, length 82 [|LLDP] 19:03:18.888110 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.888120 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.888121 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.888122 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.888123 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.888124 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.888139 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.888141 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.899073 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.899075 LLDP, length 82 [|LLDP] 19:03:18.899093 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.899094 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1150 ff36 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.899096 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.899097 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.899098 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.899100 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.899101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.899116 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.899118 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.899119 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.899120 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.899144 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.899146 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.907330 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.907332 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.907333 LLDP, length 82 [|LLDP] 19:03:18.907372 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.907373 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1157 4c03 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.907375 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.907376 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.907377 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.907378 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.907380 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.907381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.907403 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.907405 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.907408 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.907410 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.918352 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.918353 LLDP, length 82 [|LLDP] 19:03:18.918373 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.918374 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 115f b26b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.918375 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.918377 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.918378 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.918393 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.918395 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.918397 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.918398 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.918399 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.918401 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.918428 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.918430 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.926596 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.926598 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.926599 LLDP, length 82 [|LLDP] 19:03:18.926640 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.926641 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1165 ff36 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.926642 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.926644 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.926645 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.926646 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.926647 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.926648 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.926672 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.926674 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.926677 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.926679 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.937607 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.937608 LLDP, length 82 [|LLDP] 19:03:18.937634 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.937635 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 116e 659c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.937636 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.937638 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.937638 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.937640 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.937641 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.937642 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.937672 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.937674 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.937675 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.937687 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.937689 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.948615 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.948617 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.948618 LLDP, length 82 [|LLDP] 19:03:18.948660 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.948661 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1176 cc02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.948662 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.948663 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.948665 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.948666 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.948680 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.948682 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.948683 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.948684 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.948697 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.948699 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.956875 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.956877 LLDP, length 82 [|LLDP] 19:03:18.956902 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.956903 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 117d 18cf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.956904 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.956906 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.956907 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.956908 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.956909 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.956910 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.956942 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.956944 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.956945 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.956957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.956959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.967883 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.967885 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.967886 LLDP, length 82 [|LLDP] 19:03:18.967928 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.967929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1185 7f35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.967930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.967931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.967943 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.967945 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.967946 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.967947 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.967948 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.967949 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.967964 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.967967 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.978894 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.978895 LLDP, length 82 [|LLDP] 19:03:18.978919 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.978920 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 118d e59c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.978921 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.978922 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.978923 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.978925 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.978926 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.978941 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.978944 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.978945 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.978946 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.978972 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.978974 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.987152 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.987154 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.987155 LLDP, length 82 [|LLDP] 19:03:18.987195 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.987196 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1194 3268 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.987197 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.987199 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.987200 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.987201 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.987202 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.987203 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.987226 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.987228 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.987231 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.987232 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.998159 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.998160 LLDP, length 82 [|LLDP] 19:03:18.998185 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.998186 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 119c 98ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.998187 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.998188 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.998189 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.998203 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.998205 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.998206 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.998207 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.998208 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.998210 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.998236 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.998238 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:19.006418 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:19.006420 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:19.006421 LLDP, length 82 [|LLDP] 19:03:19.006463 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:19.006464 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11a2 e59c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:19.006465 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:19.006467 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:19.006468 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:19.006469 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:19.006471 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:19.006472 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:19.006494 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:19.006495 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:19.006499 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:19.006501 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:19.017429 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:19.017431 LLDP, length 82 [|LLDP] 19:03:19.017457 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:19.017458 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11ab 4c02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:19.017459 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:19.017460 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:19.017461 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:19.017462 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:19.017464 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:19.017465 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:19.017496 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:19.017498 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:19.017500 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:19.017511 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:19.017513 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:19.028441 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:19.028442 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:19.028443 LLDP, length 82 [|LLDP] 19:03:19.028485 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:19.028486 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11b3 b268 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:19.028487 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:19.028488 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:19.028490 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:19.028491 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:19.028510 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:19.028512 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:19.028513 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:19.028514 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:19.028527 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:19.028529 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:19.036695 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:19.036696 LLDP, length 82 [|LLDP] 19:03:19.036722 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:19.036723 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11b9 ff3c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:19.036724 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:19.036725 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:19.036726 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:19.036727 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:19.036728 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:19.036730 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:19.036761 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:19.036763 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:19.036764 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:19.036776 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:19.036778 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:19.047728 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:19.047730 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:19.047731 LLDP, length 82 [|LLDP] 19:03:19.047776 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:19.047777 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11c2 659b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:19.047778 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:19.047780 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:19.047792 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:19.047793 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:19.047795 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:19.047796 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:19.047797 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:19.047798 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:19.047812 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:19.047814 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:19.058716 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:19.058717 LLDP, length 82 [|LLDP] 19:03:19.058741 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:19.058742 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11ca cc01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:19.058744 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:19.058745 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:19.058746 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:19.058747 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:19.058748 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:19.058764 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:19.058766 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:19.058767 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:19.058768 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:19.058792 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:19.058794 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:19.066973 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:19.066975 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:19.066976 LLDP, length 82 [|LLDP] 19:03:19.067016 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:19.067017 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11d1 18ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:19.067018 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:19.067019 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:19.067021 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:19.067022 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:19.067023 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:19.067024 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:19.067046 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:19.067048 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:19.067050 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:19.067052 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:19.077998 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:19.078000 LLDP, length 82 [|LLDP] 19:03:19.078018 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:19.078019 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11d9 7f34 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:19.078020 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:19.078021 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:19.078022 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:19.078036 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:19.078038 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:19.078039 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:19.078040 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:19.078042 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:19.078043 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:19.078070 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:19.078072 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:19.088997 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:19.088999 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:19.089000 LLDP, length 82 [|LLDP] 19:03:19.089034 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:19.089035 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11e1 e5a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:19.089037 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:19.089038 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:19.089039 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:19.089040 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:19.089042 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:19.089043 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:19.089066 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:19.089067 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:19.089071 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:19.089073 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:19.097253 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:19.097254 LLDP, length 82 [|LLDP] 19:03:19.097279 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:19.097280 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11e8 3268 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:19.097281 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:19.097283 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:19.097284 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:19.097285 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:19.097286 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:19.097287 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:19.097317 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:19.097319 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:19.097320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:19.097331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:19.097333 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:19.108261 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:19.108262 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:19.108263 LLDP, length 82 [|LLDP] 19:03:19.108304 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:19.108305 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11f0 98ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:19.108306 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:19.108308 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:19.108309 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:19.108310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:19.108323 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:19.108325 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:19.108326 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:19.108327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:19.108340 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:19.108342 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:19.116518 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:19.116520 LLDP, length 82 [|LLDP] 19:03:19.116545 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:19.116545 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11f6 e59a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:19.116547 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:19.116548 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:19.116549 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:19.116550 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:19.116552 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:19.116553 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:19.116583 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:19.116585 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:19.116586 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:19.116598 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:19.116600 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:19.127535 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:19.127537 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:19.127545 LLDP, length 82 [|LLDP] 19:03:19.127588 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:19.127589 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11ff 4c01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:19.127591 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:19.127592 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:19.127606 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:19.127607 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:19.127609 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:19.127610 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:19.127611 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:19.127612 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:19.127627 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:19.127629 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:19.138555 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:19.138564 LLDP, length 82 [|LLDP] 19:03:19.138591 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:19.138592 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1207 b268 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:19.138594 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:19.138595 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:19.138596 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:19.138597 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:19.138598 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:19.138619 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:19.138621 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:19.138622 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:19.138623 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:19.138657 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:19.138659 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:19.146812 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:19.146814 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:19.146815 LLDP, length 82 [|LLDP] 19:03:19.146858 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:19.146859 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 120d ff35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:19.146860 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:19.146862 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:19.146863 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:19.146864 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:19.146865 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:19.146866 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:19.146891 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:19.146893 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:19.146897 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:19.146899 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:19.157808 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:19.157810 LLDP, length 82 [|LLDP] 19:03:19.157837 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:19.157837 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1216 659b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:19.157839 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:19.157840 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:19.157841 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:19.157857 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:19.157858 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:19.157860 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:19.157861 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:19.157862 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:19.157863 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:19.157891 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:19.157893 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:19.168818 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:19.168820 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:19.168821 LLDP, length 82 [|LLDP] 19:03:19.168867 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:19.168868 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 121e cc04 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:19.168870 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:19.168871 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:19.168872 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:19.168873 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:19.168874 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:19.168875 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:19.168899 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:19.168901 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:19.168904 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:19.168906 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:19.177075 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:19.177077 LLDP, length 82 [|LLDP] 19:03:19.177104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:19.177105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1225 18cf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:19.177106 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:19.177108 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:19.177109 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:19.177110 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:19.177111 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:19.177112 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:19.177145 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:19.177147 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:19.177148 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:19.177160 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:19.177162 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:19.188086 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:19.188087 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:19.188088 LLDP, length 82 [|LLDP] 19:03:19.188135 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:19.188136 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 122d 7f36 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:19.188137 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:19.188139 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:19.188140 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:19.188141 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:19.188156 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:19.188158 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:19.188159 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:19.188160 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:19.188173 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:19.188175 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:19.196353 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:19.196355 LLDP, length 82 [|LLDP] 19:03:19.196374 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:19.196375 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1233 cc02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:19.196376 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:19.196377 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:19.196378 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:19.196379 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:19.196381 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:19.196382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:19.196415 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:19.196417 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:19.196418 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:19.196430 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:19.196432 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:19.207354 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:19.207356 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:19.207357 LLDP, length 82 [|LLDP] 19:03:19.207399 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:19.207400 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 123c 3269 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:19.207402 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:19.207403 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:19.207415 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:19.207417 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:19.207419 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:19.207420 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:19.207421 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:19.207422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:19.207436 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:19.207439 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:19.218362 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:19.218364 LLDP, length 82 [|LLDP] 19:03:19.218391 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:19.218392 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1244 98cf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:19.218393 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:19.218395 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:19.218395 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:19.218397 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:19.218398 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:19.218413 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:19.218415 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:19.218417 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:19.218418 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:19.218444 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:19.218446 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:19.226621 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:19.226622 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:19.226623 LLDP, length 82 [|LLDP] 19:03:19.226667 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:19.226668 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 124a e59d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:19.226670 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:19.226671 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:19.226672 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:19.226673 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:19.226675 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:19.226676 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:19.226698 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:19.226700 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:19.226704 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:19.226705 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:19.237631 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:19.237633 LLDP, length 82 [|LLDP] 19:03:19.237661 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:19.237662 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1253 4c03 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:19.237664 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:19.237665 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:19.237666 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:19.237683 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:19.237685 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:19.237686 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:19.237687 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:19.237688 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:19.237690 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:19.237719 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:19.237721 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:19.248643 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:19.248645 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:19.248646 LLDP, length 82 [|LLDP] 19:03:19.248690 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:19.248691 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 125b b269 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:19.248692 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:19.248694 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:19.248695 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:19.248696 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:19.248697 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:19.248698 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:19.248722 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:19.248724 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:19.248728 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:19.248730 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:19.256900 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:19.256902 LLDP, length 82 [|LLDP] 19:03:19.256923 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:19.256924 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1261 ff36 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:19.256925 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:19.256927 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:19.256928 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:19.256929 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:19.256930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:19.256931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:19.256962 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:19.256964 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:19.256965 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:19.256976 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:19.256978 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:19.267917 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:19.267919 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:19.267920 LLDP, length 82 [|LLDP] 19:03:19.267957 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:19.267958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 126a 659c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:19.267959 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:19.267960 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:19.267962 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:19.267963 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:19.267976 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:19.267978 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:19.267980 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:19.267981 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:19.267993 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:19.267995 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 tcpdump: verbose output suppressed, use -v or -vv for full protocol decode listening on swp33, link-type EN10MB (Ethernet), capture size 262144 bytes 8971 packets captured 8971 packets received by filter 0 packets dropped by kernel INFO DENT:Logger.py:84 [DENT infrastructure 2] Ran timeout --preserve-status 15 tcpdump -i swp33 -n on infra2 with rc 0 and out 19:03:12.603698 IP6 fe80::1abe:92ff:fe13:64a5 > ff02::2: ICMP6, router solicitation, length 16 19:03:13.289558 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.289561 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.289562 LLDP, length 82 [|LLDP] 19:03:13.289655 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.289656 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0099 3247 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.289658 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.289660 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.289661 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.289662 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.289663 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.289664 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.289666 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.289731 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.289733 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.289738 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.297764 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.297766 LLDP, length 82 [|LLDP] 19:03:13.297788 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.297789 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 009f 7f13 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.297790 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.297791 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.297793 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.297828 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.297830 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.297832 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.297834 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.297835 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.297836 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.297837 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.297839 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.308769 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.308771 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.308772 LLDP, length 82 [|LLDP] 19:03:13.308810 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.308811 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00a7 e57a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.308813 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.308814 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.308815 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.308816 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.308817 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.308818 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.308845 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.308847 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.308849 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.308850 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.317023 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.317025 LLDP, length 82 [|LLDP] 19:03:13.317051 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.317052 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00ae 324d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.317054 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.317055 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.317056 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.317057 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.317058 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.317060 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.317061 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.317103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.317104 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.317106 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.317108 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.328030 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.328032 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.328033 LLDP, length 82 [|LLDP] 19:03:13.328075 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.328076 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00b6 98ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.328078 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.328079 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.328080 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.328081 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.328106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.328108 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.328110 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.328111 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.328112 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.328114 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.339046 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.339048 LLDP, length 82 [|LLDP] 19:03:13.339073 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.339074 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00be ff13 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.339075 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.339076 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.339077 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.339078 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.339079 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.339080 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.339082 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.339121 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.339123 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.339125 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.339127 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.347312 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.347314 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.347315 LLDP, length 82 [|LLDP] 19:03:13.347366 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.347367 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00c5 4be0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.347369 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.347370 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.347371 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.347372 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.347373 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.347374 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.347376 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.347403 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.347404 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.347407 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.358311 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.358313 LLDP, length 82 [|LLDP] 19:03:13.358341 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.358342 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00cd b246 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.358343 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.358344 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.358345 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.358347 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.358348 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.358366 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.358367 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.358369 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.358371 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.358372 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.358373 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.369325 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.369327 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.369328 LLDP, length 82 [|LLDP] 19:03:13.369365 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.369366 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00d6 18ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.369368 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.369369 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.369370 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.369371 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.369372 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.369373 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.369375 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.369400 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.369401 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.369404 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.377586 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.377587 LLDP, length 82 [|LLDP] 19:03:13.377606 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.377607 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00dc 6579 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.377608 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.377610 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.377611 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.377627 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.377628 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.377631 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.377632 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.377633 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.377634 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.377635 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.377637 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.388615 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.388616 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.388618 LLDP, length 82 [|LLDP] 19:03:13.388662 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.388663 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00e4 cbe0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.388664 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.388666 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.388667 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.388668 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.388669 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.388670 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.388687 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.388688 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.388690 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.388692 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.396852 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.396853 LLDP, length 82 [|LLDP] 19:03:13.396880 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.396881 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00eb 18af 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.396882 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.396883 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.396884 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.396886 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.396887 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.396888 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.396890 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.396924 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.396926 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.396928 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.396930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.407854 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.407856 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.407864 LLDP, length 82 [|LLDP] 19:03:13.407900 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.407901 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00f3 7f14 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.407903 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.407904 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.407905 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.407906 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.407921 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.407923 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.407925 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.407926 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.407928 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.407929 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.418864 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.418866 LLDP, length 82 [|LLDP] 19:03:13.418893 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.418893 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00fb e57a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.418895 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.418896 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.418897 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.418898 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.418900 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.418901 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.418902 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.418935 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.418936 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.418939 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.418941 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.430136 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.430138 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.430139 LLDP, length 82 [|LLDP] 19:03:13.430177 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.430178 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0102 3248 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.430179 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.430181 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.430182 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.430183 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.430184 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.430185 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.430186 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.430212 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.430213 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.430216 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.438132 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.438134 LLDP, length 82 [|LLDP] 19:03:13.438154 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.438155 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 010a 98ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.438157 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.438158 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.438159 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.438160 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.438161 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.438178 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.438179 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.438181 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.438182 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.438184 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.438185 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.449141 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.449143 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.449144 LLDP, length 82 [|LLDP] 19:03:13.449187 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.449189 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0112 ff1b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.449190 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.449191 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.449193 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.449194 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.449195 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.449196 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.449197 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.449222 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.449223 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.449226 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.457407 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.457408 LLDP, length 82 [|LLDP] 19:03:13.457433 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.457434 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0119 4be0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.457435 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.457436 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.457438 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.457453 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.457454 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.457457 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.457458 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.457459 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.457460 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.457461 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.457463 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.468410 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.468412 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.468419 LLDP, length 82 [|LLDP] 19:03:13.468456 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.468457 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0121 b247 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.468459 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.468460 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.468461 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.468462 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.468463 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.468464 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.468481 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.468483 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.468485 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.468487 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.479420 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.479421 LLDP, length 82 [|LLDP] 19:03:13.479450 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.479451 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 012a 18ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.479453 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.479454 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.479455 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.479456 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.479457 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.479458 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.479460 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.479493 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.479494 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.479497 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.479498 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.490807 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.490809 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.490810 LLDP, length 82 [|LLDP] 19:03:13.490846 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.490847 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0130 657a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.490848 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.490850 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.490851 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.490852 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.490867 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.490869 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.490871 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.490872 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.490874 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.490875 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.498688 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.498690 LLDP, length 82 [|LLDP] 19:03:13.498710 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.498711 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0138 cbe1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.498712 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.498713 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.498715 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.498716 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.498717 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.498718 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.498720 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.498751 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.498752 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.498755 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.498756 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.506941 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.506942 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.506943 LLDP, length 82 [|LLDP] 19:03:13.506984 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.506985 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 013f 18ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.506987 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.506988 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.506989 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.506990 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.506991 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.506993 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.506994 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.507018 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.507019 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.507022 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.517959 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.517961 LLDP, length 82 [|LLDP] 19:03:13.517987 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.517988 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0147 7f13 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.517990 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.517990 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.517992 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.517993 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.517994 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.518011 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.518013 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.518015 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.518016 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.518017 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.518018 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.528959 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.528961 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.528962 LLDP, length 82 [|LLDP] 19:03:13.529001 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.529002 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 014f e579 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.529004 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.529005 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.529006 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.529007 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.529008 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.529009 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.529010 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.529034 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.529035 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.529038 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.537217 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.537219 LLDP, length 82 [|LLDP] 19:03:13.537243 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.537244 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0156 3246 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.537245 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.537246 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.537247 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.537261 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.537263 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.537265 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.537266 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.537267 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.537269 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.537270 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.537271 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.551475 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.551477 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.551478 LLDP, length 82 [|LLDP] 19:03:13.551513 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.551514 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 015e 98ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.551515 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.551517 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.551518 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.551519 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.551520 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.551521 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.551537 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.551538 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.551540 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.551542 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.559246 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.559248 LLDP, length 82 [|LLDP] 19:03:13.559275 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.559276 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0166 ff13 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.559277 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.559278 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.559279 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.559281 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.559282 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.559283 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.559284 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.559318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.559319 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.559321 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.559323 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.567498 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.567500 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.567501 LLDP, length 82 [|LLDP] 19:03:13.567544 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.567545 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 016d 4be6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.567547 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.567548 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.567549 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.567550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.567564 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.567566 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.567568 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.567570 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.567571 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.567573 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.578509 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.578511 LLDP, length 82 [|LLDP] 19:03:13.578537 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.578538 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0175 b245 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.578539 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.578540 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.578542 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.578543 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.578544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.578545 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.578546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.578579 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.578580 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.578582 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.578584 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.586765 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.586767 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.586768 LLDP, length 82 [|LLDP] 19:03:13.586809 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.586810 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 017b ff13 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.586812 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.586813 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.586814 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.586816 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.586817 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.586818 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.586819 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.586844 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.586845 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.586848 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.597775 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.597777 LLDP, length 82 [|LLDP] 19:03:13.597806 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.597807 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0184 6579 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.597808 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.597810 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.597811 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.597812 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.597813 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.597831 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.597833 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.597835 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.597836 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.597838 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.597839 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.608787 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.608789 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.608790 LLDP, length 82 [|LLDP] 19:03:13.608828 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.608829 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 018c cbe0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.608831 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.608832 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.608833 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.608834 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.608835 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.608837 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.608838 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.608864 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.608865 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.608867 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.617045 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.617047 LLDP, length 82 [|LLDP] 19:03:13.617066 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.617067 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0193 18ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.617069 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.617069 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.617071 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.617085 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.617086 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.617088 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.617089 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.617090 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.617092 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.617093 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.617094 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.628052 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.628053 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.628054 LLDP, length 82 [|LLDP] 19:03:13.628097 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.628098 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 019b 7f13 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.628100 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.628101 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.628102 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.628103 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.628104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.628106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.628121 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.628122 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.628125 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.628126 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.639063 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.639065 LLDP, length 82 [|LLDP] 19:03:13.639092 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.639093 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01a3 e579 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.639094 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.639095 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.639096 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.639097 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.639098 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.639100 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.639101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.639133 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.639135 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.639137 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.639139 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.647323 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.647325 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.647326 LLDP, length 82 [|LLDP] 19:03:13.647369 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.647370 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01aa 3247 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.647372 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.647373 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.647374 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.647376 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.647391 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.647392 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.647395 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.647396 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.647397 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.647399 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.658328 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.658330 LLDP, length 82 [|LLDP] 19:03:13.658357 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.658357 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01b2 98ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.658359 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.658360 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.658361 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.658363 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.658364 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.658365 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.658367 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.658401 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.658402 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.658405 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.658406 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.669341 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.669343 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.669344 LLDP, length 82 [|LLDP] 19:03:13.669387 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.669388 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01ba ff14 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.669390 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.669391 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.669393 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.669394 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.669395 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.669396 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.669397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.669423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.669424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.669427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.677605 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.677607 LLDP, length 82 [|LLDP] 19:03:13.677627 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.677627 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01c1 4be0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.677629 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.677630 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.677631 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.677632 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.677633 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.677650 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.677651 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.677653 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.677655 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.677656 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.677658 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.688609 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.688611 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.688612 LLDP, length 82 [|LLDP] 19:03:13.688655 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.688656 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01c9 b247 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.688658 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.688659 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.688660 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.688661 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.688662 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.688663 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.688665 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.688689 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.688691 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.688694 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.696866 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.696868 LLDP, length 82 [|LLDP] 19:03:13.696894 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.696895 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01cf ff14 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.696896 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.696898 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.696899 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.696914 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.696915 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.696917 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.696919 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.696920 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.696921 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.696922 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.696924 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.707874 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.707876 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.707877 LLDP, length 82 [|LLDP] 19:03:13.707921 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.707921 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01d8 657b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.707923 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.707924 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.707925 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.707926 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.707927 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.707929 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.707944 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.707945 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.707948 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.707950 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.718884 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.718885 LLDP, length 82 [|LLDP] 19:03:13.718912 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.718913 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01e0 cbe1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.718914 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.718915 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.718917 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.718918 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.718919 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.718920 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.718922 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.718953 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.718954 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.718956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.718958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.727148 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.727149 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.727150 LLDP, length 82 [|LLDP] 19:03:13.727187 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.727188 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01e7 18ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.727190 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.727191 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.727192 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.727193 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.727207 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.727209 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.727211 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.727213 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.727214 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.727215 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.738157 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.738159 LLDP, length 82 [|LLDP] 19:03:13.738179 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.738180 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01ef 7f14 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.738182 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.738183 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.738184 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.738185 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.738186 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.738187 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.738189 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.738221 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.738222 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.738225 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.738226 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.749163 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.749164 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.749165 LLDP, length 82 [|LLDP] 19:03:13.749208 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.749209 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01f7 e57b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.749210 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.749212 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.749213 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.749214 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.749215 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.749216 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.749217 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.749241 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.749243 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.749246 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.757422 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.757424 LLDP, length 82 [|LLDP] 19:03:13.757451 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.757452 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01fe 3247 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.757454 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.757455 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.757456 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.757457 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.757458 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.757475 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.757476 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.757478 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.757479 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.757481 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.757482 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.768430 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.768432 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.768433 LLDP, length 82 [|LLDP] 19:03:13.768475 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.768476 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0206 98ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.768478 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.768479 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.768480 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.768481 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.768483 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.768484 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.768485 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.768509 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.768510 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.768513 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.779444 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.779446 LLDP, length 82 [|LLDP] 19:03:13.779466 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.779467 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 020e ff14 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.779468 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.779469 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.779470 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.779485 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.779486 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.779488 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.779489 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.779490 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.779492 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.779493 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.779494 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.787702 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.787704 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.787705 LLDP, length 82 [|LLDP] 19:03:13.787749 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.787750 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0215 4be0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.787752 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.787753 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.787754 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.787755 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.787756 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.787757 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.787773 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.787775 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.787777 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.787779 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.798727 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.798729 LLDP, length 82 [|LLDP] 19:03:13.798754 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.798755 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 021d b246 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.798756 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.798757 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.798758 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.798760 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.798761 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.798762 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.798763 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.798806 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.798808 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.798810 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.798812 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.806971 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.806973 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.806974 LLDP, length 82 [|LLDP] 19:03:13.807012 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.807013 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0223 ff14 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.807014 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.807015 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.807016 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.807018 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.807032 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.807033 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.807035 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.807037 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.807038 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.807040 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.817983 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.817985 LLDP, length 82 [|LLDP] 19:03:13.818016 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.818017 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 022c 6580 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.818018 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.818019 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.818021 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.818022 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.818023 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.818024 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.818025 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.818062 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.818063 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.818066 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.818068 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.828991 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.828993 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.828994 LLDP, length 82 [|LLDP] 19:03:13.829041 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.829042 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0234 cbe0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.829043 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.829045 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.829046 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.829047 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.829048 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.829049 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.829050 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.829077 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.829079 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.829082 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.837251 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.837252 LLDP, length 82 [|LLDP] 19:03:13.837272 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.837273 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 023b 18ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.837275 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.837276 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.837277 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.837279 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.837280 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.837296 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.837298 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.837300 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.837301 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.837302 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.837304 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.848264 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.848266 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.848267 LLDP, length 82 [|LLDP] 19:03:13.848310 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.848311 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0243 7f12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.848312 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.848314 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.848315 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.848316 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.848317 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.848319 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.848320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.848346 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.848348 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.848350 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.859269 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.859271 LLDP, length 82 [|LLDP] 19:03:13.859293 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.859294 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 024b e579 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.859295 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.859296 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.859298 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.859315 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.859316 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.859319 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.859320 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.859321 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.859322 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.859323 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.859325 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.867518 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.867520 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.867521 LLDP, length 82 [|LLDP] 19:03:13.867563 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.867564 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0252 3246 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.867565 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.867566 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.867567 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.867568 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.867570 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.867571 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.867587 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.867588 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.867590 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.867592 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.878531 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.878533 LLDP, length 82 [|LLDP] 19:03:13.878559 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.878560 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 025a 98ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.878561 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.878562 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.878564 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.878565 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.878566 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.878567 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.878568 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.878599 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.878600 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.878603 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.878604 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.886783 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.886785 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.886786 LLDP, length 82 [|LLDP] 19:03:13.886829 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.886830 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0260 e579 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.886831 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.886832 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.886833 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.886834 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.886848 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.886850 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.886852 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.886853 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.886854 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.886855 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.897794 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.897796 LLDP, length 82 [|LLDP] 19:03:13.897820 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.897821 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0269 4be0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.897823 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.897823 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.897825 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.897826 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.897827 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.897828 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.897830 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.897862 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.897863 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.897866 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.897867 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.908805 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.908807 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.908808 LLDP, length 82 [|LLDP] 19:03:13.908848 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.908849 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0271 b247 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.908850 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.908852 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.908853 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.908854 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.908855 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.908856 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.908857 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.908881 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.908883 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.908885 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.917073 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.917075 LLDP, length 82 [|LLDP] 19:03:13.917093 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.917094 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0277 ff13 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.917096 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.917097 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.917098 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.917098 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.917099 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.917115 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.917117 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.917119 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.917120 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.917121 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.917123 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.928074 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.928076 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.928077 LLDP, length 82 [|LLDP] 19:03:13.928119 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.928120 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0280 657a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.928121 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.928123 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.928124 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.928125 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.928126 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.928127 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.928128 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.928152 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.928153 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.928156 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.939086 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.939088 LLDP, length 82 [|LLDP] 19:03:13.939116 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.939117 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0288 cbe0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.939118 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.939119 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.939121 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.939135 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.939136 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.939139 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.939140 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.939141 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.939142 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.939143 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.939145 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.947338 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.947341 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.947341 LLDP, length 82 [|LLDP] 19:03:13.947381 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.947382 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 028f 18ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.947383 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.947384 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.947385 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.947386 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.947387 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.947389 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.947404 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.947405 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.947408 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.947409 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.958352 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.958354 LLDP, length 82 [|LLDP] 19:03:13.958372 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.958373 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0297 7f14 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.958374 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.958375 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.958376 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.958378 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.958379 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.958380 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.958381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.958414 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.958415 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.958417 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.958419 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.969360 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.969362 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.969363 LLDP, length 82 [|LLDP] 19:03:13.969405 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.969406 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 029f e57b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.969407 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.969408 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.969410 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.969411 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.969425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.969426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.969428 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.969430 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.969431 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.969433 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.977620 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.977622 LLDP, length 82 [|LLDP] 19:03:13.977641 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.977642 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02a6 3247 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.977643 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.977644 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.977645 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.977647 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.977648 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.977649 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.977650 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.977682 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.977683 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.977686 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.977687 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.988625 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.988627 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.988628 LLDP, length 82 [|LLDP] 19:03:13.988669 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.988670 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02ae 98b3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.988671 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.988673 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.988674 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.988675 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.988676 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.988677 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.988678 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.988703 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.988704 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.988707 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:13.996883 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:13.996885 LLDP, length 82 [|LLDP] 19:03:13.996909 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:13.996909 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02b4 e57a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:13.996911 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:13.996912 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.996913 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:13.996914 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:13.996915 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.996931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:13.996933 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:13.996935 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:13.996936 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:13.996937 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:13.996939 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.007896 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.007898 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.007899 LLDP, length 82 [|LLDP] 19:03:14.007938 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.007939 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02bd 4be1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.007940 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.007942 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.007943 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.007944 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.007945 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.007946 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.007947 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.007972 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.007974 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.007976 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.018905 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.018906 LLDP, length 82 [|LLDP] 19:03:14.018930 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.018931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02c5 b247 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.018932 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.018933 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.018934 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.018950 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.018951 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.018953 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.018954 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.018956 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.018957 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.018958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.018960 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.027161 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.027163 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.027164 LLDP, length 82 [|LLDP] 19:03:14.027204 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.027205 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02cb ff14 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.027206 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.027208 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.027209 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.027210 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.027211 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.027212 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.027228 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.027229 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.027232 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.027233 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.038184 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.038186 LLDP, length 82 [|LLDP] 19:03:14.038207 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.038208 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02d4 657a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.038210 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.038211 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.038212 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.038213 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.038214 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.038215 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.038216 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.038256 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.038257 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.038259 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.038261 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.049201 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.049210 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.049211 LLDP, length 82 [|LLDP] 19:03:14.049260 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.049261 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02dc cbe0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.049263 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.049264 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.049265 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.049266 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.049284 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.049285 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.049288 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.049290 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.049291 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.049292 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.057445 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.057447 LLDP, length 82 [|LLDP] 19:03:14.057476 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.057477 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02e3 18ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.057478 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.057479 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.057480 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.057482 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.057483 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.057484 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.057485 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.057529 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.057530 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.057532 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.057534 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.068461 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.068463 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.068465 LLDP, length 82 [|LLDP] 19:03:14.068504 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.068505 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02eb 7f1a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.068506 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.068507 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.068509 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.068510 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.068511 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.068512 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.068513 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.068538 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.068540 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.068543 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.076711 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.076712 LLDP, length 82 [|LLDP] 19:03:14.076738 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.076739 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02f1 cbe0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.076740 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.076741 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.076742 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.076744 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.076745 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.076766 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.076767 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.076770 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.076771 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.076772 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.076774 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.087722 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.087724 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.087725 LLDP, length 82 [|LLDP] 19:03:14.087776 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.087777 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02fa 3246 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.087779 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.087780 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.087781 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.087783 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.087784 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.087785 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.087786 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.087814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.087815 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.087818 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.098731 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.098732 LLDP, length 82 [|LLDP] 19:03:14.098757 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.098757 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0302 98ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.098759 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.098760 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.098761 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.098778 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.098779 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.098781 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.098782 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.098783 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.098785 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.098786 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.098788 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.106990 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.106992 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.106999 LLDP, length 82 [|LLDP] 19:03:14.107043 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.107044 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0308 e57a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.107046 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.107047 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.107047 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.107049 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.107050 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.107051 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.107070 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.107071 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.107074 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.107076 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.118004 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.118006 LLDP, length 82 [|LLDP] 19:03:14.118041 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.118042 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0311 4bdf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.118043 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.118044 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.118045 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.118047 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.118048 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.118049 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.118050 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.118089 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.118091 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.118094 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.118095 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.129025 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.129027 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.129028 LLDP, length 82 [|LLDP] 19:03:14.129088 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.129089 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0319 b246 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.129091 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.129093 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.129094 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.129095 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.129115 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.129116 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.129119 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.129120 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.129121 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.129124 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.137271 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.137273 LLDP, length 82 [|LLDP] 19:03:14.137314 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.137315 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 031f ff13 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.137317 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.137318 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.137319 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.137321 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.137322 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.137323 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.137324 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.137367 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.137368 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.137370 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.137372 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.148287 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.148290 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.148291 LLDP, length 82 [|LLDP] 19:03:14.148359 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.148361 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0328 6579 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.148363 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.148364 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.148366 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.148367 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.148369 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.148370 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.148371 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.148410 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.148411 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.148416 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.159326 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.159328 LLDP, length 82 [|LLDP] 19:03:14.159360 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.159360 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0330 cbe0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.159362 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.159364 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.159365 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.159366 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.159367 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.159410 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.159411 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.159415 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.159416 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.159418 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.159420 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.167552 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.167553 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.167566 LLDP, length 82 [|LLDP] 19:03:14.167613 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.167614 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0337 18ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.167615 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.167617 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.167618 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.167619 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.167620 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.167622 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.167623 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.167662 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.167664 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.167667 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.178560 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.178561 LLDP, length 82 [|LLDP] 19:03:14.178583 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.178584 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 033f 7f13 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.178585 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.178586 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.178587 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.178605 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.178606 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.178608 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.178610 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.178611 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.178612 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.178614 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.178615 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.186814 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.186816 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.186817 LLDP, length 82 [|LLDP] 19:03:14.186856 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.186857 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0345 cbe0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.186858 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.186859 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.186861 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.186862 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.186863 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.186864 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.186881 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.186882 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.186885 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.186886 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.197820 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.197822 LLDP, length 82 [|LLDP] 19:03:14.197855 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.197856 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 034e 3246 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.197857 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.197858 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.197859 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.197861 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.197862 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.197863 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.197864 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.197900 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.197901 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.197904 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.197905 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.208831 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.208833 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.208834 LLDP, length 82 [|LLDP] 19:03:14.208883 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.208884 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0356 98ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.208885 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.208886 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.208888 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.208889 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.208904 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.208905 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.208907 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.208909 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.208910 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.208911 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.217106 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.217108 LLDP, length 82 [|LLDP] 19:03:14.217134 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.217135 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 035c e57a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.217136 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.217138 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.217139 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.217140 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.217141 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.217143 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.217144 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.217198 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.217199 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.217202 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.217203 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.228110 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.228112 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.228113 LLDP, length 82 [|LLDP] 19:03:14.228156 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.228157 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0365 4be0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.228158 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.228160 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.228160 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.228162 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.228163 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.228164 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.228165 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.228193 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.228195 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.228197 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.239114 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.239116 LLDP, length 82 [|LLDP] 19:03:14.239143 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.239144 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 036d b24c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.239146 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.239147 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.239148 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.239149 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.239150 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.239167 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.239169 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.239171 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.239173 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.239174 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.239175 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.247365 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.247366 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.247367 LLDP, length 82 [|LLDP] 19:03:14.247408 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.247409 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0373 ff14 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.247411 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.247412 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.247414 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.247415 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.247416 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.247417 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.247418 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.247443 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.247444 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.247447 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.258374 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.258375 LLDP, length 82 [|LLDP] 19:03:14.258402 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.258402 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 037c 657b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.258404 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.258405 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.258406 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.258421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.258422 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.258425 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.258426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.258427 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.258428 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.258429 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.258431 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.269392 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.269394 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.269395 LLDP, length 82 [|LLDP] 19:03:14.269430 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.269431 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0384 cbe1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.269432 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.269433 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.269435 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.269436 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.269437 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.269438 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.269453 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.269454 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.269457 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.269458 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.277638 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.277640 LLDP, length 82 [|LLDP] 19:03:14.277666 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.277666 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 038b 18ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.277668 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.277669 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.277670 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.277671 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.277672 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.277674 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.277675 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.277706 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.277707 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.277709 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.277711 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.288660 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.288662 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.288663 LLDP, length 82 [|LLDP] 19:03:14.288697 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.288697 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0393 7f14 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.288699 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.288700 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.288702 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.288703 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.288730 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.288731 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.288734 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.288735 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.288736 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.288738 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.296914 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.296916 LLDP, length 82 [|LLDP] 19:03:14.296935 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.296936 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0399 cbe1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.296937 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.296938 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.296939 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.296940 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.296941 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.296943 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.296944 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.296976 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.296977 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.296980 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.296981 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.307927 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.307929 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.307930 LLDP, length 82 [|LLDP] 19:03:14.307964 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.307965 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03a2 3247 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.307966 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.307968 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.307969 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.307970 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.307972 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.307973 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.307974 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.307998 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.307999 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.308002 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.318927 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.318928 LLDP, length 82 [|LLDP] 19:03:14.318953 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.318953 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03aa 98b4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.318955 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.318956 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.318957 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.318958 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.318959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.318975 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.318976 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.318979 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.318980 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.318981 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.318983 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.327182 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.327184 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.327185 LLDP, length 82 [|LLDP] 19:03:14.327224 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.327225 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03b0 e57a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.327227 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.327228 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.327229 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.327230 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.327232 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.327233 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.327234 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.327257 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.327259 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.327261 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.338206 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.338208 LLDP, length 82 [|LLDP] 19:03:14.338227 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.338228 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03b9 4be1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.338230 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.338231 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.338233 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.338249 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.338250 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.338253 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.338254 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.338255 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.338257 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.338258 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.338259 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.349206 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.349208 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.349209 LLDP, length 82 [|LLDP] 19:03:14.349250 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.349251 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03c1 b246 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.349252 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.349253 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.349255 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.349256 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.349257 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.349258 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.349272 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.349274 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.349276 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.349277 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.357460 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.357462 LLDP, length 82 [|LLDP] 19:03:14.357486 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.357487 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03c7 ff13 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.357489 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.357490 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.357491 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.357492 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.357493 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.357494 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.357495 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.357526 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.357528 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.357530 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.357531 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.368469 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.368471 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.368472 LLDP, length 82 [|LLDP] 19:03:14.368513 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.368514 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03d0 657a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.368515 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.368517 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.368518 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.368519 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.368533 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.368534 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.368537 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.368538 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.368539 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.368541 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.376728 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.376731 LLDP, length 82 [|LLDP] 19:03:14.376754 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.376755 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03d6 b246 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.376757 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.376758 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.376759 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.376760 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.376761 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.376762 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.376763 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.376794 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.376795 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.376798 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.376799 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.387738 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.387740 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.387741 LLDP, length 82 [|LLDP] 19:03:14.387781 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.387782 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03df 18ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.387783 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.387784 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.387785 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.387787 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.387788 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.387789 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.387790 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.387814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.387815 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.387818 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.398763 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.398765 LLDP, length 82 [|LLDP] 19:03:14.398783 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.398784 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03e7 7f13 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.398785 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.398786 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.398787 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.398789 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.398790 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.398805 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.398807 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.398809 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.398810 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.398812 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.398813 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.407018 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.407019 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.407020 LLDP, length 82 [|LLDP] 19:03:14.407055 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.407057 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03ed cbdf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.407058 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.407059 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.407061 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.407062 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.407063 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.407064 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.407065 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.407089 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.407090 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.407093 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.418017 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.418019 LLDP, length 82 [|LLDP] 19:03:14.418044 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.418044 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03f6 3246 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.418046 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.418047 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.418048 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.418064 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.418065 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.418067 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.418069 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.418070 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.418072 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.418073 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.418075 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.429027 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.429029 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.429030 LLDP, length 82 [|LLDP] 19:03:14.429072 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.429073 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03fe 98ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.429075 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.429076 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.429077 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.429078 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.429079 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.429080 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.429096 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.429097 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.429099 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.429100 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.437282 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.437284 LLDP, length 82 [|LLDP] 19:03:14.437309 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.437310 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0404 e580 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.437311 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.437313 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.437314 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.437315 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.437316 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.437317 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.437318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.437349 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.437350 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.437353 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.437354 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.448292 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.448294 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.448295 LLDP, length 82 [|LLDP] 19:03:14.448336 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.448337 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 040d 4be0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.448339 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.448340 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.448341 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.448342 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.448356 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.448357 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.448359 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.448360 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.448362 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.448363 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.459313 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.459315 LLDP, length 82 [|LLDP] 19:03:14.459333 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.459334 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0415 b246 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.459336 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.459337 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.459338 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.459339 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.459340 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.459341 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.459343 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.459373 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.459375 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.459377 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.459379 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.467575 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.467577 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.467578 LLDP, length 82 [|LLDP] 19:03:14.467612 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.467612 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 041b ff13 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.467614 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.467615 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.467616 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.467618 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.467619 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.467620 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.467621 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.467645 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.467653 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.467656 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.478570 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.478572 LLDP, length 82 [|LLDP] 19:03:14.478598 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.478598 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0424 657a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.478600 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.478601 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.478602 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.478603 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.478604 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.478620 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.478621 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.478624 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.478625 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.478626 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.478628 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.486842 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.486843 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.486844 LLDP, length 82 [|LLDP] 19:03:14.486885 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.486886 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 042a b247 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.486887 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.486888 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.486890 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.486891 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.486892 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.486893 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.486894 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.486918 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.486919 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.486922 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.497835 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.497837 LLDP, length 82 [|LLDP] 19:03:14.497860 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.497861 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0433 18ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.497863 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.497864 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.497865 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.497879 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.497880 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.497882 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.497884 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.497885 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.497886 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.497888 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.497889 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.508847 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.508849 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.508850 LLDP, length 82 [|LLDP] 19:03:14.508890 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.508891 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 043b 7f14 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.508892 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.508894 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.508895 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.508896 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.508898 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.508899 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.508913 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.508914 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.508917 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.508918 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.517108 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.517109 LLDP, length 82 [|LLDP] 19:03:14.517127 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.517128 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0441 cbe4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.517130 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.517131 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.517132 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.517133 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.517134 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.517135 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.517136 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.517168 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.517170 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.517172 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.517174 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.528126 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.528128 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.528129 LLDP, length 82 [|LLDP] 19:03:14.528163 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.528164 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 044a 3247 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.528165 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.528167 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.528168 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.528169 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.528183 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.528184 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.528187 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.528188 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.528189 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.528191 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.539126 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.539128 LLDP, length 82 [|LLDP] 19:03:14.539152 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.539153 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0452 98ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.539154 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.539156 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.539157 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.539158 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.539159 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.539160 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.539161 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.539193 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.539194 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.539196 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.539198 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.547383 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.547385 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.547386 LLDP, length 82 [|LLDP] 19:03:14.547426 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.547427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0458 e57a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.547429 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.547430 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.547431 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.547433 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.547434 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.547435 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.547436 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.547461 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.547463 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.547466 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.558393 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.558395 LLDP, length 82 [|LLDP] 19:03:14.558420 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.558421 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0461 4be1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.558423 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.558424 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.558425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.558426 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.558427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.558444 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.558445 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.558447 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.558449 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.558450 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.558452 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.569412 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.569414 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.569415 LLDP, length 82 [|LLDP] 19:03:14.569448 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.569449 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0469 b24d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.569451 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.569452 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.569454 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.569455 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.569456 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.569457 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.569458 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.569482 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.569484 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.569486 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.577659 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.577660 LLDP, length 82 [|LLDP] 19:03:14.577685 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.577686 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 046f ff13 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.577687 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.577688 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.577690 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.577704 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.577705 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.577707 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.577709 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.577710 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.577711 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.577713 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.577714 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.588681 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.588682 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.588683 LLDP, length 82 [|LLDP] 19:03:14.588717 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.588718 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0478 657a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.588720 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.588721 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.588722 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.588723 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.588724 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.588725 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.588741 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.588742 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.588744 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.588746 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.596928 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.596930 LLDP, length 82 [|LLDP] 19:03:14.596954 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.596955 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 047e b247 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.596956 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.596957 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.596958 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.596959 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.596961 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.596962 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.596963 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.596994 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.596995 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.596998 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.596999 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.607935 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.607937 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.607938 LLDP, length 82 [|LLDP] 19:03:14.607982 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.607983 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0487 18ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.607985 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.607986 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.607987 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.607988 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.608003 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.608004 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.608007 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.608008 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.608009 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.608010 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.618948 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.618950 LLDP, length 82 [|LLDP] 19:03:14.618974 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.618974 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 048f 7f13 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.618976 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.618977 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.618978 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.618979 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.618980 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.618981 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.618983 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.619016 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.619018 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.619020 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.619022 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.627210 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.627211 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.627212 LLDP, length 82 [|LLDP] 19:03:14.627247 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.627248 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0495 cbe0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.627250 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.627251 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.627252 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.627254 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.627255 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.627256 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.627257 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.627281 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.627282 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.627285 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.638216 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.638218 LLDP, length 82 [|LLDP] 19:03:14.638243 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.638244 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 049e 3246 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.638246 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.638247 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.638248 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.638249 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.638250 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.638267 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.638268 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.638271 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.638272 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.638273 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.638274 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.649224 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.649226 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.649227 LLDP, length 82 [|LLDP] 19:03:14.649268 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.649269 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04a6 98ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.649270 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.649272 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.649273 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.649274 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.649275 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.649276 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.649278 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.649301 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.649302 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.649305 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.657485 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.657487 LLDP, length 82 [|LLDP] 19:03:14.657513 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.657514 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04ac e579 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.657515 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.657517 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.657518 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.657535 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.657536 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.657538 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.657539 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.657540 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.657542 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.657543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.657544 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.668491 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.668493 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.668494 LLDP, length 82 [|LLDP] 19:03:14.668535 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.668536 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04b5 4bdf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.668537 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.668538 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.668539 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.668541 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.668542 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.668543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.668558 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.668559 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.668562 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.668563 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.676750 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.676752 LLDP, length 82 [|LLDP] 19:03:14.676776 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.676777 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04bb 98ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.676778 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.676779 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.676780 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.676781 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.676782 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.676784 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.676785 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.676817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.676818 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.676821 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.676822 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.687766 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.687768 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.687769 LLDP, length 82 [|LLDP] 19:03:14.687814 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.687815 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04c3 ff19 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.687817 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.687818 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.687819 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.687821 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.687835 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.687837 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.687839 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.687840 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.687841 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.687843 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.698770 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.698772 LLDP, length 82 [|LLDP] 19:03:14.698798 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.698799 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04cc 6579 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.698800 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.698801 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.698802 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.698803 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.698804 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.698805 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.698807 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.698837 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.698839 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.698841 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.698843 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.707028 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.707029 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.707030 LLDP, length 82 [|LLDP] 19:03:14.707070 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.707071 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04d2 b247 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.707073 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.707074 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.707075 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.707076 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.707077 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.707078 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.707080 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.707103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.707104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.707107 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.718036 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.718038 LLDP, length 82 [|LLDP] 19:03:14.718065 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.718065 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04db 18ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.718067 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.718068 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.718069 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.718070 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.718071 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.718087 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.718088 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.718091 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.718092 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.718093 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.718095 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.729046 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.729048 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.729049 LLDP, length 82 [|LLDP] 19:03:14.729090 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.729091 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04e3 7f14 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.729092 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.729094 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.729095 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.729096 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.729097 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.729098 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.729100 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.729123 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.729124 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.729127 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.737303 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.737305 LLDP, length 82 [|LLDP] 19:03:14.737329 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.737330 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04e9 cbe0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.737331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.737332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.737333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.737348 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.737349 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.737352 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.737354 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.737355 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.737356 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.737357 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.737359 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.748314 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.748315 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.748316 LLDP, length 82 [|LLDP] 19:03:14.748358 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.748358 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04f2 3247 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.748360 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.748362 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.748363 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.748364 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.748366 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.748367 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.748382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.748383 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.748386 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.748387 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.759326 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.759329 LLDP, length 82 [|LLDP] 19:03:14.759354 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.759355 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04fa 98ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.759356 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.759357 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.759359 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.759360 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.759361 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.759362 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.759363 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.759395 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.759396 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.759399 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.759400 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.767593 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.767594 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.767595 LLDP, length 82 [|LLDP] 19:03:14.767629 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.767631 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0500 e57d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.767632 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.767633 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.767635 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.767636 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.767659 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.767660 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.767663 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.767664 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.767665 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.767667 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.778599 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.778601 LLDP, length 82 [|LLDP] 19:03:14.778621 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.778622 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0509 4be1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.778623 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.778625 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.778626 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.778627 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.778628 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.778629 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.778630 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.778664 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.778665 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.778668 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.778669 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.786851 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.786853 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.786854 LLDP, length 82 [|LLDP] 19:03:14.786894 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.786895 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 050f 98ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.786897 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.786898 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.786899 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.786900 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.786902 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.786903 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.786904 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.786928 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.786929 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.786932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.797874 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.797876 LLDP, length 82 [|LLDP] 19:03:14.797907 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.797908 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0517 ff14 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.797909 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.797911 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.797912 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.797913 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.797914 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.797934 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.797935 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.797938 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.797939 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.797940 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.797942 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.808878 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.808881 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.808888 LLDP, length 82 [|LLDP] 19:03:14.808931 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.808932 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0520 657b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.808933 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.808934 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.808935 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.808937 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.808938 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.808939 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.808940 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.808967 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.808968 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.808971 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.817131 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.817132 LLDP, length 82 [|LLDP] 19:03:14.817160 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.817160 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0526 b247 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.817162 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.817163 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.817164 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.817180 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.817181 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.817184 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.817185 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.817186 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.817188 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.817189 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.817191 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.828152 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.828154 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.828155 LLDP, length 82 [|LLDP] 19:03:14.828192 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.828192 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 052f 18ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.828194 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.828195 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.828196 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.828198 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.828199 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.828200 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.828217 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.828218 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.828221 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.828222 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.839151 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.839153 LLDP, length 82 [|LLDP] 19:03:14.839179 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.839180 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0537 7f14 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.839181 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.839182 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.839184 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.839185 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.839186 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.839187 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.839188 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.839225 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.839226 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.839229 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.839231 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.847417 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.847418 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.847426 LLDP, length 82 [|LLDP] 19:03:14.847476 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.847477 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 053d cbe1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.847478 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.847480 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.847481 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.847482 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.847499 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.847501 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.847504 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.847505 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.847506 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.847508 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.858427 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.858429 LLDP, length 82 [|LLDP] 19:03:14.858460 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.858460 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0546 3246 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.858462 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.858463 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.858464 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.858465 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.858466 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.858468 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.858469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.858512 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.858514 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.858517 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.858518 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.866674 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.866676 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.866677 LLDP, length 82 [|LLDP] 19:03:14.866719 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.866720 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 054c 7f14 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.866722 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.866723 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.866724 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.866725 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.866726 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.866727 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.866729 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.866754 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.866755 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.866758 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.877685 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.877687 LLDP, length 82 [|LLDP] 19:03:14.877713 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.877714 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0554 e57a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.877715 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.877717 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.877718 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.877719 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.877720 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.877737 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.877738 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.877740 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.877741 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.877743 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.877744 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.888692 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.888694 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.888695 LLDP, length 82 [|LLDP] 19:03:14.888737 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.888738 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 055d 4be0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.888740 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.888741 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.888742 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.888743 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.888745 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.888746 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.888747 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.888771 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.888772 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.888775 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.896955 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.896957 LLDP, length 82 [|LLDP] 19:03:14.896982 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.896983 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0563 98ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.896985 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.896986 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.896987 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.897002 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.897003 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.897005 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.897007 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.897008 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.897009 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.897010 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.897011 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.907987 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.907989 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.907990 LLDP, length 82 [|LLDP] 19:03:14.908032 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.908033 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 056b ff13 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.908034 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.908036 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.908037 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.908038 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.908040 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.908041 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.908058 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.908059 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.908061 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.908063 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.918974 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.918975 LLDP, length 82 [|LLDP] 19:03:14.919000 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.919001 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0574 6579 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.919002 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.919003 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.919004 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.919005 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.919006 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.919008 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.919009 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.919043 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.919044 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.919047 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.919048 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.927229 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.927232 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.927233 LLDP, length 82 [|LLDP] 19:03:14.927276 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.927277 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 057a b246 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.927279 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.927279 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.927280 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.927281 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.927295 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.927297 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.927299 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.927300 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.927301 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.927302 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.938238 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.938240 LLDP, length 82 [|LLDP] 19:03:14.938268 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.938269 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0583 18b3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.938270 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.938271 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.938272 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.938273 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.938274 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.938276 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.938277 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.938312 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.938314 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.938316 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.938318 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.949247 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.949249 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.949250 LLDP, length 82 [|LLDP] 19:03:14.949292 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.949293 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 058b 7f12 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.949295 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.949296 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.949297 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.949299 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.949300 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.949301 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.949302 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.949326 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.949328 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.949331 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.957508 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.957510 LLDP, length 82 [|LLDP] 19:03:14.957534 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.957535 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0591 cbe0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.957536 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.957537 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.957538 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.957539 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.957540 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.957558 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.957559 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.957561 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.957562 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.957564 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.957565 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.968522 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.968524 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.968525 LLDP, length 82 [|LLDP] 19:03:14.968560 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.968561 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 059a 3246 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.968562 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.968564 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.968565 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.968566 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.968567 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.968568 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.968569 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.968594 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.968595 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.968598 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.976775 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.976776 LLDP, length 82 [|LLDP] 19:03:14.976802 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.976803 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05a0 7f13 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.976805 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.976806 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.976807 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.976821 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.976822 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.976825 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.976826 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.976827 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.976828 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.976829 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.976831 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.987782 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.987783 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.987784 LLDP, length 82 [|LLDP] 19:03:14.987825 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.987826 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05a8 e57a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.987827 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.987828 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.987829 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.987831 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.987832 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.987833 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.987848 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.987849 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.987852 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.987853 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:14.998790 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:14.998792 LLDP, length 82 [|LLDP] 19:03:14.998816 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:14.998817 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05b1 4be0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:14.998819 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:14.998820 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:14.998821 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:14.998822 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.998823 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:14.998824 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:14.998826 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.998858 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:14.998859 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:14.998862 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:14.998863 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.007060 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.007062 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.007063 LLDP, length 82 [|LLDP] 19:03:15.007100 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.007101 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05b7 98ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.007103 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.007118 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.007120 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.007121 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.007137 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.007138 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.007141 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.007143 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.007145 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.007147 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.018085 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.018087 LLDP, length 82 [|LLDP] 19:03:15.018122 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.018124 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05bf ff14 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.018125 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.018126 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.018128 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.018129 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.018130 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.018132 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.018133 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.018192 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.018194 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.018197 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.018199 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.029081 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.029084 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.029085 LLDP, length 82 [|LLDP] 19:03:15.029141 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.029142 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05c8 657a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.029144 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.029145 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.029146 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.029148 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.029149 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.029150 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.029151 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.029178 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.029180 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.029183 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.037331 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.037332 LLDP, length 82 [|LLDP] 19:03:15.037361 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.037361 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05ce b248 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.037363 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.037364 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.037365 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.037366 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.037367 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.037387 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.037388 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.037391 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.037392 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.037394 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.037395 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.048339 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.048341 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.048342 LLDP, length 82 [|LLDP] 19:03:15.048387 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.048388 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05d7 18ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.048389 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.048391 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.048392 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.048393 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.048394 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.048395 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.048396 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.048423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.048424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.048427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.059349 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.059350 LLDP, length 82 [|LLDP] 19:03:15.059376 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.059377 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05df 7f14 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.059379 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.059380 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.059381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.059396 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.059397 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.059400 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.059401 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.059403 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.059404 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.059406 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.059407 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.067607 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.067609 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.067610 LLDP, length 82 [|LLDP] 19:03:15.067661 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.067662 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05e5 cbe1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.067664 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.067666 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.067667 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.067668 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.067669 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.067670 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.067687 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.067689 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.067691 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.067693 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.078625 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.078627 LLDP, length 82 [|LLDP] 19:03:15.078649 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.078649 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05ee 3247 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.078651 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.078652 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.078653 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.078654 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.078656 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.078657 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.078658 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.078691 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.078693 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.078695 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.078696 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.086864 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.086865 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.086866 LLDP, length 82 [|LLDP] 19:03:15.086904 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.086905 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05f4 7f14 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.086907 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.086908 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.086909 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.086923 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.086925 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.097880 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.097881 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.097901 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.097903 LLDP, length 82 [|LLDP] 19:03:15.097918 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.097919 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05fc e57b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.097920 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.097922 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.097923 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.097924 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.097926 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.097927 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.097949 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.097951 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.097952 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.108905 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.108908 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.108915 LLDP, length 82 [|LLDP] 19:03:15.108964 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.108965 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0605 4be1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.108966 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.108967 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.108981 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.108983 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.108984 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.108986 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.108987 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.108988 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.109003 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.109006 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.117178 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.117180 LLDP, length 82 [|LLDP] 19:03:15.117202 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.117203 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 060b 98ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.117205 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.117206 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.117207 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.117208 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.117209 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.117233 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.117236 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.117237 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.117238 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.117270 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.117272 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.128172 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.128174 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.128175 LLDP, length 82 [|LLDP] 19:03:15.128232 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.128233 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0613 ff14 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.128234 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.128236 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.128237 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.128238 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.128239 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.128240 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.128266 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.128268 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.128272 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.128274 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.139170 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.139172 LLDP, length 82 [|LLDP] 19:03:15.139198 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.139199 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 061c 657a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.139201 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.139202 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.139203 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.139219 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.139221 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.139222 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.139223 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.139225 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.139226 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.139253 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.139256 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.147431 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.147433 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.147434 LLDP, length 82 [|LLDP] 19:03:15.147480 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.147481 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0622 b246 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.147483 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.147484 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.147485 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.147487 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.147488 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.147489 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.147515 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.147517 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.147520 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.147522 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.158444 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.158446 LLDP, length 82 [|LLDP] 19:03:15.158473 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.158474 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 062b 18ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.158475 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.158476 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.158477 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.158478 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.158480 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.158481 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.158516 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.158518 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.158519 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.158530 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.158533 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.166694 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.166695 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.166696 LLDP, length 82 [|LLDP] 19:03:15.166738 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.166739 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0631 657a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.166741 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.166742 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.166743 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.166744 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.166759 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.166761 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.166762 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.166763 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.166776 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.166783 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.177702 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.177704 LLDP, length 82 [|LLDP] 19:03:15.177731 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.177732 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0639 cbe0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.177733 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.177734 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.177735 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.177736 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.177738 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.177739 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.177776 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.177778 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.177779 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.177791 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.177793 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.188723 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.188725 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.188726 LLDP, length 82 [|LLDP] 19:03:15.188767 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.188768 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0642 324d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.188770 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.188771 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.188784 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.188786 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.188787 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.188788 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.188789 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.188790 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.188805 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.188807 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.196974 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.196975 LLDP, length 82 [|LLDP] 19:03:15.196994 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.196995 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0648 7f13 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.196996 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.196998 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.196999 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.197000 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.197001 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.197016 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.197018 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.197019 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.197021 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.197046 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.197048 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.207977 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.207978 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.207979 LLDP, length 82 [|LLDP] 19:03:15.208017 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.208018 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0650 e579 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.208020 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.208021 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.208022 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.208023 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.208024 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.208025 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.208047 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.208050 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.208053 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.208055 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.218995 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.218996 LLDP, length 82 [|LLDP] 19:03:15.219023 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.219024 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0659 4bdf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.219026 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.219027 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.219028 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.219043 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.219045 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.219046 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.219048 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.219049 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.219050 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.219078 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.219081 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.227248 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.227249 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.227250 LLDP, length 82 [|LLDP] 19:03:15.227295 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.227295 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 065f 98ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.227297 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.227298 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.227299 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.227301 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.227302 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.227303 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.227326 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.227328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.227331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.227333 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.238263 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.238264 LLDP, length 82 [|LLDP] 19:03:15.238297 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.238298 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0667 ff13 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.238299 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.238301 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.238302 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.238303 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.238304 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.238306 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.238343 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.238345 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.238346 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.238357 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.238360 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.249293 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.249295 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.249296 LLDP, length 82 [|LLDP] 19:03:15.249345 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.249346 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0670 657a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.249348 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.249349 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.249350 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.249351 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.249369 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.249371 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.249372 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.249373 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.249387 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.249389 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.257530 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.257532 LLDP, length 82 [|LLDP] 19:03:15.257561 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.257562 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0676 b246 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.257564 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.257565 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.257566 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.257567 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.257569 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.257570 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.257603 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.257605 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.257606 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.257617 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.257620 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.268543 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.268545 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.268546 LLDP, length 82 [|LLDP] 19:03:15.268593 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.268594 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 067f 18ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.268595 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.268596 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.268608 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.268610 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.268611 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.268613 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.268614 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.268615 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.268630 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.268632 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.276794 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.276795 LLDP, length 82 [|LLDP] 19:03:15.276821 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.276821 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0685 657a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.276823 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.276824 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.276825 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.276827 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.276828 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.276844 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.276846 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.276847 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.276848 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.276872 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.276874 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.287802 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.287804 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.287805 LLDP, length 82 [|LLDP] 19:03:15.287846 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.287848 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 068d cbe0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.287849 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.287850 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.287851 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.287853 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.287854 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.287855 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.287891 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.287893 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.287897 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.287899 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.298815 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.298816 LLDP, length 82 [|LLDP] 19:03:15.298840 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.298842 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0696 3247 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.298843 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.298844 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.298846 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.298860 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.298862 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.298863 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.298864 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.298866 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.298867 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.298893 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.298895 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.307074 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.307075 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.307076 LLDP, length 82 [|LLDP] 19:03:15.307116 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.307116 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 069c 7f14 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.307118 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.307119 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.307120 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.307121 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.307122 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.307123 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.307147 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.307149 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.307152 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.307154 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.318082 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.318083 LLDP, length 82 [|LLDP] 19:03:15.318108 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.318108 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06a4 e57a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.318110 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.318111 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.318112 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.318113 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.318114 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.318116 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.318146 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.318148 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.318149 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.318161 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.318163 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.329089 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.329091 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.329092 LLDP, length 82 [|LLDP] 19:03:15.329134 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.329135 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06ad 4be0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.329136 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.329137 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.329138 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.329139 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.329153 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.329155 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.329156 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.329158 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.329171 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.329173 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.337348 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.337349 LLDP, length 82 [|LLDP] 19:03:15.337373 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.337374 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06b3 98ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.337375 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.337376 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.337378 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.337379 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.337380 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.337381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.337410 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.337412 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.337414 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.337424 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.337427 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.348357 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.348359 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.348360 LLDP, length 82 [|LLDP] 19:03:15.348401 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.348402 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06bb ff14 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.348404 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.348405 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.348416 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.348418 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.348419 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.348420 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.348421 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.348423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.348437 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.348439 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.356619 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.356621 LLDP, length 82 [|LLDP] 19:03:15.356649 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.356649 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06c2 4be0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.356651 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.356652 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.356653 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.356654 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.356656 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.356674 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.356676 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.356677 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.356678 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.356707 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.356709 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.367638 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.367640 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.367641 LLDP, length 82 [|LLDP] 19:03:15.367686 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.367687 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06ca b246 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.367689 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.367690 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.367691 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.367693 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.367694 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.367695 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.367720 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.367722 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.367726 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.367728 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.378647 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.378649 LLDP, length 82 [|LLDP] 19:03:15.378667 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.378668 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06d3 18ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.378669 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.378670 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.378671 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.378686 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.378688 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.378689 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.378690 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.378691 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.378692 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.378717 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.378720 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.386893 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.386895 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.386896 LLDP, length 82 [|LLDP] 19:03:15.386936 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.386937 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06d9 6580 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.386938 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.386939 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.386940 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.386941 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.386943 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.386944 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.386967 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.386969 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.386972 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.386974 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.397905 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.397907 LLDP, length 82 [|LLDP] 19:03:15.397931 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.397931 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06e1 cbe0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.397933 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.397934 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.397935 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.397936 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.397937 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.397939 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.397969 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.397971 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.397972 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.397984 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.397986 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.408913 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.408915 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.408916 LLDP, length 82 [|LLDP] 19:03:15.408956 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.408957 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06ea 3246 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.408958 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.408959 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.408961 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.408962 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.408976 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.408978 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.408979 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.408980 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.408993 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.408995 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.417175 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.417176 LLDP, length 82 [|LLDP] 19:03:15.417195 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.417196 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06f0 7f13 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.417198 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.417199 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.417200 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.417201 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.417202 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.417204 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.417234 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.417236 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.417237 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.417249 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.417251 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.428180 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.428182 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.428183 LLDP, length 82 [|LLDP] 19:03:15.428223 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.428223 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06f8 e579 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.428225 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.428226 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.428239 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.428241 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.428242 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.428243 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.428244 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.428245 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.428260 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.428262 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.439200 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.439202 LLDP, length 82 [|LLDP] 19:03:15.439220 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.439221 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0701 4be7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.439223 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.439224 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.439225 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.439226 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.439228 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.439242 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.439244 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.439246 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.439247 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.439271 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.439274 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.447447 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.447448 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.447449 LLDP, length 82 [|LLDP] 19:03:15.447491 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.447492 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0707 98ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.447494 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.447495 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.447496 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.447497 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.447498 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.447499 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.447522 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.447524 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.447527 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.447530 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.458458 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.458460 LLDP, length 82 [|LLDP] 19:03:15.458489 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.458490 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 070f ff13 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.458491 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.458493 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.458494 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.458512 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.458514 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.458516 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.458517 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.458518 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.458519 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.458550 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.458552 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.466716 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.466719 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.466720 LLDP, length 82 [|LLDP] 19:03:15.466762 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.466763 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0716 4be0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.466765 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.466766 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.466767 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.466768 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.466769 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.466770 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.466794 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.466796 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.466800 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.466801 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.477727 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.477729 LLDP, length 82 [|LLDP] 19:03:15.477754 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.477755 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 071e b247 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.477756 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.477757 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.477759 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.477760 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.477761 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.477762 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.477793 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.477795 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.477796 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.477808 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.477810 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.488747 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.488748 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.488749 LLDP, length 82 [|LLDP] 19:03:15.488784 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.488785 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0727 18ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.488787 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.488788 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.488789 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.488790 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.488804 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.488806 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.488807 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.488809 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.488822 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.488824 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.497004 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.497006 LLDP, length 82 [|LLDP] 19:03:15.497025 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.497025 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 072d 657a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.497027 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.497028 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.497029 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.497030 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.497031 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.497032 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.497062 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.497063 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.497065 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.497076 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.497078 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.508003 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.508005 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.508006 LLDP, length 82 [|LLDP] 19:03:15.508047 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.508047 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0735 cbe1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.508049 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.508050 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.508062 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.508063 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.508065 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.508066 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.508067 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.508068 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.508083 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.508085 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.519015 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.519016 LLDP, length 82 [|LLDP] 19:03:15.519041 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.519041 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 073e 3247 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.519043 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.519044 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.519045 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.519046 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.519048 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.519064 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.519066 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.519067 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.519068 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.519092 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.519095 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.527270 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.527272 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.527273 LLDP, length 82 [|LLDP] 19:03:15.527311 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.527312 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0744 7f14 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.527314 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.527315 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.527316 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.527317 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.527318 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.527320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.527343 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.527345 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.527348 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.527350 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.538291 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.538293 LLDP, length 82 [|LLDP] 19:03:15.538312 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.538313 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 074c e57a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.538314 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.538315 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.538316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.538331 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.538333 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.538334 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.538335 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.538337 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.538338 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.538365 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.538367 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.549289 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.549291 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.549292 LLDP, length 82 [|LLDP] 19:03:15.549334 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.549335 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0755 4be0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.549336 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.549338 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.549339 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.549340 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.549341 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.549342 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.549365 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.549367 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.549371 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.549373 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.557560 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.557561 LLDP, length 82 [|LLDP] 19:03:15.557582 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.557583 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 075b 98ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.557584 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.557585 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.557586 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.557588 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.557589 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.557590 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.557621 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.557623 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.557624 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.557636 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.557638 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.568559 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.568561 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.568562 LLDP, length 82 [|LLDP] 19:03:15.568598 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.568599 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0763 ff14 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.568601 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.568602 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.568603 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.568604 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.568618 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.568620 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.568621 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.568623 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.568635 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.568638 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.576815 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.576817 LLDP, length 82 [|LLDP] 19:03:15.576841 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.576842 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 076a 4be0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.576843 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.576844 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.576845 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.576847 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.576848 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.576849 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.576881 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.576883 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.576884 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.576897 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.576899 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.587825 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.587826 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.587828 LLDP, length 82 [|LLDP] 19:03:15.587870 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.587871 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0772 b247 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.587872 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.587873 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.587885 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.587887 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.587888 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.587889 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.587891 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.587892 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.587906 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.587908 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.598834 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.598836 LLDP, length 82 [|LLDP] 19:03:15.598861 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.598862 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 077b 18ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.598863 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.598864 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.598865 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.598866 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.598868 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.598883 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.598885 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.598886 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.598887 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.598911 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.598913 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.607092 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.607093 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.607095 LLDP, length 82 [|LLDP] 19:03:15.607134 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.607135 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0781 6579 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.607137 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.607138 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.607139 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.607140 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.607141 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.607142 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.607165 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.607167 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.607170 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.607172 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.618105 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.618106 LLDP, length 82 [|LLDP] 19:03:15.618125 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.618126 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0789 cbdf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.618127 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.618128 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.618129 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.618143 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.618145 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.618146 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.618147 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.618148 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.618149 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.618174 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.618176 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.629111 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.629113 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.629114 LLDP, length 82 [|LLDP] 19:03:15.629154 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.629155 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0792 3246 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.629157 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.629158 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.629159 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.629161 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.629162 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.629163 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.629185 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.629187 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.629191 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.629193 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.637367 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.637369 LLDP, length 82 [|LLDP] 19:03:15.637394 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.637394 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0798 7f1a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.637396 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.637397 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.637398 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.637399 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.637400 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.637402 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.637431 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.637432 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.637433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.637445 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.637447 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.648385 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.648386 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.648388 LLDP, length 82 [|LLDP] 19:03:15.648423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.648424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07a0 e579 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.648426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.648427 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.648428 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.648429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.648442 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.648444 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.648446 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.648447 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.648459 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.648462 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.656636 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.656638 LLDP, length 82 [|LLDP] 19:03:15.656662 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.656663 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07a7 3246 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.656664 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.656665 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.656666 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.656668 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.656669 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.656670 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.656699 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.656701 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.656703 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.656714 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.656716 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.667659 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.667660 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.667661 LLDP, length 82 [|LLDP] 19:03:15.667697 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.667698 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07af 98ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.667699 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.667700 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.667713 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.667715 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.667716 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.667717 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.667718 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.667720 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.667735 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.667737 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.678661 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.678663 LLDP, length 82 [|LLDP] 19:03:15.678688 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.678689 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07b7 ff13 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.678690 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.678691 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.678693 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.678694 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.678695 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.678711 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.678713 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.678714 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.678715 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.678741 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.678743 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.686917 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.686918 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.686920 LLDP, length 82 [|LLDP] 19:03:15.686959 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.686960 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07be 4bdf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.686962 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.686963 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.686964 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.686965 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.686967 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.686968 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.686990 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.686992 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.686995 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.686997 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.698105 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.698107 LLDP, length 82 [|LLDP] 19:03:15.698125 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.698126 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07c6 b246 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.698128 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.698129 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.698130 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.698145 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.698147 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.698148 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.698149 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.698150 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.698152 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.698178 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.698180 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.708936 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.708937 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.708938 LLDP, length 82 [|LLDP] 19:03:15.708980 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.708980 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07cf 18ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.708982 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.708983 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.708984 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.708985 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.708986 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.708987 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.709010 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.709012 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.709015 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.709017 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.717195 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.717197 LLDP, length 82 [|LLDP] 19:03:15.717225 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.717225 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07d5 657a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.717227 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.717228 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.717229 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.717230 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.717232 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.717233 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.717269 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.717271 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.717272 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.717284 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.717286 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.728205 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.728206 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.728207 LLDP, length 82 [|LLDP] 19:03:15.728250 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.728250 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07dd cbe0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.728252 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.728253 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.728254 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.728256 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.728269 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.728271 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.728273 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.728274 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.728287 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.728289 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.739222 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.739224 LLDP, length 82 [|LLDP] 19:03:15.739243 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.739244 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07e6 3246 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.739245 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.739246 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.739247 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.739249 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.739250 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.739251 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.739280 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.739282 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.739283 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.739294 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.739297 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.747480 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.747482 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.747483 LLDP, length 82 [|LLDP] 19:03:15.747517 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.747518 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07ec 7f14 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.747520 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.747521 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.747533 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.747534 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.747536 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.747537 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.747538 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.747539 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.747554 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.747556 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.758497 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.758499 LLDP, length 82 [|LLDP] 19:03:15.758524 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.758525 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07f4 e57a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.758527 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.758528 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.758529 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.758530 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.758532 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.758552 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.758554 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.758555 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.758556 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.758587 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.758589 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.766753 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.766754 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.766755 LLDP, length 82 [|LLDP] 19:03:15.766796 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.766797 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07fb 3247 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.766799 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.766800 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.766801 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.766802 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.766803 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.766804 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.766830 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.766832 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.766835 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.766837 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.777748 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.777750 LLDP, length 82 [|LLDP] 19:03:15.777778 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.777779 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0803 98ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.777780 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.777782 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.777783 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.777799 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.777801 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.777802 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.777803 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.777805 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.777806 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.777834 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.777836 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.788759 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.788761 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.788762 LLDP, length 82 [|LLDP] 19:03:15.788805 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.788807 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 080b ff14 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.788808 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.788809 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.788810 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.788811 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.788812 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.788813 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.788837 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.788839 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.788842 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.788844 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.797032 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.797033 LLDP, length 82 [|LLDP] 19:03:15.797058 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.797059 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0812 4be1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.797061 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.797062 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.797063 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.797064 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.797065 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.797067 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.797105 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.797107 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.797108 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.797121 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.797123 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.808041 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.808043 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.808044 LLDP, length 82 [|LLDP] 19:03:15.808086 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.808087 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 081a b247 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.808089 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.808090 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.808091 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.808092 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.808107 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.808109 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.808110 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.808111 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.808125 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.808127 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.819037 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.819039 LLDP, length 82 [|LLDP] 19:03:15.819065 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.819066 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0823 18ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.819068 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.819069 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.819070 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.819071 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.819072 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.819073 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.819106 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.819108 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.819110 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.819122 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.819125 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.827293 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.827295 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.827296 LLDP, length 82 [|LLDP] 19:03:15.827339 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.827340 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0829 657b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.827341 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.827343 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.827355 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.827356 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.827357 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.827359 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.827360 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.827361 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.827376 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.827378 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.838308 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.838310 LLDP, length 82 [|LLDP] 19:03:15.838337 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.838337 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0831 cbe1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.838339 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.838340 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.838341 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.838342 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.838344 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.838361 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.838363 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.838365 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.838366 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.838393 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.838395 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.849324 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.849325 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.849326 LLDP, length 82 [|LLDP] 19:03:15.849377 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.849378 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 083a 3247 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.849379 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.849380 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.849382 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.849383 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.849384 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.849385 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.849411 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.849413 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.849417 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.849419 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.857574 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.857576 LLDP, length 82 [|LLDP] 19:03:15.857605 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.857606 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0840 7f14 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.857608 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.857609 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.857610 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.857627 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.857629 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.857630 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.857631 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.857632 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.857633 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.857665 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.857667 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.868587 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.868589 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.868590 LLDP, length 82 [|LLDP] 19:03:15.868633 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.868634 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0848 e57a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.868635 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.868637 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.868638 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.868639 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.868640 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.868641 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.868667 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.868669 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.868672 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.868693 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.876871 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.876874 LLDP, length 82 [|LLDP] 19:03:15.876902 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.876904 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 084f 3247 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.876905 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.876906 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.876908 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.876909 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.876910 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.876911 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.876967 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.876971 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.876972 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.876986 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.876988 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.887870 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.887872 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.887873 LLDP, length 82 [|LLDP] 19:03:15.887924 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.887926 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0857 98b1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.887927 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.887928 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.887930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.887931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.887948 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.887950 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.887951 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.887952 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.887966 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.887968 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.898862 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.898864 LLDP, length 82 [|LLDP] 19:03:15.898894 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.898895 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 085f ff14 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.898897 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.898898 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.898899 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.898900 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.898901 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.898902 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.898941 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.898943 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.898944 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.898958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.898960 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.907118 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.907120 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.907121 LLDP, length 82 [|LLDP] 19:03:15.907165 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.907166 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0866 4be0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.907168 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.907169 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.907181 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.907183 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.907184 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.907185 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.907186 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.907187 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.907203 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.907205 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.918131 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.918133 LLDP, length 82 [|LLDP] 19:03:15.918160 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.918160 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 086e b246 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.918162 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.918163 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.918164 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.918166 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.918167 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.918183 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.918185 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.918186 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.918188 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.918216 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.918218 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.929142 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.929143 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.929145 LLDP, length 82 [|LLDP] 19:03:15.929182 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.929183 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0877 18ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.929185 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.929186 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.929188 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.929189 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.929190 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.929191 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.929214 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.929216 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.929220 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.929222 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.937394 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.937395 LLDP, length 82 [|LLDP] 19:03:15.937423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.937424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 087d 6579 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.937425 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.937426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.937427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.937442 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.937444 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.937446 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.937447 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.937448 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.937450 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.937478 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.937481 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.948405 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.948407 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.948408 LLDP, length 82 [|LLDP] 19:03:15.948454 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.948455 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0885 cbdf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.948456 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.948458 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.948459 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.948460 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.948461 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.948462 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.948486 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.948488 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.948491 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.948494 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.956662 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.956663 LLDP, length 82 [|LLDP] 19:03:15.956684 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.956685 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 088c 18ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.956687 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.956688 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.956689 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.956690 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.956691 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.956692 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.956723 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.956725 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.956726 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.956739 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.956741 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.967689 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.967691 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.967692 LLDP, length 82 [|LLDP] 19:03:15.967731 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.967732 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0894 7f13 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.967733 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.967735 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.967736 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.967737 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.967752 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.967754 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.967755 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.967756 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.967769 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.967772 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.978682 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.978684 LLDP, length 82 [|LLDP] 19:03:15.978715 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.978716 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 089c e579 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.978718 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.978719 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.978720 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.978721 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.978722 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.978723 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.978757 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.978759 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.978760 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.978772 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.978774 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.986940 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.986941 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.986942 LLDP, length 82 [|LLDP] 19:03:15.986987 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.986988 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08a3 3246 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.986990 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.986991 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.987003 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.987005 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.987006 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.987007 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.987008 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.987009 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.987024 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.987026 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:15.997947 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:15.997949 LLDP, length 82 [|LLDP] 19:03:15.997975 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:15.997976 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08ab 98ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:15.997977 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:15.997978 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:15.997979 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.997981 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:15.997982 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.997996 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:15.997998 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:15.998000 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:15.998001 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:15.998027 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:15.998029 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.008962 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.008964 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.008965 LLDP, length 82 [|LLDP] 19:03:16.009003 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.009004 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08b3 ff13 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.009006 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.009007 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.009008 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.009009 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.009010 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.009011 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.009036 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.009038 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.009041 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.009043 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.017215 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.017217 LLDP, length 82 [|LLDP] 19:03:16.017242 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.017243 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08ba 4be0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.017244 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.017245 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.017246 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.017261 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.017262 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.017264 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.017265 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.017266 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.017267 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.017295 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.017297 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.028224 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.028225 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.028226 LLDP, length 82 [|LLDP] 19:03:16.028270 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.028270 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08c2 b246 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.028272 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.028273 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.028275 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.028276 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.028277 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.028278 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.028301 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.028303 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.028306 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.028308 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.039239 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.039240 LLDP, length 82 [|LLDP] 19:03:16.039265 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.039266 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08cb 18ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.039267 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.039268 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.039269 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.039270 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.039271 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.039273 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.039305 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.039307 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.039309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.039320 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.039322 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.047499 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.047500 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.047501 LLDP, length 82 [|LLDP] 19:03:16.047540 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.047541 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08d1 657a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.047543 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.047544 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.047545 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.047546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.047560 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.047562 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.047563 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.047565 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.047578 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.047581 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.058502 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.058504 LLDP, length 82 [|LLDP] 19:03:16.058530 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.058531 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08d9 cbe7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.058533 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.058534 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.058535 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.058536 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.058537 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.058538 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.058570 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.058573 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.058574 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.058586 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.058588 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.066758 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.066760 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.066761 LLDP, length 82 [|LLDP] 19:03:16.066805 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.066805 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08e0 18ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.066807 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.066809 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.066820 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.066822 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.066823 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.066824 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.066825 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.066827 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.066841 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.066843 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.077774 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.077775 LLDP, length 82 [|LLDP] 19:03:16.077801 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.077802 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08e8 7f14 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.077803 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.077804 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.077805 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.077806 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.077807 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.077824 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.077826 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.077827 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.077828 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.077854 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.077856 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.088782 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.088783 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.088784 LLDP, length 82 [|LLDP] 19:03:16.088832 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.088833 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08f0 e57b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.088835 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.088836 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.088837 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.088838 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.088839 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.088840 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.088864 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.088866 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.088869 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.088871 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.097045 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.097047 LLDP, length 82 [|LLDP] 19:03:16.097067 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.097068 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08f7 3247 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.097069 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.097070 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.097071 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.097086 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.097087 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.097089 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.097090 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.097091 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.097092 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.097121 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.097123 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.108059 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.108061 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.108062 LLDP, length 82 [|LLDP] 19:03:16.108115 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.108116 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08ff 98ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.108118 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.108119 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.108120 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.108122 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.108123 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.108124 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.108150 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.108152 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.108155 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.108157 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.119061 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.119063 LLDP, length 82 [|LLDP] 19:03:16.119090 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.119091 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0907 ff14 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.119093 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.119094 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.119095 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.119096 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.119097 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.119099 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.119132 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.119134 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.119135 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.119147 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.119149 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.127317 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.127319 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.127320 LLDP, length 82 [|LLDP] 19:03:16.127365 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.127366 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 090e 4be1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.127367 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.127368 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.127370 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.127371 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.127385 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.127387 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.127388 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.127389 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.127402 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.127404 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.138327 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.138328 LLDP, length 82 [|LLDP] 19:03:16.138355 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.138356 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0916 b24b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.138357 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.138358 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.138360 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.138361 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.138362 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.138363 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.138396 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.138399 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.138400 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.138412 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.138414 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.146583 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.146585 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.146586 LLDP, length 82 [|LLDP] 19:03:16.146630 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.146632 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 091c ff14 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.146633 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.146634 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.146647 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.146649 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.146650 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.146651 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.146652 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.146653 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.146668 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.146670 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.157596 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.157597 LLDP, length 82 [|LLDP] 19:03:16.157623 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.157624 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0925 657a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.157626 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.157627 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.157628 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.157630 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.157631 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.157647 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.157649 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.157650 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.157651 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.157676 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.157678 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.168608 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.168609 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.168610 LLDP, length 82 [|LLDP] 19:03:16.168648 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.168649 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 092d cbe1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.168651 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.168652 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.168653 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.168654 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.168656 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.168657 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.168680 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.168682 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.168685 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.168687 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.176860 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.176862 LLDP, length 82 [|LLDP] 19:03:16.176888 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.176889 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0934 18ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.176890 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.176891 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.176892 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.176907 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.176909 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.176910 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.176912 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.176913 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.176914 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.176941 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.176943 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.187889 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.187891 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.187899 LLDP, length 82 [|LLDP] 19:03:16.187955 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.187956 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 093c 7f14 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.187957 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.187959 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.187960 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.187961 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.187962 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.187963 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.187990 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.187992 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.187996 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.187998 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.198884 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.198886 LLDP, length 82 [|LLDP] 19:03:16.198916 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.198917 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0944 e579 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.198919 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.198920 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.198921 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.198922 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.198923 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.198925 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.198964 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.198966 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.198968 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.198980 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.198982 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.207155 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.207157 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.207158 LLDP, length 82 [|LLDP] 19:03:16.207198 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.207199 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 094b 3247 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.207200 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.207207 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.207208 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.207209 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.207223 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.207225 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.207227 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.207228 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.207242 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.207244 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.218148 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.218150 LLDP, length 82 [|LLDP] 19:03:16.218180 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.218181 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0953 98ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.218183 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.218184 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.218185 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.218186 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.218187 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.218188 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.218225 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.218227 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.218228 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.218240 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.218243 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.229161 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.229162 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.229164 LLDP, length 82 [|LLDP] 19:03:16.229213 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.229213 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 095b ff13 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.229215 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.229216 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.229230 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.229231 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.229233 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.229234 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.229235 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.229236 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.229251 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.229254 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.237412 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.237413 LLDP, length 82 [|LLDP] 19:03:16.237439 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.237440 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0962 4bdf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.237442 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.237442 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.237444 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.237445 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.237446 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.237462 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.237464 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.237465 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.237466 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.237492 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.237494 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.248424 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.248425 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.248426 LLDP, length 82 [|LLDP] 19:03:16.248470 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.248471 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 096a b246 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.248472 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.248474 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.248475 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.248476 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.248477 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.248478 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.248503 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.248505 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.248509 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.248511 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.256680 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.256682 LLDP, length 82 [|LLDP] 19:03:16.256707 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.256708 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0970 ff1a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.256709 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.256711 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.256712 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.256727 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.256729 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.256730 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.256731 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.256733 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.256734 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.256762 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.256764 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.267704 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.267705 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.267706 LLDP, length 82 [|LLDP] 19:03:16.267752 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.267753 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0979 6579 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.267754 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.267756 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.267757 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.267758 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.267760 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.267761 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.267794 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.267796 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.267800 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.267802 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.278702 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.278704 LLDP, length 82 [|LLDP] 19:03:16.278732 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.278733 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0981 cbe0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.278735 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.278736 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.278737 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.278738 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.278739 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.278740 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.278775 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.278777 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.278779 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.278790 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.278793 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.286958 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.286959 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.286960 LLDP, length 82 [|LLDP] 19:03:16.287007 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.287008 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0988 18ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.287010 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.287011 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.287013 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.287014 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.287029 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.287030 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.287032 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.287033 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.287046 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.287048 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.297972 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.297974 LLDP, length 82 [|LLDP] 19:03:16.298003 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.298004 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0990 7f13 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.298005 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.298007 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.298008 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.298009 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.298010 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.298011 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.298065 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.298067 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.298069 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.298081 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.298083 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.308988 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.308996 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.308997 LLDP, length 82 [|LLDP] 19:03:16.309041 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.309042 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0998 e581 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.309044 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.309045 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.309058 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.309060 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.309061 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.309063 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.309064 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.309065 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.309080 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.309082 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.318934 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.318935 LLDP, length 82 [|LLDP] 19:03:16.318958 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.318958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 099f 3246 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.318960 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.318961 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.318962 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.318963 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.318964 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.318982 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.318984 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.318985 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.318987 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.319016 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.319018 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.328253 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.328254 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.328255 LLDP, length 82 [|LLDP] 19:03:16.328294 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.328295 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09a7 98ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.328297 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.328298 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.328299 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.328301 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.328302 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.328303 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.328327 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.328329 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.328333 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.328335 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.339261 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.339262 LLDP, length 82 [|LLDP] 19:03:16.339289 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.339290 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09af ff14 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.339292 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.339293 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.339294 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.339309 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.339311 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.339313 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.339314 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.339315 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.339316 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.339355 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.339358 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.347525 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.347527 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.347527 LLDP, length 82 [|LLDP] 19:03:16.347565 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.347566 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09b6 4be0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.347567 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.347568 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.347570 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.347571 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.347572 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.347573 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.347596 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.347599 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.347603 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.347605 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.358530 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.358532 LLDP, length 82 [|LLDP] 19:03:16.358566 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.358567 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09be b247 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.358568 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.358570 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.358571 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.358572 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.358573 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.358574 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.358616 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.358618 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.358620 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.358632 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.358634 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.366791 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.366800 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.366801 LLDP, length 82 [|LLDP] 19:03:16.366852 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.366853 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09c4 ff14 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.366855 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.366856 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.366857 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.366858 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.366876 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.366878 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.366879 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.366880 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.366894 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.366897 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.377808 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.377810 LLDP, length 82 [|LLDP] 19:03:16.377836 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.377837 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09cd 657a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.377838 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.377839 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.377841 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.377842 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.377843 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.377844 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.377892 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.377894 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.377896 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.377909 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.377911 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.388811 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.388814 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.388815 LLDP, length 82 [|LLDP] 19:03:16.388858 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.388859 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09d5 cbe2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.388861 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.388862 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.388876 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.388878 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.388879 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.388881 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.388882 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.388883 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.388898 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.388900 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.397069 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.397071 LLDP, length 82 [|LLDP] 19:03:16.397102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.397103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09dc 18ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.397104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.397105 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.397107 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.397108 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.397109 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.397127 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.397129 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.397130 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.397131 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.397162 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.397164 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.408072 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.408080 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.408081 LLDP, length 82 [|LLDP] 19:03:16.408119 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.408120 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09e4 7f13 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.408122 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.408123 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.408124 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.408125 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.408127 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.408128 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.408152 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.408154 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.408157 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.408159 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.419087 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.419089 LLDP, length 82 [|LLDP] 19:03:16.419123 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.419124 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09ec e57a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.419126 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.419128 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.419129 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.419146 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.419148 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.419149 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.419150 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.419152 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.419154 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.419186 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.419189 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.427356 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.427364 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.427366 LLDP, length 82 [|LLDP] 19:03:16.427424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.427425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09f3 3246 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.427427 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.427428 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.427429 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.427431 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.427432 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.427433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.427472 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.427475 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.427479 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.427481 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.438363 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.438365 LLDP, length 82 [|LLDP] 19:03:16.438388 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.438389 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09fb 98ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.438391 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.438392 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.438393 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.438394 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.438395 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.438396 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.438437 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.438439 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.438440 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.438451 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.438454 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.446615 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.446617 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.446618 LLDP, length 82 [|LLDP] 19:03:16.446663 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.446664 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a01 e579 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.446666 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.446667 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.446668 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.446669 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.446685 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.446687 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.446688 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.446689 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.446703 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.446706 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.457623 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.457631 LLDP, length 82 [|LLDP] 19:03:16.457653 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.457654 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a0a 4be0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.457655 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.457656 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.457657 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.457659 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.457660 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.457661 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.457700 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.457702 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.457703 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.457715 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.457722 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.468625 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.468627 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.468628 LLDP, length 82 [|LLDP] 19:03:16.468679 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.468679 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a12 b246 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.468681 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.468682 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.468695 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.468698 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.468699 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.468700 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.468701 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.468702 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.468717 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.468719 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.476885 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.476887 LLDP, length 82 [|LLDP] 19:03:16.476917 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.476918 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a18 ff13 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.476920 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.476921 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.476922 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.476923 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.476924 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.476942 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.476944 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.476946 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.476947 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.476977 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.476980 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.487914 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.487915 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.487917 LLDP, length 82 [|LLDP] 19:03:16.487966 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.487967 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a21 657a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.487969 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.487970 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.487972 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.487973 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.487974 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.487975 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.488002 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.488004 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.488008 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.488009 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.498907 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.498909 LLDP, length 82 [|LLDP] 19:03:16.498939 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.498939 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a29 cbe0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.498941 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.498942 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.498943 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.498960 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.498962 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.498963 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.498964 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.498966 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.498967 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.498999 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.499001 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.507164 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.507166 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.507167 LLDP, length 82 [|LLDP] 19:03:16.507219 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.507220 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a30 18b4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.507222 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.507223 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.507224 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.507226 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.507227 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.507228 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.507253 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.507255 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.507258 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.507260 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.518171 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.518173 LLDP, length 82 [|LLDP] 19:03:16.518200 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.518201 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a38 7f14 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.518202 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.518203 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.518204 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.518205 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.518207 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.518208 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.518244 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.518246 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.518248 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.518263 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.518265 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.529190 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.529193 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.529194 LLDP, length 82 [|LLDP] 19:03:16.529247 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.529249 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a40 e57a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.529250 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.529252 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.529253 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.529254 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.529271 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.529273 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.529274 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.529275 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.529289 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.529292 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.537439 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.537441 LLDP, length 82 [|LLDP] 19:03:16.537471 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.537471 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a47 3247 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.537473 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.537474 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.537475 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.537476 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.537477 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.537478 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.537514 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.537517 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.537518 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.537530 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.537533 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.548458 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.548460 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.548461 LLDP, length 82 [|LLDP] 19:03:16.548501 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.548502 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a4f 98ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.548504 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.548505 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.548518 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.548520 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.548521 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.548523 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.548524 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.548525 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.548540 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.548542 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.556717 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.556719 LLDP, length 82 [|LLDP] 19:03:16.556739 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.556740 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a55 e57b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.556742 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.556743 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.556744 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.556745 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.556746 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.556764 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.556766 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.556767 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.556768 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.556795 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.556797 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.567738 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.567740 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.567741 LLDP, length 82 [|LLDP] 19:03:16.567793 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.567794 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a5e 4be1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.567796 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.567797 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.567799 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.567800 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.567801 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.567802 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.567826 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.567828 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.567832 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.567834 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.578738 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.578740 LLDP, length 82 [|LLDP] 19:03:16.578759 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.578760 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a66 b247 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.578762 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.578763 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.578764 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.578779 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.578781 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.578782 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.578783 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.578784 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.578786 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.578812 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.578814 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.586995 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.586997 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.586998 LLDP, length 82 [|LLDP] 19:03:16.587043 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.587044 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a6c ff14 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.587046 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.587047 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.587048 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.587049 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.587050 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.587051 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.587076 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.587078 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.587082 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.587084 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.597997 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.597999 LLDP, length 82 [|LLDP] 19:03:16.598031 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.598032 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a75 657a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.598034 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.598035 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.598036 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.598037 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.598038 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.598039 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.598078 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.598080 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.598081 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.598094 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.598096 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.609011 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.609014 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.609014 LLDP, length 82 [|LLDP] 19:03:16.609067 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.609068 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a7d cbe0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.609070 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.609071 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.609072 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.609073 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.609090 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.609091 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.609093 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.609094 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.609108 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.609110 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.617268 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.617270 LLDP, length 82 [|LLDP] 19:03:16.617300 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.617301 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a84 18ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.617303 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.617304 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.617305 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.617306 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.617308 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.617309 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.617352 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.617355 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.617356 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.617368 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.617370 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.628269 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.628271 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.628278 LLDP, length 82 [|LLDP] 19:03:16.628320 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.628321 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a8c 7f14 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.628323 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.628324 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.628338 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.628340 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.628341 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.628343 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.628344 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.628345 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.628360 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.628362 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.636528 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.636530 LLDP, length 82 [|LLDP] 19:03:16.636555 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.636556 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a92 cbe0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.636558 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.636559 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.636560 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.636561 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.636562 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.636578 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.636580 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.636581 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.636583 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.636610 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.636612 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.647554 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.647556 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.647557 LLDP, length 82 [|LLDP] 19:03:16.647608 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.647609 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a9b 3246 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.647611 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.647612 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.647614 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.647615 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.647616 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.647617 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.647644 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.647660 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.647665 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.647667 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.658558 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.658560 LLDP, length 82 [|LLDP] 19:03:16.658583 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.658584 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0aa3 98ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.658586 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.658587 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.658592 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.658611 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.658613 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.658615 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.658616 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.658618 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.658619 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.658651 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.658653 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.666822 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.666831 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.666832 LLDP, length 82 [|LLDP] 19:03:16.666886 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.666888 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0aa9 e579 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.666889 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.666891 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.666892 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.666893 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.666894 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.666896 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.666924 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.666927 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.666931 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.666933 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.677824 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.677826 LLDP, length 82 [|LLDP] 19:03:16.677861 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.677862 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ab2 4be0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.677864 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.677865 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.677866 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.677867 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.677868 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.677870 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.677913 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.677915 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.677916 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.677928 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.677930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.688834 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.688837 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.688845 LLDP, length 82 [|LLDP] 19:03:16.688894 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.688895 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0aba b246 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.688897 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.688898 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.688899 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.688901 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.688917 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.688919 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.688920 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.688922 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.688935 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.688938 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.697094 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.697103 LLDP, length 82 [|LLDP] 19:03:16.697130 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.697131 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ac0 ff13 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.697133 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.697134 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.697135 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.697136 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.697137 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.697138 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.697187 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.697189 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.697191 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.697203 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.697205 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.708115 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.708117 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.708118 LLDP, length 82 [|LLDP] 19:03:16.708169 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.708169 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ac9 6579 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.708171 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.708172 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.708187 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.708189 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.708190 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.708191 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.708192 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.708193 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.708210 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.708212 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.719127 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.719129 LLDP, length 82 [|LLDP] 19:03:16.719155 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.719156 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ad1 cbdf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.719158 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.719159 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.719161 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.719162 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.719163 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.719184 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.719186 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.719187 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.719189 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.719223 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.719225 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.727363 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.727365 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.727366 LLDP, length 82 [|LLDP] 19:03:16.727418 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.727419 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ad8 18ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.727421 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.727422 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.727423 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.727424 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.727426 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.727427 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.727451 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.727454 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.727457 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.727459 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.738374 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.738400 LLDP, length 82 [|LLDP] 19:03:16.738428 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.738429 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ae0 7f13 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.738431 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.738432 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.738434 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.738452 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.738454 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.738455 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.738457 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.738458 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.738460 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.738510 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.738512 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.746670 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.746672 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.746674 LLDP, length 82 [|LLDP] 19:03:16.746729 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.746730 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ae6 cbe0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.746732 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.746733 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.746734 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.746736 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.746738 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.746739 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.746777 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.746780 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.746784 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.746787 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.757653 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.757655 LLDP, length 82 [|LLDP] 19:03:16.757684 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.757685 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0aef 324e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.757687 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.757688 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.757689 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.757690 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.757692 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.757693 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.757736 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.757739 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.757740 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.757753 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.757755 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.768649 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.768651 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.768652 LLDP, length 82 [|LLDP] 19:03:16.768697 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.768698 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0af7 98ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.768700 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.768701 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.768702 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.768703 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.768718 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.768721 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.768722 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.768723 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.768736 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.768738 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.776906 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.776908 LLDP, length 82 [|LLDP] 19:03:16.776932 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.776933 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0afd e57a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.776935 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.776936 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.776937 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.776938 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.776939 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.776940 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.776977 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.776979 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.776980 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.776993 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.776995 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.787916 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.787918 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.787919 LLDP, length 82 [|LLDP] 19:03:16.787962 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.787963 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b06 4be0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.787965 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.787966 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.787978 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.787980 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.787981 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.787983 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.787984 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.787985 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.788004 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.788006 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.798937 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.798939 LLDP, length 82 [|LLDP] 19:03:16.798969 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.798970 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b0e b247 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.798971 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.798973 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.798974 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.798976 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.798977 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.798997 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.798999 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.799000 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.799002 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.799038 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.799040 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.807185 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.807187 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.807195 LLDP, length 82 [|LLDP] 19:03:16.807240 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.807241 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b14 ff14 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.807243 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.807244 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.807246 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.807247 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.807248 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.807249 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.807274 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.807276 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.807279 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.807282 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.818195 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.818198 LLDP, length 82 [|LLDP] 19:03:16.818226 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.818227 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b1d 657b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.818228 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.818229 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.818231 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.818246 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.818248 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.818249 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.818251 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.818252 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.818253 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.818284 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.818286 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.829221 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.829223 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.829224 LLDP, length 82 [|LLDP] 19:03:16.829260 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.829261 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b25 cbe1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.829263 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.829264 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.829265 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.829266 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.829268 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.829269 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.829294 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.829297 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.829300 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.829302 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.837457 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.837459 LLDP, length 82 [|LLDP] 19:03:16.837483 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.837484 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b2c 18ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.837485 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.837486 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.837488 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.837489 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.837490 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.837491 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.837522 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.837525 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.837526 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.837537 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.837539 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.848474 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.848476 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.848477 LLDP, length 82 [|LLDP] 19:03:16.848525 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.848526 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b34 7f14 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.848527 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.848529 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.848530 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.848531 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.848546 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.848548 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.848549 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.848550 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.848564 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.848566 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.856724 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.856726 LLDP, length 82 [|LLDP] 19:03:16.856751 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.856752 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b3a cbe1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.856754 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.856755 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.856757 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.856758 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.856759 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.856760 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.856792 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.856794 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.856796 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.856807 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.856810 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.867730 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.867732 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.867733 LLDP, length 82 [|LLDP] 19:03:16.867772 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.867773 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b43 3247 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.867774 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.867775 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.867787 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.867789 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.867790 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.867791 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.867793 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.867794 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.867808 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.867810 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.878738 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.878739 LLDP, length 82 [|LLDP] 19:03:16.878761 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.878762 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b4b 98ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.878763 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.878765 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.878766 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.878767 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.878768 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.878783 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.878784 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.878785 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.878787 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.878810 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.878812 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.886996 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.886998 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.886999 LLDP, length 82 [|LLDP] 19:03:16.887037 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.887038 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b51 e57a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.887039 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.887040 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.887041 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.887043 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.887044 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.887045 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.887067 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.887069 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.887072 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.887075 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.898005 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.898007 LLDP, length 82 [|LLDP] 19:03:16.898030 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.898031 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b5a 4be0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.898033 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.898034 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.898035 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.898049 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.898051 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.898052 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.898053 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.898054 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.898055 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.898080 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.898082 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.909017 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.909018 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.909019 LLDP, length 82 [|LLDP] 19:03:16.909055 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.909056 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b62 b247 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.909058 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.909059 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.909060 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.909061 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.909063 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.909064 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.909085 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.909087 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.909091 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.909092 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.917273 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.917274 LLDP, length 82 [|LLDP] 19:03:16.917296 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.917297 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b68 ff13 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.917299 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.917300 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.917301 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.917303 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.917304 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.917305 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.917333 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.917335 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.917336 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.917347 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.917350 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.928284 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.928286 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.928286 LLDP, length 82 [|LLDP] 19:03:16.928326 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.928327 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b71 6579 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.928328 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.928330 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.928331 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.928332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.928345 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.928347 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.928349 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.928350 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.928362 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.928365 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.936545 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.936546 LLDP, length 82 [|LLDP] 19:03:16.936569 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.936570 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b77 b247 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.936572 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.936573 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.936574 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.936575 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.936577 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.936578 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.936609 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.936612 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.936613 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.936624 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.936626 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.947550 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.947552 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.947553 LLDP, length 82 [|LLDP] 19:03:16.947589 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.947590 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b80 18ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.947591 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.947592 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.947603 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.947605 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.947606 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.947607 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.947609 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.947610 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.947624 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.947626 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.958564 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.958565 LLDP, length 82 [|LLDP] 19:03:16.958589 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.958590 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b88 7f13 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.958591 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.958593 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.958594 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.958595 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.958596 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.958612 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.958613 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.958615 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.958616 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.958641 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.958643 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.966819 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.966821 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.966822 LLDP, length 82 [|LLDP] 19:03:16.966861 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.966862 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b8e cbdf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.966863 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.966865 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.966866 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.966867 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.966868 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.966870 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.966892 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.966894 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.966897 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.966899 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.977828 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.977830 LLDP, length 82 [|LLDP] 19:03:16.977851 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.977852 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b97 3246 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.977853 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.977855 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.977856 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.977869 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.977871 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.977872 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.977873 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.977874 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.977875 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.977899 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.977901 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.988838 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.988840 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.988841 LLDP, length 82 [|LLDP] 19:03:16.988876 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.988877 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b9f 98ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.988879 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.988880 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.988881 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.988882 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.988884 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.988885 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.988907 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.988909 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.988912 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.988914 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:16.997105 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:16.997106 LLDP, length 82 [|LLDP] 19:03:16.997122 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:16.997123 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ba5 e579 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:16.997124 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:16.997126 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:16.997127 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:16.997128 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.997129 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:16.997130 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.997157 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:16.997159 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:16.997161 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:16.997171 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:16.997173 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.008117 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.008119 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.008120 LLDP, length 82 [|LLDP] 19:03:17.008148 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.008149 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bae 4be7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.008151 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.008152 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.008153 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.008154 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.008167 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.008170 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.008171 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.008172 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.008184 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.008186 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.019117 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.019119 LLDP, length 82 [|LLDP] 19:03:17.019139 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.019140 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bb6 b246 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.019142 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.019143 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.019144 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.019146 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.019147 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.019148 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.019175 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.019177 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.019178 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.019198 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.019200 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.027451 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.027454 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.027455 LLDP, length 82 [|LLDP] 19:03:17.027560 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.027561 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bbc ff14 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.027563 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.027564 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.027595 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.027598 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.027599 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.027601 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.027602 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.027604 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.027623 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.027625 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.038465 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.038468 LLDP, length 82 [|LLDP] 19:03:17.038519 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.038520 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bc5 657a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.038522 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.038523 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.038525 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.038526 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.038528 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.038570 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.038573 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.038575 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.038576 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.038646 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.038649 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.046711 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.046714 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.046715 LLDP, length 82 [|LLDP] 19:03:17.046813 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.046814 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bcb b24a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.046816 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.046817 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.046818 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.046820 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.046821 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.046823 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.046865 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.046867 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.046872 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.046875 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.057723 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.057726 LLDP, length 82 [|LLDP] 19:03:17.057778 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.057779 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bd4 18ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.057781 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.057782 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.057784 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.057828 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.057832 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.057833 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.057834 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.057835 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.057836 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.057907 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.057911 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.068746 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.068749 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.068750 LLDP, length 82 [|LLDP] 19:03:17.068855 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.068856 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bdc 7f14 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.068858 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.068859 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.068861 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.068862 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.068863 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.068865 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.068908 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.068910 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.068915 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.068917 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.076987 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.076991 LLDP, length 82 [|LLDP] 19:03:17.077041 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.077042 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0be2 cbe1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.077044 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.077046 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.077047 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.077048 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.077049 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.077051 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.077147 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.077150 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.077151 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.077165 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.077168 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.088007 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.088010 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.088011 LLDP, length 82 [|LLDP] 19:03:17.088109 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.088110 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0beb 3247 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.088111 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.088113 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.088114 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.088116 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.088145 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.088148 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.088149 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.088151 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.088167 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.088170 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.099011 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.099014 LLDP, length 82 [|LLDP] 19:03:17.099063 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.099064 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bf3 98ad 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.099066 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.099068 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.099069 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.099070 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.099071 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.099073 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.099165 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.099168 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.099169 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.099184 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.099187 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.107204 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.107205 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.107206 LLDP, length 82 [|LLDP] 19:03:17.107248 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.107249 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bf9 e57a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.107251 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.107252 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.107265 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.107267 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.107268 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.107270 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.107271 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.107272 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.107287 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.107289 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.118210 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.118211 LLDP, length 82 [|LLDP] 19:03:17.118235 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.118235 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c02 4c02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.118237 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.118238 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.118239 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.118241 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.118242 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.118257 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.118259 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.118260 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.118261 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.118286 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.118288 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.129219 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.129220 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.129221 LLDP, length 82 [|LLDP] 19:03:17.129257 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.129258 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c0a b268 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.129260 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.129261 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.129262 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.129263 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.129265 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.129266 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.129289 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.129291 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.129294 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.129296 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.137477 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.137478 LLDP, length 82 [|LLDP] 19:03:17.137504 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.137504 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c10 ff35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.137506 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.137507 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.137509 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.137522 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.137524 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.137525 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.137526 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.137527 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.137529 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.137555 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.137558 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.148487 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.148488 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.148489 LLDP, length 82 [|LLDP] 19:03:17.148528 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.148529 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c19 659b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.148530 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.148531 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.148532 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.148534 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.148535 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.148536 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.148559 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.148561 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.148564 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.148566 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.156741 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.156742 LLDP, length 82 [|LLDP] 19:03:17.156765 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.156766 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c1f b268 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.156768 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.156769 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.156770 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.156772 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.156773 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.156774 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.156802 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.156804 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.156806 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.156817 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.156819 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.167752 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.167753 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.167754 LLDP, length 82 [|LLDP] 19:03:17.167791 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.167792 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c28 18cf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.167794 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.167795 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.167796 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.167798 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.167812 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.167813 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.167815 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.167816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.167828 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.167830 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.178762 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.178763 LLDP, length 82 [|LLDP] 19:03:17.178785 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.178786 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c30 7f35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.178787 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.178789 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.178790 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.178791 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.178792 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.178794 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.178820 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.178823 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.178824 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.178835 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.178837 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.187020 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.187021 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.187022 LLDP, length 82 [|LLDP] 19:03:17.187059 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.187060 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c36 cc01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.187062 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.187063 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.187073 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.187075 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.187077 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.187078 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.187079 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.187080 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.187094 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.187097 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.198029 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.198030 LLDP, length 82 [|LLDP] 19:03:17.198051 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.198052 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c3f 3267 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.198053 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.198055 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.198056 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.198057 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.198058 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.198073 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.198075 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.198076 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.198077 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.198099 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.198101 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.209038 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.209040 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.209040 LLDP, length 82 [|LLDP] 19:03:17.209075 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.209076 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c47 98ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.209078 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.209079 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.209080 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.209081 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.209083 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.209084 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.209106 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.209108 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.209111 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.209114 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.217295 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.217297 LLDP, length 82 [|LLDP] 19:03:17.217318 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.217319 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c4d e5a2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.217320 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.217321 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.217323 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.217336 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.217338 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.217339 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.217340 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.217341 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.217342 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.217367 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.217369 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.228305 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.228307 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.228308 LLDP, length 82 [|LLDP] 19:03:17.228342 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.228343 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c56 4c02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.228345 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.228346 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.228347 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.228348 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.228349 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.228351 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.228373 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.228375 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.228379 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.228380 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.236562 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.236564 LLDP, length 82 [|LLDP] 19:03:17.236584 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.236584 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c5c 98cf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.236586 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.236587 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.236589 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.236590 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.236591 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.236592 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.236618 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.236620 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.236621 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.236632 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.236634 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.247574 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.247576 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.247577 LLDP, length 82 [|LLDP] 19:03:17.247615 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.247617 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c64 ff35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.247618 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.247619 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.247620 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.247622 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.247635 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.247637 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.247638 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.247639 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.247665 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.247667 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.258589 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.258591 LLDP, length 82 [|LLDP] 19:03:17.258616 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.258617 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c6d 659c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.258619 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.258620 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.258621 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.258623 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.258624 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.258625 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.258660 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.258662 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.258664 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.258675 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.258685 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.266848 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.266850 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.266851 LLDP, length 82 [|LLDP] 19:03:17.266896 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.266897 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c73 b269 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.266899 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.266900 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.266913 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.266916 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.266917 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.266919 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.266920 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.266921 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.266935 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.266937 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.277860 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.277862 LLDP, length 82 [|LLDP] 19:03:17.277888 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.277889 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c7c 18cf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.277891 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.277892 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.277893 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.277895 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.277896 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.277913 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.277915 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.277916 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.277917 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.277946 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.277948 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.288868 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.288870 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.288871 LLDP, length 82 [|LLDP] 19:03:17.288908 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.288909 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c84 7f35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.288911 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.288912 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.288913 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.288914 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.288916 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.288917 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.288954 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.288956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.288959 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.288962 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.297143 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.297145 LLDP, length 82 [|LLDP] 19:03:17.297172 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.297173 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c8a cc06 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.297174 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.297175 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.297177 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.297196 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.297198 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.297199 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.297200 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.297202 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.297203 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.297238 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.297240 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.308139 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.308141 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.308142 LLDP, length 82 [|LLDP] 19:03:17.308186 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.308187 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c93 3269 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.308189 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.308190 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.308191 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.308193 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.308194 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.308196 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.308229 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.308231 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.308234 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.308237 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.319147 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.319149 LLDP, length 82 [|LLDP] 19:03:17.319175 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.319176 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c9b 98ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.319178 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.319179 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.319181 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.319182 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.319183 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.319184 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.319219 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.319221 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.319222 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.319235 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.319237 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.327402 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.327403 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.327404 LLDP, length 82 [|LLDP] 19:03:17.327448 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.327449 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ca1 e59b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.327451 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.327452 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.327453 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.327454 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.327468 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.327471 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.327472 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.327473 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.327486 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.327489 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.338420 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.338422 LLDP, length 82 [|LLDP] 19:03:17.338445 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.338446 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0caa 4c02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.338447 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.338449 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.338450 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.338451 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.338453 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.338454 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.338492 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.338495 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.338496 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.338508 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.338511 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.346667 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.346668 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.346670 LLDP, length 82 [|LLDP] 19:03:17.346710 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.346712 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cb0 98cf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.346713 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.346714 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.346727 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.346729 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.346730 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.346731 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.346732 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.346733 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.346747 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.346749 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.357675 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.357677 LLDP, length 82 [|LLDP] 19:03:17.357700 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.357702 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cb8 ff35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.357703 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.357704 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.357705 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.357707 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.357708 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.357723 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.357725 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.357726 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.357727 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.357751 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.357754 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.368687 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.368688 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.368689 LLDP, length 82 [|LLDP] 19:03:17.368725 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.368726 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cc1 659b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.368728 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.368729 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.368730 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.368731 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.368732 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.368733 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.368756 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.368758 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.368761 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.368763 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.376940 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.376942 LLDP, length 82 [|LLDP] 19:03:17.376963 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.376964 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cc7 b268 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.376965 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.376967 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.376968 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.376981 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.376982 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.376983 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.376985 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.376986 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.376987 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.377013 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.377016 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.387968 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.387969 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.387970 LLDP, length 82 [|LLDP] 19:03:17.388017 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.388018 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cd0 18ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.388020 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.388021 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.388023 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.388024 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.388025 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.388026 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.388052 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.388054 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.388058 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.388060 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.398969 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.398971 LLDP, length 82 [|LLDP] 19:03:17.398998 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.398999 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cd8 7f34 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.399001 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.399002 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.399003 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.399004 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.399006 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.399007 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.399041 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.399043 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.399045 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.399057 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.399059 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.407227 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.407228 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.407229 LLDP, length 82 [|LLDP] 19:03:17.407270 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.407271 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cde cc01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.407273 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.407274 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.407275 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.407277 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.407296 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.407298 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.407299 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.407300 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.407314 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.407316 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.418233 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.418235 LLDP, length 82 [|LLDP] 19:03:17.418260 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.418261 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ce7 3268 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.418263 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.418264 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.418265 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.418266 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.418267 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.418268 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.418299 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.418301 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.418302 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.418314 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.418316 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.426500 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.426501 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.426503 LLDP, length 82 [|LLDP] 19:03:17.426533 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.426534 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ced 7f34 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.426536 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.426537 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.426549 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.426551 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.426552 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.426554 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.426555 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.426556 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.426570 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.426572 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.437496 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.437498 LLDP, length 82 [|LLDP] 19:03:17.437519 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.437520 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cf5 e59a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.437522 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.437523 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.437524 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.437526 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.437527 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.437541 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.437543 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.437544 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.437546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.437569 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.437571 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.448525 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.448526 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.448527 LLDP, length 82 [|LLDP] 19:03:17.448558 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.448559 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cfe 4c01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.448560 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.448562 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.448563 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.448564 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.448566 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.448567 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.448589 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.448591 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.448594 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.448596 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.456764 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.456766 LLDP, length 82 [|LLDP] 19:03:17.456789 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.456790 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d04 98cf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.456792 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.456793 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.456794 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.456807 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.456809 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.456810 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.456811 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.456812 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.456814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.456838 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.456841 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.467775 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.467777 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.467778 LLDP, length 82 [|LLDP] 19:03:17.467816 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.467817 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d0c ff3b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.467818 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.467819 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.467820 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.467822 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.467823 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.467824 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.467848 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.467850 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.467853 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.467855 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.478784 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.478786 LLDP, length 82 [|LLDP] 19:03:17.478808 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.478809 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d15 659b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.478811 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.478812 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.478814 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.478815 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.478816 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.478817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.478845 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.478847 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.478849 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.478860 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.478862 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.487042 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.487044 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.487045 LLDP, length 82 [|LLDP] 19:03:17.487082 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.487083 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d1b b268 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.487084 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.487085 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.487086 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.487088 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.487102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.487103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.487104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.487106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.487118 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.487120 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.498061 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.498062 LLDP, length 82 [|LLDP] 19:03:17.498078 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.498078 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d24 18cf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.498080 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.498081 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.498082 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.498084 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.498085 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.498086 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.498113 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.498115 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.498117 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.498128 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.498130 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.509062 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.509063 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.509064 LLDP, length 82 [|LLDP] 19:03:17.509099 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.509100 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d2c 7f35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.509102 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.509103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.509113 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.509115 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.509117 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.509118 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.509119 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.509120 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.509135 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.509137 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.517319 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.517320 LLDP, length 82 [|LLDP] 19:03:17.517342 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.517343 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d32 cc02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.517344 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.517345 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.517346 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.517347 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.517349 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.517363 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.517365 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.517366 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.517367 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.517390 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.517392 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.528327 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.528328 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.528329 LLDP, length 82 [|LLDP] 19:03:17.528364 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.528365 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d3b 3269 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.528367 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.528368 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.528369 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.528370 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.528372 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.528373 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.528395 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.528397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.528400 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.528402 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.536582 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.536584 LLDP, length 82 [|LLDP] 19:03:17.536605 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.536606 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d41 7f36 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.536608 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.536609 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.536610 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.536623 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.536625 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.536626 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.536627 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.536628 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.536629 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.536653 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.536655 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.547595 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.547597 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.547598 LLDP, length 82 [|LLDP] 19:03:17.547633 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.547634 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d49 e59d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.547636 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.547637 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.547638 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.547640 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.547642 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.547643 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.547677 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.547679 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.547682 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.547685 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.558613 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.558614 LLDP, length 82 [|LLDP] 19:03:17.558631 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.558632 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d52 4c03 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.558633 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.558635 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.558636 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.558637 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.558639 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.558640 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.558670 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.558672 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.558674 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.558685 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.558687 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.566865 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.566866 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.566867 LLDP, length 82 [|LLDP] 19:03:17.566904 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.566905 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d58 98cf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.566906 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.566907 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.566908 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.566910 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.566924 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.566926 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.566927 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.566928 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.566941 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.566943 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.577872 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.577874 LLDP, length 82 [|LLDP] 19:03:17.577896 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.577897 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d60 ff35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.577898 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.577899 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.577901 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.577902 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.577903 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.577904 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.577934 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.577937 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.577938 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.577949 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.577952 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.588881 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.588883 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.588884 LLDP, length 82 [|LLDP] 19:03:17.588920 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.588921 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d69 659c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.588923 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.588924 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.588935 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.588937 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.588938 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.588940 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.588941 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.588942 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.588956 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.588959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.597141 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.597142 LLDP, length 82 [|LLDP] 19:03:17.597164 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.597165 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d6f b269 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.597179 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.597181 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.597183 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.597184 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.597185 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.597202 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.597205 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.597206 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.597208 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.597234 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.597237 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.608196 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.608205 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.608206 LLDP, length 82 [|LLDP] 19:03:17.608260 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.608261 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d78 18cf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.608263 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.608265 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.608266 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.608268 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.608269 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.608270 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.608308 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.608310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.608315 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.608317 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.619173 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.619175 LLDP, length 82 [|LLDP] 19:03:17.619193 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.619194 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d80 7f35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.619196 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.619197 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.619198 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.619214 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.619216 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.619218 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.619219 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.619220 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.619222 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.619251 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.619254 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.627420 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.627421 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.627422 LLDP, length 82 [|LLDP] 19:03:17.627458 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.627459 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d86 cc02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.627461 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.627462 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.627463 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.627464 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.627466 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.627467 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.627489 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.627491 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.627494 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.627497 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.638430 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.638431 LLDP, length 82 [|LLDP] 19:03:17.638453 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.638454 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d8f 3268 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.638456 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.638457 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.638458 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.638459 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.638460 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.638461 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.638491 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.638493 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.638494 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.638506 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.638508 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.646686 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.646687 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.646688 LLDP, length 82 [|LLDP] 19:03:17.646725 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.646726 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d95 7f35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.646727 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.646729 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.646730 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.646731 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.646744 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.646746 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.646748 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.646748 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.646762 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.646764 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.657697 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.657698 LLDP, length 82 [|LLDP] 19:03:17.657721 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.657722 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d9d e59b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.657723 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.657724 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.657726 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.657727 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.657728 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.657729 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.657759 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.657761 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.657762 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.657774 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.657776 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.668718 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.668720 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.668721 LLDP, length 82 [|LLDP] 19:03:17.668767 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.668768 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0da6 4c01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.668770 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.668771 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.668784 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.668786 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.668788 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.668789 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.668790 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.668791 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.668807 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.668810 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.676966 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.676968 LLDP, length 82 [|LLDP] 19:03:17.676991 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.676992 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dac 98ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.676993 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.676995 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.676996 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.676997 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.676998 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.677014 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.677015 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.677017 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.677018 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.677043 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.677045 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.687974 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.687976 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.687977 LLDP, length 82 [|LLDP] 19:03:17.688015 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.688017 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0db4 ff34 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.688018 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.688019 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.688021 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.688022 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.688023 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.688025 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.688047 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.688049 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.688053 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.688054 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.698984 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.698985 LLDP, length 82 [|LLDP] 19:03:17.699009 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.699010 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dbd 659b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.699011 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.699012 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.699013 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.699027 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.699028 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.699029 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.699031 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.699032 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.699033 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.699060 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.699062 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.707239 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.707241 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.707242 LLDP, length 82 [|LLDP] 19:03:17.707278 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.707279 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dc3 b268 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.707281 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.707282 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.707283 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.707284 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.707285 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.707287 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.707310 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.707311 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.707315 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.707317 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.718250 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.718251 LLDP, length 82 [|LLDP] 19:03:17.718273 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.718274 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dcc 18d4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.718276 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.718277 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.718278 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.718279 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.718280 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.718282 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.718311 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.718313 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.718314 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.718325 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.718327 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.726509 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.726511 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.726511 LLDP, length 82 [|LLDP] 19:03:17.726548 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.726549 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dd2 659b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.726551 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.726552 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.726554 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.726555 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.726569 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.726571 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.726573 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.726574 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.726587 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.726589 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.737521 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.737522 LLDP, length 82 [|LLDP] 19:03:17.737545 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.737546 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dda cc02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.737548 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.737549 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.737550 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.737552 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.737553 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.737554 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.737583 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.737585 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.737586 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.737598 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.737600 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.748530 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.748531 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.748533 LLDP, length 82 [|LLDP] 19:03:17.748569 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.748570 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0de3 3268 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.748572 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.748573 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.748586 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.748588 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.748589 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.748591 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.748592 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.748593 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.748608 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.748610 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.756783 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.756785 LLDP, length 82 [|LLDP] 19:03:17.756808 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.756809 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0de9 7f35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.756810 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.756812 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.756813 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.756814 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.756815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.756830 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.756831 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.756833 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.756834 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.756857 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.756859 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.767797 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.767799 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.767800 LLDP, length 82 [|LLDP] 19:03:17.767837 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.767838 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0df1 e59c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.767840 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.767841 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.767842 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.767843 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.767845 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.767846 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.767869 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.767871 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.767874 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.767877 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.778806 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.778808 LLDP, length 82 [|LLDP] 19:03:17.778830 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.778831 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dfa 4c02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.778833 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.778834 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.778835 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.778848 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.778850 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.778852 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.778853 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.778854 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.778856 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.778880 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.778882 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.787074 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.787075 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.787076 LLDP, length 82 [|LLDP] 19:03:17.787107 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.787109 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e00 98cf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.787110 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.787111 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.787113 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.787114 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.787115 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.787117 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.787140 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.787142 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.787145 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.787148 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.798093 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.798095 LLDP, length 82 [|LLDP] 19:03:17.798118 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.798119 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e08 ff35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.798121 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.798122 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.798123 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.798124 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.798125 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.798126 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.798164 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.798166 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.798168 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.798180 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.798182 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.809088 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.809090 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.809091 LLDP, length 82 [|LLDP] 19:03:17.809132 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.809133 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e11 659c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.809135 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.809136 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.809137 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.809139 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.809154 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.809156 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.809157 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.809158 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.809172 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.809174 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.817339 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.817340 LLDP, length 82 [|LLDP] 19:03:17.817363 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.817364 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e17 b268 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.817366 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.817367 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.817368 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.817369 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.817370 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.817371 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.817401 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.817403 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.817404 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.817416 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.817418 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.828350 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.828351 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.828352 LLDP, length 82 [|LLDP] 19:03:17.828391 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.828392 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e20 18cf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.828394 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.828395 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.828406 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.828407 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.828409 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.828410 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.828411 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.828412 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.828426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.828429 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.836606 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.836608 LLDP, length 82 [|LLDP] 19:03:17.836630 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.836631 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e26 659b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.836632 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.836633 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.836635 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.836636 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.836637 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.836651 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.836653 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.836654 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.836655 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.836678 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.836680 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.847628 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.847629 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.847630 LLDP, length 82 [|LLDP] 19:03:17.847685 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.847686 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e2e cc02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.847688 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.847689 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.847691 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.847692 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.847693 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.847694 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.847719 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.847721 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.847724 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.847727 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.858642 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.858644 LLDP, length 82 [|LLDP] 19:03:17.858665 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.858666 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e37 3268 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.858667 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.858669 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.858670 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.858685 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.858687 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.858689 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.858690 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.858691 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.858693 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.858721 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.858723 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.866885 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.866887 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.866888 LLDP, length 82 [|LLDP] 19:03:17.866929 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.866930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e3d 7f35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.866932 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.866933 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.866934 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.866935 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.866936 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.866938 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.866961 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.866963 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.866966 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.866969 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.877895 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.877897 LLDP, length 82 [|LLDP] 19:03:17.877920 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.877921 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e45 e59b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.877923 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.877924 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.877925 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.877926 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.877927 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.877928 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.877960 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.877962 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.877963 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.877975 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.877977 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.888908 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.888910 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.888911 LLDP, length 82 [|LLDP] 19:03:17.888951 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.888952 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e4e 4c01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.888954 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.888955 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.888956 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.888958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.888972 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.888974 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.888975 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.888977 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.888989 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.888992 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.897161 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.897163 LLDP, length 82 [|LLDP] 19:03:17.897184 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.897186 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e54 98cf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.897187 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.897188 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.897190 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.897191 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.897192 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.897193 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.897221 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.897223 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.897225 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.897236 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.897238 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.908173 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.908174 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.908175 LLDP, length 82 [|LLDP] 19:03:17.908214 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.908215 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e5c ff35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.908217 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.908218 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.908229 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.908231 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.908233 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.908234 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.908235 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.908236 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.908251 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.908253 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.916427 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.916429 LLDP, length 82 [|LLDP] 19:03:17.916452 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.916453 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e63 4c09 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.916454 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.916456 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.916457 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.916458 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.916459 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.916474 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.916476 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.916477 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.916478 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.916502 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.916505 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.927449 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.927450 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.927451 LLDP, length 82 [|LLDP] 19:03:17.927482 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.927483 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e6b b268 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.927485 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.927486 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.927487 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.927488 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.927489 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.927491 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.927513 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.927514 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.927517 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.927520 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.938448 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.938449 LLDP, length 82 [|LLDP] 19:03:17.938471 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.938472 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e74 18cf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.938474 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.938475 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.938477 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.938491 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.938493 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.938494 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.938496 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.938497 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.938498 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.938523 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.938526 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.946705 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.946706 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.946708 LLDP, length 82 [|LLDP] 19:03:17.946744 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.946744 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e7a 659b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.946746 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.946747 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.946748 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.946749 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.946751 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.946752 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.946775 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.946776 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.946779 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.946782 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.957716 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.957718 LLDP, length 82 [|LLDP] 19:03:17.957740 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.957740 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e82 cc02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.957742 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.957743 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.957744 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.957745 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.957747 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.957748 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.957775 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.957777 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.957778 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.957790 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.957792 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.968729 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.968730 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.968731 LLDP, length 82 [|LLDP] 19:03:17.968771 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.968772 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e8b 326f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.968773 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.968774 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.968776 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.968777 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.968790 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.968792 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.968793 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.968795 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.968807 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.968809 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.976986 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.976988 LLDP, length 82 [|LLDP] 19:03:17.977011 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.977012 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e91 7f36 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.977013 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.977014 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.977016 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.977017 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.977018 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.977019 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.977048 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.977050 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.977051 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.977063 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.977065 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.987997 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.987999 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.988000 LLDP, length 82 [|LLDP] 19:03:17.988038 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.988039 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e99 e59c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.988040 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.988042 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.988053 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.988054 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.988056 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.988057 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.988058 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.988059 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.988073 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.988076 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:17.999012 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:17.999013 LLDP, length 82 [|LLDP] 19:03:17.999042 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:17.999043 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ea2 4c02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:17.999044 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:17.999045 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:17.999047 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.999048 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:17.999049 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.999066 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:17.999068 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:17.999069 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:17.999071 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:17.999099 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:17.999101 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.007269 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.007271 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.007272 LLDP, length 82 [|LLDP] 19:03:18.007316 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.007318 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ea8 98cf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.007319 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.007320 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.007321 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.007323 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.007324 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.007325 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.007348 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.007350 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.007354 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.007356 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.018290 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.018292 LLDP, length 82 [|LLDP] 19:03:18.018313 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.018314 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0eb0 ff36 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.018315 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.018316 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.018317 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.018332 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.018334 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.018336 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.018337 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.018338 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.018339 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.018369 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.018372 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.026540 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.026542 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.026543 LLDP, length 82 [|LLDP] 19:03:18.026581 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.026582 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0eb7 4c02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.026584 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.026585 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.026586 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.026587 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.026588 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.026590 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.026614 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.026616 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.026620 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.026622 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.037544 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.037545 LLDP, length 82 [|LLDP] 19:03:18.037570 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.037571 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ebf b269 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.037572 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.037573 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.037575 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.037576 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.037577 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.037578 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.037608 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.037611 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.037612 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.037624 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.037626 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.048561 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.048563 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.048564 LLDP, length 82 [|LLDP] 19:03:18.048601 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.048601 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ec8 18ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.048603 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.048604 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.048606 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.048607 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.048620 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.048623 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.048624 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.048625 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.048637 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.048639 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.056810 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.056812 LLDP, length 82 [|LLDP] 19:03:18.056837 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.056838 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ece 659b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.056840 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.056841 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.056842 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.056843 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.056844 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.056846 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.056876 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.056878 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.056880 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.056891 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.056893 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.067820 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.067822 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.067823 LLDP, length 82 [|LLDP] 19:03:18.067865 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.067866 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ed6 cc02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.067867 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.067868 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.067880 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.067882 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.067884 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.067885 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.067886 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.067887 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.067901 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.067904 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.078839 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.078841 LLDP, length 82 [|LLDP] 19:03:18.078862 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.078862 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0edf 3268 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.078864 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.078865 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.078866 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.078867 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.078868 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.078885 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.078887 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.078888 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.078889 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.078915 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.078917 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.087091 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.087093 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.087094 LLDP, length 82 [|LLDP] 19:03:18.087136 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.087137 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ee5 7f35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.087138 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.087139 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.087141 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.087142 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.087143 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.087144 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.087167 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.087169 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.087172 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.087174 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.098096 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.098098 LLDP, length 82 [|LLDP] 19:03:18.098123 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.098124 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0eed e59b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.098125 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.098126 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.098127 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.098141 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.098142 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.098143 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.098145 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.098146 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.098147 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.098174 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.098176 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.109190 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.109193 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.109194 LLDP, length 82 [|LLDP] 19:03:18.109296 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.109297 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ef6 4c01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.109299 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.109300 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.109302 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.109303 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.109304 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.109306 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.109351 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.109354 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.109360 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.109362 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.117425 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.117428 LLDP, length 82 [|LLDP] 19:03:18.117474 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.117474 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0efc 98ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.117476 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.117478 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.117479 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.117480 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.117481 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.117483 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.117573 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.117576 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.117577 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.117591 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.117594 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.128392 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.128394 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.128395 LLDP, length 82 [|LLDP] 19:03:18.128435 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.128436 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f04 ff34 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.128438 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.128439 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.128440 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.128441 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.128458 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.128460 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.128461 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.128462 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.128475 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.128477 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.136644 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.136646 LLDP, length 82 [|LLDP] 19:03:18.136665 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.136666 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f0b 4c01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.136667 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.136668 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.136670 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.136671 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.136672 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.136673 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.136707 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.136709 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.136710 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.136722 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.136724 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.147644 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.147658 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.147659 LLDP, length 82 [|LLDP] 19:03:18.147695 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.147696 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f13 b268 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.147697 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.147699 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.147711 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.147713 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.147715 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.147716 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.147717 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.147718 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.147732 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.147735 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.158651 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.158653 LLDP, length 82 [|LLDP] 19:03:18.158679 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.158679 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f1c 18ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.158681 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.158682 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.158683 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.158684 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.158685 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.158701 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.158703 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.158705 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.158706 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.158731 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.158733 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.166913 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.166914 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.166915 LLDP, length 82 [|LLDP] 19:03:18.166957 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.166958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f22 65a2 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.166959 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.166961 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.166962 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.166963 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.166964 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.166965 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.166989 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.166991 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.166993 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.166996 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.177920 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.177921 LLDP, length 82 [|LLDP] 19:03:18.177950 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.177951 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f2a cc01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.177953 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.177954 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.177955 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.177971 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.177972 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.177973 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.177974 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.177976 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.177977 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.178003 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.178006 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.188932 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.188933 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.188934 LLDP, length 82 [|LLDP] 19:03:18.188977 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.188978 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f33 3268 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.188980 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.188981 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.188982 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.188983 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.188984 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.188986 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.189008 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.189010 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.189014 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.189016 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.197187 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.197189 LLDP, length 82 [|LLDP] 19:03:18.197214 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.197215 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f39 7f35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.197216 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.197217 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.197219 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.197220 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.197221 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.197222 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.197253 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.197255 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.197256 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.197268 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.197270 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.208200 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.208202 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.208203 LLDP, length 82 [|LLDP] 19:03:18.208244 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.208245 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f41 e59b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.208246 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.208247 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.208248 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.208250 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.208264 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.208266 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.208267 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.208268 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.208281 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.208283 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.216455 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.216457 LLDP, length 82 [|LLDP] 19:03:18.216482 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.216482 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f48 3269 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.216484 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.216485 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.216486 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.216487 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.216488 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.216490 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.216520 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.216522 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.216523 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.216534 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.216536 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.227469 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.227471 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.227478 LLDP, length 82 [|LLDP] 19:03:18.227520 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.227521 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f50 98cf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.227522 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.227524 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.227537 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.227539 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.227540 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.227541 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.227543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.227544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.227559 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.227561 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.238479 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.238481 LLDP, length 82 [|LLDP] 19:03:18.238512 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.238513 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f58 ff36 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.238514 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.238515 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.238516 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.238517 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.238518 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.238538 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.238539 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.238541 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.238542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.238573 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.238575 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.246733 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.246735 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.246736 LLDP, length 82 [|LLDP] 19:03:18.246779 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.246780 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f5f 4c02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.246782 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.246783 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.246784 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.246786 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.246787 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.246788 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.246812 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.246814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.246817 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.246819 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.257742 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.257744 LLDP, length 82 [|LLDP] 19:03:18.257771 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.257772 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f67 b268 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.257773 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.257774 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.257776 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.257790 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.257792 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.257793 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.257794 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.257796 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.257797 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.257823 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.257825 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.268752 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.268754 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.268755 LLDP, length 82 [|LLDP] 19:03:18.268797 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.268798 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f70 18ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.268799 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.268800 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.268802 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.268803 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.268804 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.268806 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.268829 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.268831 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.268834 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.268836 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.277008 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.277010 LLDP, length 82 [|LLDP] 19:03:18.277035 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.277036 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f76 659b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.277037 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.277038 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.277039 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.277040 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.277042 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.277043 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.277073 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.277075 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.277076 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.277088 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.277090 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.288021 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.288022 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.288023 LLDP, length 82 [|LLDP] 19:03:18.288068 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.288069 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f7e cc02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.288070 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.288072 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.288073 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.288074 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.288102 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.288104 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.288105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.288107 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.288120 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.288122 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.299040 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.299042 LLDP, length 82 [|LLDP] 19:03:18.299060 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.299061 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f87 3268 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.299063 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.299064 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.299065 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.299066 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.299067 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.299068 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.299098 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.299100 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.299101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.299112 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.299115 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.307289 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.307290 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.307291 LLDP, length 82 [|LLDP] 19:03:18.307332 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.307333 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f8d 7f34 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.307334 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.307336 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.307347 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.307350 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.307351 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.307352 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.307353 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.307354 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.307368 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.307370 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.318297 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.318299 LLDP, length 82 [|LLDP] 19:03:18.318324 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.318325 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f95 e59b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.318326 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.318328 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.318329 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.318330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.318331 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.318347 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.318349 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.318350 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.318352 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.318377 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.318379 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.326555 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.326557 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.326558 LLDP, length 82 [|LLDP] 19:03:18.326600 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.326601 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f9c 3268 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.326603 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.326604 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.326605 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.326606 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.326607 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.326608 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.326631 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.326632 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.326636 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.326638 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.337591 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.337594 LLDP, length 82 [|LLDP] 19:03:18.337619 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.337620 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fa4 98ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.337622 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.337623 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.337624 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.337644 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.337646 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.337648 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.337649 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.337650 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.337651 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.337688 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.337690 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.348584 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.348586 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.348587 LLDP, length 82 [|LLDP] 19:03:18.348637 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.348638 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fac ff34 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.348640 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.348641 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.348643 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.348644 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.348645 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.348647 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.348673 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.348675 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.348679 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.348681 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.356851 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.356853 LLDP, length 82 [|LLDP] 19:03:18.356875 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.356876 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fb3 4c01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.356878 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.356879 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.356880 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.356881 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.356883 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.356884 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.356925 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.356927 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.356928 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.356940 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.356943 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.367852 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.367854 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.367855 LLDP, length 82 [|LLDP] 19:03:18.367903 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.367904 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fbb b268 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.367905 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.367907 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.367908 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.367909 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.367924 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.367926 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.367927 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.367928 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.367946 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.367948 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.378853 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.378862 LLDP, length 82 [|LLDP] 19:03:18.378884 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.378884 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fc4 18ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.378886 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.378887 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.378888 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.378889 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.378890 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.378891 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.378927 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.378929 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.378930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.378942 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.378944 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.387112 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.387114 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.387115 LLDP, length 82 [|LLDP] 19:03:18.387163 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.387164 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fca 659b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.387165 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.387167 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.387180 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.387182 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.387184 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.387185 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.387186 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.387187 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.387203 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.387205 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.398124 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.398127 LLDP, length 82 [|LLDP] 19:03:18.398154 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.398155 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fd2 cc02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.398157 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.398158 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.398159 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.398160 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.398161 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.398179 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.398181 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.398182 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.398184 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.398212 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.398214 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.409140 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.409142 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.409143 LLDP, length 82 [|LLDP] 19:03:18.409188 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.409189 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fdb 3269 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.409191 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.409192 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.409194 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.409195 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.409196 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.409198 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.409224 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.409226 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.409229 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.409231 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.417401 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.417404 LLDP, length 82 [|LLDP] 19:03:18.417427 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.417427 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fe1 7f3b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.417429 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.417431 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.417432 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.417449 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.417451 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.417452 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.417453 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.417454 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.417455 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.417486 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.417488 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.428416 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.428418 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.428418 LLDP, length 82 [|LLDP] 19:03:18.428468 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.428469 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fe9 e59c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.428470 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.428471 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.428472 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.428474 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.428475 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.428476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.428504 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.428506 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.428509 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.428512 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.436663 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.436665 LLDP, length 82 [|LLDP] 19:03:18.436697 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.436698 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ff0 3269 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.436700 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.436701 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.436702 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.436703 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.436705 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.436706 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.436744 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.436747 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.436748 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.436760 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.436762 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.447686 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.447688 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.447695 LLDP, length 82 [|LLDP] 19:03:18.447742 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.447747 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ff8 98cf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.447749 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.447750 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.447751 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.447753 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.447770 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.447773 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.447774 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.447775 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.447788 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.447790 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.458682 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.458684 LLDP, length 82 [|LLDP] 19:03:18.458712 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.458713 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1000 ff35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.458715 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.458716 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.458717 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.458733 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.458735 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.458737 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.458784 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.458786 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.458788 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.458801 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.458804 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.466976 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.466978 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.466979 LLDP, length 82 [|LLDP] 19:03:18.467034 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.467035 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1007 4c02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.467037 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.467038 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.467061 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.467064 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.467065 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.467067 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.467069 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.467070 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.467087 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.467091 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.477942 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.477944 LLDP, length 82 [|LLDP] 19:03:18.477972 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.477973 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 100f b268 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.477975 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.477976 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.477977 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.477979 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.477980 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.478033 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.488967 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.488969 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.488970 LLDP, length 82 [|LLDP] 19:03:18.489014 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.489015 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1018 18ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.489017 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.489018 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.489019 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.489021 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.489022 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.489023 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.489024 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.489052 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.489053 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.489056 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.497222 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.497224 LLDP, length 82 [|LLDP] 19:03:18.497256 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.497257 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 101e 659c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.497258 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.497259 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.497260 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.497262 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.497263 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.497283 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.497284 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.497287 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.497288 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.497289 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.497291 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.508230 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.508232 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.508233 LLDP, length 82 [|LLDP] 19:03:18.508284 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.508285 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1026 cc02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.508286 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.508287 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.508288 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.508290 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.508291 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.508292 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.508298 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.508326 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.508328 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.508332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.516496 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.516505 LLDP, length 82 [|LLDP] 19:03:18.516533 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.516534 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 102d 18ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.516535 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.516537 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.516538 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.516561 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.516562 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.516564 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.516565 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.516566 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.516567 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.516569 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.516570 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.527514 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.527516 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.527517 LLDP, length 82 [|LLDP] 19:03:18.527569 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.527570 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1035 7f35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.527572 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.527573 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.527574 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.527576 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.527578 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.527579 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.527600 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.527602 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.527604 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.527606 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.538505 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.538507 LLDP, length 82 [|LLDP] 19:03:18.538537 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.538538 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 103d e59b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.538539 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.538541 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.538542 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.538543 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.538544 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.538545 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.538546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.538587 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.538588 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.538591 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.538592 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.546758 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.546760 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.546761 LLDP, length 82 [|LLDP] 19:03:18.546810 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.546811 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1044 3267 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.546813 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.546814 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.546815 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.546817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.546833 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.546834 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.546837 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.546838 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.546840 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.546841 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.557768 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.557770 LLDP, length 82 [|LLDP] 19:03:18.557796 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.557797 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 104c 98cf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.557799 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.557800 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.557801 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.557803 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.557804 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.557805 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.557806 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.557841 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.557842 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.557845 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.557846 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.568777 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.568778 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.568779 LLDP, length 82 [|LLDP] 19:03:18.568824 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.568825 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1054 ff35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.568826 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.568828 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.568829 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.568830 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.568831 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.568833 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.568834 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.568859 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.568860 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.568862 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.577040 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.577042 LLDP, length 82 [|LLDP] 19:03:18.577064 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.577065 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 105b 4c02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.577066 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.577067 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.577069 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.577070 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.577071 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.577088 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.577089 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.577091 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.577093 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.577094 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.577096 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.588052 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.588053 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.588054 LLDP, length 82 [|LLDP] 19:03:18.588094 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.588095 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1063 b26f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.588097 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.588098 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.588099 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.588100 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.588101 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.588103 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.588104 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.588129 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.588130 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.588133 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.599056 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.599058 LLDP, length 82 [|LLDP] 19:03:18.599079 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.599080 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 106c 18cf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.599081 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.599082 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.599084 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.599098 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.599100 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.599102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.599103 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.599105 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.599106 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.599107 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.599109 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.607310 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.607312 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.607313 LLDP, length 82 [|LLDP] 19:03:18.607357 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.607358 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1072 659c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.607359 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.607361 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.607362 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.607363 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.607364 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.607366 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.607383 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.607384 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.607387 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.607388 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.618321 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.618323 LLDP, length 82 [|LLDP] 19:03:18.618351 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.618352 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 107a cc03 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.618353 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.618355 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.618356 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.618357 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.618359 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.618360 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.618361 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.618395 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.618397 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.618399 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.618401 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.626576 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.626578 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.626579 LLDP, length 82 [|LLDP] 19:03:18.626622 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.626623 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1081 18cf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.626625 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.626626 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.626627 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.626628 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.626643 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.626644 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.626646 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.626647 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.626648 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.626650 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.637589 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.637591 LLDP, length 82 [|LLDP] 19:03:18.637616 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.637617 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1089 7f36 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.637618 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.637620 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.637621 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.637622 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.637623 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.637624 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.637625 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.637658 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.637660 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.637662 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.637664 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.648606 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.648608 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.648609 LLDP, length 82 [|LLDP] 19:03:18.648643 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.648644 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1091 e59c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.648646 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.648647 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.648648 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.648650 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.648651 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.648652 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.648654 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.648678 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.648679 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.648682 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.656857 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.656859 LLDP, length 82 [|LLDP] 19:03:18.656886 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.656887 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1098 3268 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.656888 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.656889 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.656891 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.656892 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.656893 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.656911 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.656912 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.656915 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.656916 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.656918 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.656919 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.667867 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.667870 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.667871 LLDP, length 82 [|LLDP] 19:03:18.667916 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.667917 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10a0 98d4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.667919 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.667920 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.667921 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.667922 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.667924 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.667925 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.667926 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.667952 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.667954 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.667957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.678875 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.678877 LLDP, length 82 [|LLDP] 19:03:18.678904 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.678905 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10a8 ff35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.678906 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.678907 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.678909 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.678924 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.678926 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.678928 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.678930 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.678931 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.678932 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.678934 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.678935 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.687137 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.687139 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.687140 LLDP, length 82 [|LLDP] 19:03:18.687187 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.687188 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10af 4c02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.687190 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.687190 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.687191 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.687193 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.687194 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.687195 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.687212 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.687213 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.687215 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.687217 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.698153 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.698155 LLDP, length 82 [|LLDP] 19:03:18.698175 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.698175 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10b7 b268 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.698177 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.698178 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.698179 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.698180 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.698181 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.698182 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.698184 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.698217 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.698218 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.698221 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.698223 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.706399 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.706401 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.706402 LLDP, length 82 [|LLDP] 19:03:18.706443 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.706444 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10bd ff35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.706446 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.706447 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.706448 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.706449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.706465 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.706466 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.706469 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.706470 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.706471 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.706473 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.717408 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.717410 LLDP, length 82 [|LLDP] 19:03:18.717436 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.717437 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10c6 659b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.717439 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.717440 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.717441 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.717443 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.717443 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.717445 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.717446 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.717481 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.717482 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.717485 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.717486 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.728420 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.728422 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.728423 LLDP, length 82 [|LLDP] 19:03:18.728466 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.728467 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10ce cc02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.728469 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.728470 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.728471 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.728472 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.728473 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.728475 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.728476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.728502 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.728503 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.728506 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.736684 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.736686 LLDP, length 82 [|LLDP] 19:03:18.736703 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.736703 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10d5 18ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.736705 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.736706 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.736707 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.736709 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.736710 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.736725 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.736727 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.736729 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.736730 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.736732 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.736733 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.747701 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.747703 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.747704 LLDP, length 82 [|LLDP] 19:03:18.747738 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.747739 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10dd 7f34 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.747741 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.747742 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.747743 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.747745 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.747746 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.747747 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.747748 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.747772 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.747773 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.747776 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.758695 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.758697 LLDP, length 82 [|LLDP] 19:03:18.758723 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.758724 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10e5 e59b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.758726 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.758727 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.758728 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.758743 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.758744 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.758747 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.758748 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.758749 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.758750 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.758752 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.758753 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.766954 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.766956 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.766957 LLDP, length 82 [|LLDP] 19:03:18.766999 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.767000 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10ec 3268 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.767001 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.767003 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.767004 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.767005 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.767006 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.767008 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.767024 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.767025 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.767027 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.767029 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.777964 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.777966 LLDP, length 82 [|LLDP] 19:03:18.777992 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.777993 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10f4 98ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.777994 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.777995 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.777997 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.777998 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.777999 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.778000 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.778001 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.778034 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.778035 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.778037 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.778039 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.788974 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.788976 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.788976 LLDP, length 82 [|LLDP] 19:03:18.789018 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.789019 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10fc ff35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.789020 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.789021 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.789023 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.789024 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.789039 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.789041 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.789043 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.789044 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.789046 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.789047 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.797253 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.797256 LLDP, length 82 [|LLDP] 19:03:18.797286 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.797287 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1103 4c01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.797288 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.797290 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.797291 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.797292 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.797293 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.797295 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.797296 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.797337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.797338 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.797341 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.797342 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.808242 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.808244 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.808244 LLDP, length 82 [|LLDP] 19:03:18.808287 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.808288 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 110b b268 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.808289 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.808290 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.808292 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.808293 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.808294 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.808296 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.808297 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.808323 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.808324 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.808327 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.816508 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.816510 LLDP, length 82 [|LLDP] 19:03:18.816529 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.816529 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1111 ff35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.816531 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.816532 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.816533 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.816535 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.816536 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.816553 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.816554 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.816556 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.816558 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.816559 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.816560 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.827506 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.827508 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.827509 LLDP, length 82 [|LLDP] 19:03:18.827551 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.827552 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 111a 659b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.827553 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.827554 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.827555 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.827557 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.827558 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.827559 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.827560 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.827585 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.827586 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.827589 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.838518 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.838519 LLDP, length 82 [|LLDP] 19:03:18.838547 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.838547 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1122 cc08 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.838549 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.838550 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.838551 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.838567 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.838568 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.838570 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.838572 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.838573 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.838574 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.838575 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.838577 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.846788 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.846789 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.846790 LLDP, length 82 [|LLDP] 19:03:18.846830 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.846831 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1129 18cf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.846833 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.846834 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.846835 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.846836 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.846838 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.846839 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.846856 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.846858 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.846860 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.846861 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.857796 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.857797 LLDP, length 82 [|LLDP] 19:03:18.857816 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.857817 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1131 7f35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.857818 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.857820 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.857821 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.857822 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.857823 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.857824 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.857825 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.857858 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.857859 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.857862 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.857864 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.868795 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.868797 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.868798 LLDP, length 82 [|LLDP] 19:03:18.868838 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.868840 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1139 e59b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.868841 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.868842 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.868843 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.868845 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.868859 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.868860 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.868863 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.868864 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.868865 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.868867 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.877042 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.877043 LLDP, length 82 [|LLDP] 19:03:18.877063 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.877064 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1140 3269 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.877065 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.877066 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.877067 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.877069 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.877070 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.877100 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.888061 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.888063 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1148 98cf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.888065 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.888072 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.888087 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.888088 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.888090 LLDP, length 82 [|LLDP] 19:03:18.888110 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.888120 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.888121 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.888122 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.888123 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.888124 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.888139 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.888141 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.899073 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.899075 LLDP, length 82 [|LLDP] 19:03:18.899093 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.899094 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1150 ff36 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.899096 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.899097 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.899098 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.899100 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.899101 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.899116 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.899118 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.899119 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.899120 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.899144 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.899146 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.907330 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.907332 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.907333 LLDP, length 82 [|LLDP] 19:03:18.907372 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.907373 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1157 4c03 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.907375 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.907376 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.907377 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.907378 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.907380 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.907381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.907403 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.907405 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.907408 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.907410 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.918352 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.918353 LLDP, length 82 [|LLDP] 19:03:18.918373 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.918374 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 115f b26b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.918375 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.918377 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.918378 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.918393 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.918395 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.918397 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.918398 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.918399 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.918401 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.918428 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.918430 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.926596 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.926598 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.926599 LLDP, length 82 [|LLDP] 19:03:18.926640 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.926641 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1165 ff36 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.926642 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.926644 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.926645 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.926646 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.926647 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.926648 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.926672 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.926674 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.926677 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.926679 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.937607 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.937608 LLDP, length 82 [|LLDP] 19:03:18.937634 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.937635 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 116e 659c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.937636 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.937638 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.937638 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.937640 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.937641 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.937642 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.937672 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.937674 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.937675 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.937687 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.937689 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.948615 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.948617 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.948618 LLDP, length 82 [|LLDP] 19:03:18.948660 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.948661 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1176 cc02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.948662 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.948663 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.948665 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.948666 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.948680 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.948682 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.948683 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.948684 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.948697 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.948699 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.956875 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.956877 LLDP, length 82 [|LLDP] 19:03:18.956902 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.956903 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 117d 18cf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.956904 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.956906 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.956907 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.956908 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.956909 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.956910 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.956942 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.956944 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.956945 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.956957 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.956959 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.967883 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.967885 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.967886 LLDP, length 82 [|LLDP] 19:03:18.967928 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.967929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1185 7f35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.967930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.967931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.967943 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.967945 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.967946 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.967947 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.967948 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.967949 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.967964 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.967967 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.978894 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.978895 LLDP, length 82 [|LLDP] 19:03:18.978919 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.978920 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 118d e59c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.978921 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.978922 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.978923 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.978925 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.978926 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.978941 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.978944 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.978945 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.978946 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.978972 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.978974 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.987152 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.987154 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.987155 LLDP, length 82 [|LLDP] 19:03:18.987195 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.987196 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1194 3268 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.987197 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.987199 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.987200 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.987201 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.987202 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.987203 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.987226 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.987228 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.987231 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.987232 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:18.998159 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:18.998160 LLDP, length 82 [|LLDP] 19:03:18.998185 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:18.998186 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 119c 98ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:18.998187 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.998188 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:18.998189 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.998203 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:18.998205 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:18.998206 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:18.998207 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:18.998208 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:18.998210 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:18.998236 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:18.998238 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:19.006418 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:19.006420 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:19.006421 LLDP, length 82 [|LLDP] 19:03:19.006463 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:19.006464 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11a2 e59c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:19.006465 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:19.006467 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:19.006468 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:19.006469 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:19.006471 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:19.006472 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:19.006494 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:19.006495 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:19.006499 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:19.006501 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:19.017429 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:19.017431 LLDP, length 82 [|LLDP] 19:03:19.017457 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:19.017458 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11ab 4c02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:19.017459 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:19.017460 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:19.017461 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:19.017462 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:19.017464 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:19.017465 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:19.017496 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:19.017498 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:19.017500 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:19.017511 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:19.017513 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:19.028441 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:19.028442 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:19.028443 LLDP, length 82 [|LLDP] 19:03:19.028485 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:19.028486 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11b3 b268 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:19.028487 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:19.028488 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:19.028490 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:19.028491 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:19.028510 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:19.028512 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:19.028513 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:19.028514 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:19.028527 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:19.028529 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:19.036695 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:19.036696 LLDP, length 82 [|LLDP] 19:03:19.036722 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:19.036723 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11b9 ff3c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:19.036724 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:19.036725 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:19.036726 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:19.036727 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:19.036728 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:19.036730 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:19.036761 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:19.036763 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:19.036764 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:19.036776 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:19.036778 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:19.047728 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:19.047730 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:19.047731 LLDP, length 82 [|LLDP] 19:03:19.047776 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:19.047777 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11c2 659b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:19.047778 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:19.047780 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:19.047792 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:19.047793 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:19.047795 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:19.047796 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:19.047797 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:19.047798 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:19.047812 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:19.047814 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:19.058716 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:19.058717 LLDP, length 82 [|LLDP] 19:03:19.058741 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:19.058742 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11ca cc01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:19.058744 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:19.058745 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:19.058746 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:19.058747 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:19.058748 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:19.058764 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:19.058766 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:19.058767 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:19.058768 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:19.058792 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:19.058794 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:19.066973 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:19.066975 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:19.066976 LLDP, length 82 [|LLDP] 19:03:19.067016 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:19.067017 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11d1 18ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:19.067018 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:19.067019 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:19.067021 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:19.067022 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:19.067023 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:19.067024 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:19.067046 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:19.067048 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:19.067050 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:19.067052 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:19.077998 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:19.078000 LLDP, length 82 [|LLDP] 19:03:19.078018 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:19.078019 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11d9 7f34 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:19.078020 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:19.078021 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:19.078022 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:19.078036 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:19.078038 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:19.078039 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:19.078040 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:19.078042 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:19.078043 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:19.078070 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:19.078072 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:19.088997 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:19.088999 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:19.089000 LLDP, length 82 [|LLDP] 19:03:19.089034 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:19.089035 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11e1 e5a1 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:19.089037 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:19.089038 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:19.089039 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:19.089040 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:19.089042 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:19.089043 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:19.089066 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:19.089067 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:19.089071 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:19.089073 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:19.097253 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:19.097254 LLDP, length 82 [|LLDP] 19:03:19.097279 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:19.097280 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11e8 3268 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:19.097281 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:19.097283 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:19.097284 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:19.097285 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:19.097286 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:19.097287 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:19.097317 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:19.097319 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:19.097320 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:19.097331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:19.097333 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:19.108261 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:19.108262 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:19.108263 LLDP, length 82 [|LLDP] 19:03:19.108304 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:19.108305 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11f0 98ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:19.108306 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:19.108308 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:19.108309 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:19.108310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:19.108323 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:19.108325 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:19.108326 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:19.108327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:19.108340 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:19.108342 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:19.116518 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:19.116520 LLDP, length 82 [|LLDP] 19:03:19.116545 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:19.116545 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11f6 e59a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:19.116547 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:19.116548 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:19.116549 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:19.116550 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:19.116552 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:19.116553 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:19.116583 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:19.116585 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:19.116586 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:19.116598 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:19.116600 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:19.127535 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:19.127537 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:19.127545 LLDP, length 82 [|LLDP] 19:03:19.127588 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:19.127589 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11ff 4c01 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:19.127591 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:19.127592 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:19.127606 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:19.127607 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:19.127609 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:19.127610 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:19.127611 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:19.127612 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:19.127627 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:19.127629 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:19.138555 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:19.138564 LLDP, length 82 [|LLDP] 19:03:19.138591 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:19.138592 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1207 b268 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:19.138594 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:19.138595 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:19.138596 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:19.138597 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:19.138598 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:19.138619 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:19.138621 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:19.138622 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:19.138623 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:19.138657 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:19.138659 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:19.146812 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:19.146814 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:19.146815 LLDP, length 82 [|LLDP] 19:03:19.146858 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:19.146859 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 120d ff35 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:19.146860 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:19.146862 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:19.146863 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:19.146864 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:19.146865 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:19.146866 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:19.146891 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:19.146893 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:19.146897 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:19.146899 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:19.157808 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:19.157810 LLDP, length 82 [|LLDP] 19:03:19.157837 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:19.157837 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1216 659b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:19.157839 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:19.157840 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:19.157841 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:19.157857 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:19.157858 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:19.157860 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:19.157861 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:19.157862 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:19.157863 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:19.157891 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:19.157893 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:19.168818 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:19.168820 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:19.168821 LLDP, length 82 [|LLDP] 19:03:19.168867 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:19.168868 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 121e cc04 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:19.168870 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:19.168871 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:19.168872 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:19.168873 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:19.168874 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:19.168875 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:19.168899 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:19.168901 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:19.168904 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:19.168906 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:19.177075 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:19.177077 LLDP, length 82 [|LLDP] 19:03:19.177104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:19.177105 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1225 18cf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:19.177106 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:19.177108 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:19.177109 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:19.177110 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:19.177111 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:19.177112 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:19.177145 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:19.177147 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:19.177148 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:19.177160 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:19.177162 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:19.188086 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:19.188087 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:19.188088 LLDP, length 82 [|LLDP] 19:03:19.188135 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:19.188136 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 122d 7f36 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:19.188137 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:19.188139 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:19.188140 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:19.188141 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:19.188156 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:19.188158 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:19.188159 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:19.188160 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:19.188173 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:19.188175 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:19.196353 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:19.196355 LLDP, length 82 [|LLDP] 19:03:19.196374 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:19.196375 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1233 cc02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:19.196376 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:19.196377 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:19.196378 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:19.196379 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:19.196381 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:19.196382 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:19.196415 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:19.196417 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:19.196418 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:19.196430 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:19.196432 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:19.207354 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:19.207356 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:19.207357 LLDP, length 82 [|LLDP] 19:03:19.207399 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:19.207400 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 123c 3269 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:19.207402 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:19.207403 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:19.207415 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:19.207417 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:19.207419 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:19.207420 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:19.207421 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:19.207422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:19.207436 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:19.207439 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:19.218362 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:19.218364 LLDP, length 82 [|LLDP] 19:03:19.218391 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:19.218392 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1244 98cf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:19.218393 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:19.218395 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:19.218395 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:19.218397 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:19.218398 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:19.218413 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:19.218415 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:19.218417 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:19.218418 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:19.218444 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:19.218446 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:19.226621 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:19.226622 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:19.226623 LLDP, length 82 [|LLDP] 19:03:19.226667 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:19.226668 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 124a e59d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:19.226670 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:19.226671 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:19.226672 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:19.226673 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:19.226675 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:19.226676 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:19.226698 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:19.226700 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:19.226704 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:19.226705 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:19.237631 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:19.237633 LLDP, length 82 [|LLDP] 19:03:19.237661 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:19.237662 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1253 4c03 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:19.237664 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:19.237665 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:19.237666 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:19.237683 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:19.237685 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:19.237686 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:19.237687 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:19.237688 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:19.237690 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:19.237719 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:19.237721 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:19.248643 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:19.248645 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:19.248646 LLDP, length 82 [|LLDP] 19:03:19.248690 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:19.248691 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 125b b269 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:19.248692 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:19.248694 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:19.248695 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:19.248696 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:19.248697 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:19.248698 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:19.248722 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:19.248724 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:19.248728 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:19.248730 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:19.256900 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:19.256902 LLDP, length 82 [|LLDP] 19:03:19.256923 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:19.256924 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1261 ff36 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:19.256925 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:19.256927 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:19.256928 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:19.256929 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:19.256930 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:19.256931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:19.256962 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:19.256964 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:19.256965 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:19.256976 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:19.256978 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:03:19.267917 IP 1.1.1.2.29660 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:03:19.267919 IP 1.1.1.2.146 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:19.267920 LLDP, length 82 [|LLDP] 19:03:19.267957 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:03:19.267958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 126a 659c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:03:19.267959 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:03:19.267960 IP 192.168.1.1.22997 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:03:19.267962 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:03:19.267963 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:19.267976 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:03:19.267978 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:03:19.267980 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:03:19.267981 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:03:19.267993 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:03:19.267995 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 tcpdump: verbose output suppressed, use -v or -vv for full protocol decode listening on swp33, link-type EN10MB (Ethernet), capture size 262144 bytes 8971 packets captured 8971 packets received by filter 0 packets dropped by kernel -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_bum_traffic_port_with_rif from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_bum_traffic_port.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=44, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=44, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=9] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=44, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=10] Command: date INFO asyncssh:logging.py:92 [conn=44, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=10] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 19:03:28 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=44, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=44, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=11] Channel closed DEBUG infra2:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 INFO asyncssh:logging.py:92 [conn=44, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=12] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 INFO asyncssh:logging.py:92 [conn=44, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=44, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=44, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=44, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=14] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=44, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=14] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"b2:b2:ed:f9:e0:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"f6:33:41:29:6d:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=44, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=44, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=44, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=16] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=44, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=44, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=44, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=17] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=44, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=44, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=18] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 19:03:28 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=44, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=44, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=19] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=44, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=44, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=20] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 19:03:28 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=44, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=44, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=44, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=44, chan=22] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=44, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=44, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=44, chan=22] Channel closed DEBUG infra2:Logger.py:156 [] | |||
| Passed | functional/bridging/test_bridging_bum_traffic_port.py::test_bridging_bum_traffic_port_without_rif | 243.98 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_bum_traffic_port_without_rif">Starting testcase:test_bridging_bum_traffic_port_without_rif from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_bum_traffic_port.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-2557' coro=<test_bridging_bum_traffic_port_without_rif() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_bum_traffic_port.py:132> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=44, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=45] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=45] Local address: 172.17.0.3, port 57942 INFO asyncssh:logging.py:92 [conn=45] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=45] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=45] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=45, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=45, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 19:03:28 UTC 2023 INFO asyncssh:logging.py:92 [conn=45, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=45, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=45, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=2] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=45, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=45, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=45, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip -j link show swp33 INFO asyncssh:logging.py:92 [conn=45, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=4] Command: ip -j link show swp33 INFO asyncssh:logging.py:92 [conn=45, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=4] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:2:7' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Bridged_UnknownL2UC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for BridgedLLDP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for LACPDU INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4ToMe INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ARP_Request_BC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ARP_Reply INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_Broadcast INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPV4_SSH INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPV4_Telnet INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Host_to_Host_IPv4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_ICMP_Request INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_DCHP_BC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_Reserved_MC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_All_Systems_on_this_Subnet INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_All_Routers_on_this_Subnet INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_OSPFIGP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_RIP2_Routers INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_EIGRP_Routers INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_DHCP_Server/Relay_Agent INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_VRRP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_IGMP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPV4_BGP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [DENT infrastructure 2] Starting timeout --preserve-status 15 tcpdump -i swp33 -n on infra2... INFO asyncssh:logging.py:92 [conn=45, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=45, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=5] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S timeout --preserve-status 15 tcpdump -i swp33 -n INFO asyncssh:logging.py:92 [conn=45, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=6] Command: echo onl | sudo -S timeout --preserve-status 15 tcpdump -i swp33 -n INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f75b86a0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI Bridged_UnknownL2UC SIP-DIP N/A Tx 600 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI BridgedLLDP SIP-DIP N/A Tx 600 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI LACPDU SIP-DIP N/A Tx 600 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPv4ToMe SIP-DIP N/A Tx 600 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI ARP_Request_BC SIP-DIP N/A Tx 600 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI ARP_Reply SIP-DIP N/A Tx 600 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPv4_Broadcast SIP-DIP N/A Tx 600 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPV4_SSH SIP-DIP N/A Tx 600 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPV4_Telnet SIP-DIP N/A Tx 600 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI Host_to_Host_IPv4 SIP-DIP N/A Tx 600 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPv4_ICMP_Request SIP-DIP N/A Tx 600 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPv4_DCHP_BC SIP-DIP N/A Tx 600 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPv4_Reserved_MC SIP-DIP N/A Tx 600 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPv4_All_Systems_on_this_Subnet SIP-DIP N/A Tx 600 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPv4_All_Routers_on_this_Subnet SIP-DIP N/A Tx 600 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPv4_OSPFIGP SIP-DIP N/A Tx 600 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPv4_RIP2_Routers SIP-DIP N/A Tx 600 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPv4_EIGRP_Routers SIP-DIP N/A Tx 600 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPv4_DHCP_Server/Relay_Agent SIP-DIP N/A Tx 600 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPv4_VRRP SIP-DIP N/A Tx 600 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPv4_IGMP SIP-DIP N/A Tx 600 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPV4_BGP SIP-DIP N/A Tx 600 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=45, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=6] Channel closed DEBUG infra2:Logger.py:156 19:07:17.443725 LLDP, length 82 [|LLDP] 19:07:17.443743 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:17.443744 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0098 933f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:17.443747 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:17.443748 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:17.443749 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:17.443751 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:17.443752 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:17.443753 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.443786 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.443788 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.443790 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.443799 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:17.443802 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:17.443803 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:17.451901 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:17.451903 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.451920 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.451921 LLDP, length 82 [|LLDP] 19:07:17.451931 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:17.451932 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 009e e00c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:17.451933 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:17.451935 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:17.451936 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:17.451938 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:17.451943 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:17.451944 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.451945 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.451946 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:17.451946 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:17.462915 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:17.462917 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.462928 LLDP, length 82 [|LLDP] 19:07:17.462937 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:17.462938 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00a7 4672 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:17.462939 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:17.462941 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:17.462942 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:17.462943 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:17.462944 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.462951 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:17.462953 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.462954 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.462955 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:17.462956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:17.471170 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:17.471172 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.471188 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.471189 LLDP, length 82 [|LLDP] 19:07:17.471203 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:17.471204 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00ad 933f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:17.471205 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:17.471207 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:17.471208 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:17.471210 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:17.471211 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:17.471212 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.471213 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.471214 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:17.471215 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:17.482171 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:17.482173 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.482189 LLDP, length 82 [|LLDP] 19:07:17.482199 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:17.482200 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00b5 f9a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:17.482202 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:17.482203 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:17.482204 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:17.482205 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:17.482206 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.482214 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:17.482216 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.482217 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.482218 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:17.482220 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:17.493188 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:17.493190 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.493205 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.493206 LLDP, length 82 [|LLDP] 19:07:17.493217 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:17.493218 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00be 600c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:17.493220 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:17.493221 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:17.493222 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:17.493223 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:17.493224 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:17.493225 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.493226 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.493227 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:17.493229 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:17.501447 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:17.501449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.501464 LLDP, length 82 [|LLDP] 19:07:17.501473 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:17.501474 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00c4 acdf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:17.501476 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:17.501477 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:17.501478 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:17.501479 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:17.501480 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.501488 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:17.501490 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.501491 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.501492 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:17.501493 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:17.512460 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:17.512463 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.512472 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.512474 LLDP, length 82 [|LLDP] 19:07:17.512484 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:17.512485 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00cd 133f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:17.512486 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:17.512488 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:17.512489 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:17.512490 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:17.512492 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:17.512493 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.512494 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.523454 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:17.523456 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.523464 LLDP, length 82 [|LLDP] 19:07:17.523474 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:17.523484 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00d5 79a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:17.523486 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:17.523487 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:17.523488 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.523492 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:17.531768 LLDP, length 82 [|LLDP] 19:07:17.531782 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:17.531783 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00db c672 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:17.531786 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:17.531787 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.531798 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.531799 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:17.531802 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:17.531804 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:17.542732 LLDP, length 82 [|LLDP] 19:07:17.542744 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:17.542745 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00e4 2cd8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:17.542747 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:17.542748 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:17.542749 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:17.542750 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.542762 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.542764 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:17.550993 LLDP, length 82 [|LLDP] 19:07:17.551012 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:17.551013 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00ea 79a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:17.551015 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:17.551016 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:17.551017 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:17.551018 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.551032 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.551033 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:17.551035 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:17.551036 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.551037 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.551039 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:17.551040 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:17.551041 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:17.562001 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:17.562002 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.562017 LLDP, length 82 [|LLDP] 19:07:17.562028 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:17.562028 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00f2 e00c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:17.562030 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:17.562031 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:17.562032 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:17.562034 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:17.562035 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.562042 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:17.562044 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.562045 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.562046 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:17.562047 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:17.573001 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:17.573003 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.573018 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.573020 LLDP, length 82 [|LLDP] 19:07:17.573030 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:17.573031 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00fb 4672 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:17.573033 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:17.573034 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:17.573035 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:17.573037 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:17.573038 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:17.573039 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.573040 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.573041 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:17.573042 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:17.581260 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:17.581262 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.581277 LLDP, length 82 [|LLDP] 19:07:17.581287 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:17.581288 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0101 9340 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:17.581290 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:17.581291 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:17.581292 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:17.581293 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:17.581294 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.581301 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:17.581303 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.581304 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.581305 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:17.581306 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:17.592273 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:17.592274 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.592288 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.592289 LLDP, length 82 [|LLDP] 19:07:17.592301 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:17.592302 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0109 f9a6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:17.592303 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:17.592305 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:17.592306 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:17.592307 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:17.592308 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:17.592309 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.592310 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.592311 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:17.592312 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:17.603278 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:17.603280 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.603294 LLDP, length 82 [|LLDP] 19:07:17.603304 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:17.603305 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0112 600d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:17.603307 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:17.603308 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:17.603309 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:17.603310 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:17.603312 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.603319 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:17.603321 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.603321 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.603323 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:17.603324 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:17.611545 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:17.611546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.611554 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.611555 LLDP, length 82 [|LLDP] 19:07:17.611566 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:17.611567 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0118 acda 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:17.611568 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:17.611570 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:17.611571 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:17.611572 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:17.611573 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:17.611574 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.611575 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.622543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:17.622544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.622551 LLDP, length 82 [|LLDP] 19:07:17.622562 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:17.622563 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0121 1340 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:17.622564 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:17.622565 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:17.622566 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.622570 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:17.633552 LLDP, length 82 [|LLDP] 19:07:17.633560 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:17.633561 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0129 79a7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:17.633563 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:17.633564 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.633572 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.633573 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:17.633576 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:17.633577 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:17.641808 LLDP, length 82 [|LLDP] 19:07:17.641819 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:17.641820 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 012f c673 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:17.641822 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:17.641823 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:17.641824 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:17.641825 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.641834 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.641836 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:17.652832 LLDP, length 82 [|LLDP] 19:07:17.652845 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:17.652846 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0138 2cd9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:17.652848 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:17.652849 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:17.652850 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:17.652851 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.652862 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.652863 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:17.652866 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:17.652867 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.652868 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.652869 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:17.652870 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:17.652871 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:17.661080 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:17.661081 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.661095 LLDP, length 82 [|LLDP] 19:07:17.661105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:17.661106 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 013e 79a6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:17.661108 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:17.661109 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:17.661110 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:17.661111 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:17.661112 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.661120 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:17.661122 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.661123 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.661124 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:17.661125 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:17.672109 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:17.672111 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.672124 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.672125 LLDP, length 82 [|LLDP] 19:07:17.672136 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:17.672137 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0146 e00c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:17.672139 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:17.672140 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:17.672142 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:17.672143 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:17.672144 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:17.672145 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.672146 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.672147 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:17.672148 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:17.683107 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:17.683109 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.683123 LLDP, length 82 [|LLDP] 19:07:17.683133 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:17.683134 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 014f 4672 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:17.683135 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:17.683136 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:17.683137 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:17.683138 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:17.683140 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.683146 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:17.683148 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.683150 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.683150 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:17.683151 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:17.691357 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:17.691358 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.691374 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.691375 LLDP, length 82 [|LLDP] 19:07:17.691386 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:17.691387 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0155 933f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:17.691389 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:17.691390 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:17.691391 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:17.691393 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:17.691394 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:17.691395 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.691396 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.691397 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:17.691398 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:17.702368 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:17.702370 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.702385 LLDP, length 82 [|LLDP] 19:07:17.702396 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:17.702396 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 015d f9a6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:17.702398 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:17.702399 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:17.702400 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:17.702401 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:17.702403 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.702410 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:17.702412 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.702413 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.702414 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:17.702415 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:17.713388 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:17.713390 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.713397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.713399 LLDP, length 82 [|LLDP] 19:07:17.713410 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:17.713411 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0166 600c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:17.713413 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:17.713414 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:17.713416 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:17.713417 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:17.713418 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:17.713419 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.713420 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.721630 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:17.721632 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.721640 LLDP, length 82 [|LLDP] 19:07:17.721650 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:17.721651 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 016c acd8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:17.721652 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:17.721653 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:17.721654 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.721659 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:17.732641 LLDP, length 82 [|LLDP] 19:07:17.732650 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:17.732650 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0175 133f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:17.732652 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:17.732653 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.732661 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.732663 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:17.732665 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:17.732667 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:17.740900 LLDP, length 82 [|LLDP] 19:07:17.740908 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:17.740909 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 017b 600c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:17.740912 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:17.740913 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:17.740914 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:17.740915 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.740924 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.740925 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:17.751918 LLDP, length 82 [|LLDP] 19:07:17.751932 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:17.751933 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0183 c67a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:17.751935 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:17.751936 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:17.751937 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:17.751939 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.751949 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.751950 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:17.751953 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:17.751954 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.751956 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.751957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:17.751958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:17.751960 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:17.762924 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:17.762926 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.762940 LLDP, length 82 [|LLDP] 19:07:17.762952 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:17.762953 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 018c 2cd9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:17.762955 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:17.762956 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:17.762958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:17.762959 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:17.762960 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.762968 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:17.762970 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.762971 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.762972 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:17.762973 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:17.771181 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:17.771183 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.771196 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.771198 LLDP, length 82 [|LLDP] 19:07:17.771208 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:17.771209 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0192 79a6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:17.771211 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:17.771212 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:17.771214 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:17.771215 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:17.771216 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:17.771217 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.771218 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.771219 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:17.771220 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:17.782191 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:17.782193 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.782208 LLDP, length 82 [|LLDP] 19:07:17.782218 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:17.782219 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 019a e00d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:17.782220 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:17.782222 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:17.782223 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:17.782224 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:17.782225 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.782233 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:17.782235 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.782236 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.782237 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:17.782238 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:17.793200 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:17.793202 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.793216 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.793217 LLDP, length 82 [|LLDP] 19:07:17.793228 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:17.793229 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01a3 4673 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:17.793230 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:17.793231 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:17.793233 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:17.793234 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:17.793235 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:17.793237 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.793238 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.793239 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:17.793239 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:17.801456 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:17.801459 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.801472 LLDP, length 82 [|LLDP] 19:07:17.801482 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:17.801483 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01a9 9340 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:17.801485 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:17.801486 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:17.801488 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:17.801489 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:17.801490 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.801498 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:17.801500 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.801501 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.801502 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:17.801503 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:17.812478 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:17.812480 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.812488 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.812489 LLDP, length 82 [|LLDP] 19:07:17.812501 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:17.812502 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01b1 f9a6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:17.812504 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:17.812505 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:17.812506 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:17.812507 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:17.812508 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:17.812509 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.812510 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.823482 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:17.823484 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.823493 LLDP, length 82 [|LLDP] 19:07:17.823506 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:17.823507 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01ba 600d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:17.823508 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:17.823510 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:17.823511 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.823515 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:17.831736 LLDP, length 82 [|LLDP] 19:07:17.831748 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:17.831749 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01c0 acda 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:17.831751 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:17.831753 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.831762 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.831763 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:17.831765 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:17.831767 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:17.842740 LLDP, length 82 [|LLDP] 19:07:17.842750 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:17.842751 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01c9 1340 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:17.842754 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:17.842755 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:17.842756 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:17.842757 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.842767 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.842768 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:17.851006 LLDP, length 82 [|LLDP] 19:07:17.851020 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:17.851020 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01cf 600d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:17.851023 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:17.851024 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:17.851025 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:17.851026 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.851037 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.851038 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:17.851040 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:17.851041 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.851043 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.851044 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:17.851045 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:17.851046 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:17.862017 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:17.862020 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.862035 LLDP, length 82 [|LLDP] 19:07:17.862045 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:17.862046 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01d7 c673 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:17.862048 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:17.862049 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:17.862051 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:17.862052 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:17.862053 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.862061 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:17.862063 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.862064 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.862065 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:17.862066 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:17.873033 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:17.873035 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.873051 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.873052 LLDP, length 82 [|LLDP] 19:07:17.873064 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:17.873066 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01e0 2cd9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:17.873067 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:17.873069 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:17.873070 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:17.873072 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:17.873073 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:17.873074 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.873074 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.873075 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:17.873077 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:17.881283 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:17.881285 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.881301 LLDP, length 82 [|LLDP] 19:07:17.881311 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:17.881312 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01e6 79a6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:17.881313 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:17.881315 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:17.881316 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:17.881317 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:17.881318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.881325 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:17.881328 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.881329 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.881330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:17.881331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:17.892300 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:17.892308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.892319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.892320 LLDP, length 82 [|LLDP] 19:07:17.892333 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:17.892334 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01ee e00c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:17.892335 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:17.892336 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:17.892338 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:17.892339 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:17.892340 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:17.892341 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.892342 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.892343 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:17.892344 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:17.903319 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:17.903321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.903334 LLDP, length 82 [|LLDP] 19:07:17.903346 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:17.903347 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01f7 4673 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:17.903349 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:17.903350 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:17.903351 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:17.903352 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:17.903353 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.903361 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:17.903363 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.903364 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.903365 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:17.903366 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:17.911576 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:17.911578 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.911587 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.911588 LLDP, length 82 [|LLDP] 19:07:17.911600 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:17.911601 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01fd 933f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:17.911603 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:17.911604 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:17.911606 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:17.911607 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:17.911608 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:17.911610 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.911610 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.922568 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:17.922570 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.922579 LLDP, length 82 [|LLDP] 19:07:17.922590 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:17.922591 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0205 f9a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:17.922593 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:17.922594 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:17.922599 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.922603 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:17.933583 LLDP, length 82 [|LLDP] 19:07:17.933594 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:17.933595 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 020e 600c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:17.933597 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:17.933598 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.933607 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.933608 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:17.933611 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:17.933612 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:17.941833 LLDP, length 82 [|LLDP] 19:07:17.941843 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:17.941844 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0214 acd9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:17.941846 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:17.941847 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:17.941848 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:17.941849 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.941861 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.941863 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:17.952859 LLDP, length 82 [|LLDP] 19:07:17.952876 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:17.952877 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 021d 133f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:17.952880 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:17.952881 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:17.952882 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:17.952883 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.952898 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.952899 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:17.952902 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:17.952903 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.952904 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.952905 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:17.952907 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:17.952908 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:17.961110 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:17.961113 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.961128 LLDP, length 82 [|LLDP] 19:07:17.961139 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:17.961140 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0223 600b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:17.961142 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:17.961143 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:17.961144 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:17.961146 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:17.961147 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.961158 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:17.961161 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.961162 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.961163 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:17.961164 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:17.972119 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:17.972121 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.972136 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.972137 LLDP, length 82 [|LLDP] 19:07:17.972149 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:17.972150 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 022b c672 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:17.972152 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:17.972153 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:17.972154 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:17.972156 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:17.972156 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:17.972157 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.972158 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.972159 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:17.972160 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:17.983126 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:17.983128 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.983144 LLDP, length 82 [|LLDP] 19:07:17.983154 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:17.983155 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0234 2cd9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:17.983157 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:17.983162 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:17.983163 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:17.983164 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:17.983166 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.983173 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:17.983175 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.983176 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.983177 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:17.983178 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:17.991385 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:17.991387 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.991404 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.991405 LLDP, length 82 [|LLDP] 19:07:17.991415 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:17.991416 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 023a 79a6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:17.991418 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:17.991419 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:17.991420 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:17.991422 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:17.991423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:17.991424 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.991425 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.991426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:17.991427 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:18.002401 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.002410 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.002419 LLDP, length 82 [|LLDP] 19:07:18.002432 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.002433 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0242 e013 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.002435 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.002436 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.002437 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.002438 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.002439 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.002447 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.002449 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.002450 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.002451 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:18.002453 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:18.013412 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.013414 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.013422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.013423 LLDP, length 82 [|LLDP] 19:07:18.013434 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.013435 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 024b 4672 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.013436 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.013437 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.013439 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.013440 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.013441 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.013442 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.013443 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.021663 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.021664 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.021673 LLDP, length 82 [|LLDP] 19:07:18.021685 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.021686 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0251 933f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.021687 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.021688 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.021689 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.021694 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.032669 LLDP, length 82 [|LLDP] 19:07:18.032680 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.032681 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0259 f9a6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.032683 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.032684 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.032694 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.032695 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.032698 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.032699 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.040920 LLDP, length 82 [|LLDP] 19:07:18.040930 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.040930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0260 4677 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.040933 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.040934 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.040935 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.040936 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.040945 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.040947 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.051938 LLDP, length 82 [|LLDP] 19:07:18.051951 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.051952 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0268 acd9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.051955 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.051956 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.051957 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.051958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.051971 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.051972 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.051975 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.051976 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.051977 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.051979 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.051981 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:18.051982 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:18.062947 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.062949 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.062963 LLDP, length 82 [|LLDP] 19:07:18.062973 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.062974 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0271 1340 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.062975 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.062977 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.062978 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.062979 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.062980 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.062987 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.062989 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.062990 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.062991 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:18.062992 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:18.071200 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.071202 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.071216 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.071217 LLDP, length 82 [|LLDP] 19:07:18.071227 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.071229 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0277 600d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.071230 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.071231 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.071233 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.071234 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.071235 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.071236 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.071237 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.071239 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:18.071240 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:18.082212 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.082214 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.082228 LLDP, length 82 [|LLDP] 19:07:18.082238 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.082239 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 027f c673 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.082241 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.082242 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.082243 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.082244 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.082245 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.082252 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.082255 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.082255 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.082256 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:18.082257 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:18.093220 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.093222 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.093235 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.093236 LLDP, length 82 [|LLDP] 19:07:18.093246 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.093247 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0288 2cd9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.093249 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.093250 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.093251 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.093253 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.093254 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.093255 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.093256 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.093257 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:18.093258 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:18.101516 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.101518 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.101538 LLDP, length 82 [|LLDP] 19:07:18.101552 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.101553 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 028e 79a6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.101556 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.101557 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.101559 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.101560 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.101561 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.101569 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.101572 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.101573 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.101574 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:18.101575 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:18.112603 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.112608 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.112653 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.112655 LLDP, length 82 [|LLDP] 19:07:18.112684 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.112685 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0296 e00c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.112687 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.112689 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.112692 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.112694 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.112695 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.112696 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.112698 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.123538 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.123540 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.123557 LLDP, length 82 [|LLDP] 19:07:18.123572 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.123573 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 029f 4672 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.123575 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.123576 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.123577 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.123583 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.131762 LLDP, length 82 [|LLDP] 19:07:18.131773 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.131774 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02a5 933f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.131776 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.131777 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.131787 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.131788 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.131791 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.131792 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.142768 LLDP, length 82 [|LLDP] 19:07:18.142780 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.142781 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02ad f9a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.142783 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.142785 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.142786 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.142787 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.142798 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.142800 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.151047 LLDP, length 82 [|LLDP] 19:07:18.151062 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.151063 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02b4 4672 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.151065 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.151066 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.151067 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.151069 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.151080 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.151082 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.151084 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.151085 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.151086 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.151088 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.151089 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:18.151090 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:18.162041 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.162043 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.162057 LLDP, length 82 [|LLDP] 19:07:18.162067 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.162068 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02bc acd8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.162069 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.162070 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.162072 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.162073 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.162074 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.162081 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.162084 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.162085 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.162085 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:18.162086 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:18.173043 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.173045 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.173052 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.173053 LLDP, length 82 [|LLDP] 19:07:18.173064 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.173065 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02c5 133f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.173067 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.173068 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.173070 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.173071 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.173072 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.173074 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.173074 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.173075 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:18.173076 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:18.181299 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.181301 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.181315 LLDP, length 82 [|LLDP] 19:07:18.181324 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.181325 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02cb 600c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.181327 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.181328 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.181330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.181331 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.181332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.181339 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.181340 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.181342 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.181343 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:18.181344 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:18.192308 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.192310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.192323 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.192324 LLDP, length 82 [|LLDP] 19:07:18.192334 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.192334 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02d3 c672 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.192336 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.192337 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.192338 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.192340 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.192341 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.192342 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.192343 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.192344 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:18.192345 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:18.203319 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.203321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.203335 LLDP, length 82 [|LLDP] 19:07:18.203344 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.203345 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02dc 2cd8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.203347 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.203348 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.203349 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.203350 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.203352 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.203359 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.203361 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.203362 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.203363 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:18.203364 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:18.211584 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.211586 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.211594 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.211595 LLDP, length 82 [|LLDP] 19:07:18.211605 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.211606 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02e2 79a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.211607 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.211608 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.211610 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.211611 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.211612 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.211613 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.211614 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.222586 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.222588 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.222597 LLDP, length 82 [|LLDP] 19:07:18.222608 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.222609 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02ea e00c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.222610 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.222611 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.222612 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.222616 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.230843 LLDP, length 82 [|LLDP] 19:07:18.230852 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.230853 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02f1 2cd8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.230856 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.230857 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.230864 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.230865 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.230867 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.230869 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.241849 LLDP, length 82 [|LLDP] 19:07:18.241858 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.241859 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02f9 933f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.241861 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.241862 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.241863 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.241864 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.241873 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.241874 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.252877 LLDP, length 82 [|LLDP] 19:07:18.252893 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.252895 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0301 f9ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.252897 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.252899 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.252900 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.252901 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.252913 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.252915 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.252917 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.252919 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.252920 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.252921 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.252924 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:18.252925 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:18.261121 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.261123 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.261136 LLDP, length 82 [|LLDP] 19:07:18.261145 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.261146 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0308 4672 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.261148 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.261149 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.261150 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.261152 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.261153 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.261160 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.261162 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.261163 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.261163 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:18.261164 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:18.272132 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.272133 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.272147 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.272148 LLDP, length 82 [|LLDP] 19:07:18.272157 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.272158 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0310 acd9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.272160 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.272161 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.272163 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.272164 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.272165 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.272166 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.272167 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.272168 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:18.272170 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:18.283144 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.283146 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.283159 LLDP, length 82 [|LLDP] 19:07:18.283168 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.283169 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0319 133f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.283170 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.283172 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.283173 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.283174 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.283175 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.283181 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.283184 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.283184 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.283185 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:18.283187 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:18.291397 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.291399 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.291413 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.291414 LLDP, length 82 [|LLDP] 19:07:18.291423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.291424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 031f 600f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.291425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.291427 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.291428 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.291430 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.291431 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.291432 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.291433 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.291434 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:18.291435 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:18.302410 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.302412 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.302426 LLDP, length 82 [|LLDP] 19:07:18.302435 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.302435 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0327 c673 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.302437 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.302439 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.302440 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.302441 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.302442 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.302449 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.302451 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.302452 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.302453 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:18.302454 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:18.313427 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.313429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.313436 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.313437 LLDP, length 82 [|LLDP] 19:07:18.313447 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.313448 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0330 2cd9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.313449 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.313450 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.313452 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.313453 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.313454 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.313455 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.313456 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.321671 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.321672 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.321679 LLDP, length 82 [|LLDP] 19:07:18.321689 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.321690 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0336 79a6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.321691 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.321692 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.321694 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.321697 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.332682 LLDP, length 82 [|LLDP] 19:07:18.332690 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.332691 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 033e e00d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.332693 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.332694 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.332701 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.332703 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.332705 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.332707 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.340941 LLDP, length 82 [|LLDP] 19:07:18.340950 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.340951 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0345 2cda 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.340953 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.340954 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.340955 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.340956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.340964 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.340965 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.351954 LLDP, length 82 [|LLDP] 19:07:18.351967 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.351968 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 034d 9340 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.351970 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.351971 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.351972 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.351973 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.351982 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.351983 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.351986 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.351987 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.351988 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.351990 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.351992 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:18.351993 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:18.362965 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.362966 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.362979 LLDP, length 82 [|LLDP] 19:07:18.362987 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.362988 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0355 f9a7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.362989 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.362991 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.362992 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.362993 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.362994 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.363001 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.363003 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.363004 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.363005 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:18.363006 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:18.371234 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.371236 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.371254 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.371256 LLDP, length 82 [|LLDP] 19:07:18.371267 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.371268 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 035c 467a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.371270 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.371271 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.371273 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.371274 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.371275 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.371276 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.371277 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.371278 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:18.371280 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:18.382239 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.382241 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.382255 LLDP, length 82 [|LLDP] 19:07:18.382266 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.382267 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0364 acd9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.382269 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.382270 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.382271 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.382273 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.382274 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.382281 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.382283 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.382284 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.382285 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:18.382286 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:18.393244 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.393246 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.393260 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.393261 LLDP, length 82 [|LLDP] 19:07:18.393272 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.393273 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 036d 133f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.393274 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.393276 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.393277 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.393278 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.393279 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.393281 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.393282 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.393283 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:18.393284 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:18.401538 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.401546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.401558 LLDP, length 82 [|LLDP] 19:07:18.401574 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.401575 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0373 600c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.401577 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.401578 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.401579 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.401580 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.401581 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.401590 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.401592 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.401594 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.401595 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:18.401596 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:18.412538 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.412539 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.412549 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.412550 LLDP, length 82 [|LLDP] 19:07:18.412564 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.412565 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 037b c672 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.412566 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.412568 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.412569 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.412571 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.412572 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.412573 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.412574 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.423523 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.423525 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.423534 LLDP, length 82 [|LLDP] 19:07:18.423544 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.423545 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0384 2cd9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.423547 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.423548 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.423549 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.423553 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.431783 LLDP, length 82 [|LLDP] 19:07:18.431796 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.431797 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 038a 79a6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.431799 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.431800 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.431813 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.431814 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.431817 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.431818 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.442788 LLDP, length 82 [|LLDP] 19:07:18.442798 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.442799 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0392 e00b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.442801 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.442802 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.442803 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.442804 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.442814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.442815 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.451058 LLDP, length 82 [|LLDP] 19:07:18.451073 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.451074 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0399 2cd8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.451076 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.451078 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.451079 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.451080 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.451091 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.451093 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.451095 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.451097 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.451098 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.451100 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.451102 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:18.451103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:18.462058 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.462060 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.462074 LLDP, length 82 [|LLDP] 19:07:18.462086 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.462087 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03a1 933f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.462088 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.462090 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.462091 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.462092 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.462093 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.462100 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.462102 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.462103 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.462104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:18.462105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:18.473071 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.473074 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.473089 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.473090 LLDP, length 82 [|LLDP] 19:07:18.473101 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.473102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03a9 f9a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.473103 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.473105 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.473106 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.473107 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.473109 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.473109 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.473110 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.473111 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:18.473112 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:18.481324 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.481326 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.481340 LLDP, length 82 [|LLDP] 19:07:18.481350 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.481351 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03b0 4672 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.481352 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.481353 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.481354 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.481356 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.481357 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.481364 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.481366 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.481367 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.481368 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:18.481369 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:18.492335 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.492337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.492351 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.492352 LLDP, length 82 [|LLDP] 19:07:18.492363 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.492364 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03b8 acd9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.492365 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.492367 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.492368 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.492369 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.492371 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.492372 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.492373 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.492374 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:18.492375 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:18.503342 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.503344 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.503359 LLDP, length 82 [|LLDP] 19:07:18.503368 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.503369 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03c1 1346 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.503371 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.503372 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.503373 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.503375 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.503376 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.503383 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.503385 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.503386 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.503388 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:18.503389 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:18.511615 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.511617 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.511625 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.511626 LLDP, length 82 [|LLDP] 19:07:18.511636 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.511637 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03c7 600c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.511638 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.511639 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.511641 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.511642 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.511643 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.511644 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.511645 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.522623 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.522625 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.522636 LLDP, length 82 [|LLDP] 19:07:18.522648 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.522649 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03cf c672 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.522651 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.522652 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.522653 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.522657 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.530872 LLDP, length 82 [|LLDP] 19:07:18.530883 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.530884 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03d6 1340 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.530886 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.530887 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.530897 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.530899 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.530901 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.530903 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.541876 LLDP, length 82 [|LLDP] 19:07:18.541885 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.541886 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03de 79a8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.541889 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.541890 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.541891 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.541893 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.541903 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.541905 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.552894 LLDP, length 82 [|LLDP] 19:07:18.552908 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.552909 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03e6 e00c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.552912 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.552913 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.552914 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.552915 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.552927 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.552928 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.552931 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.552932 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.552933 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.552935 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.552936 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:18.552937 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:18.561148 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.561150 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.561165 LLDP, length 82 [|LLDP] 19:07:18.561175 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.561176 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03ed 2cd9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.561178 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.561179 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.561180 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.561181 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.561182 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.561190 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.561192 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.561194 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.561195 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:18.561195 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:18.572164 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.572166 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.572181 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.572182 LLDP, length 82 [|LLDP] 19:07:18.572193 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.572194 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03f5 9340 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.572196 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.572197 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.572198 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.572200 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.572201 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.572202 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.572203 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.572204 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:18.572205 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:18.583176 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.583178 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.583189 LLDP, length 82 [|LLDP] 19:07:18.583198 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.583199 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03fd f9a6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.583201 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.583202 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.583207 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.583208 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.583209 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.583217 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.583219 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.583220 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.583221 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:18.583222 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:18.591431 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.591433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.591448 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.591450 LLDP, length 82 [|LLDP] 19:07:18.591461 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.591462 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0404 4673 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.591464 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.591465 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.591467 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.591468 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.591469 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.591470 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.591471 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.591472 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:18.591473 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:18.602437 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.602439 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.602454 LLDP, length 82 [|LLDP] 19:07:18.602464 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.602465 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 040c acda 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.602467 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.602468 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.602469 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.602470 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.602472 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.602479 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.602481 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.602482 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.602483 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:18.602484 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:18.613449 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.613451 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.613460 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.613461 LLDP, length 82 [|LLDP] 19:07:18.613471 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.613472 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0415 1340 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.613474 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.613475 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.613477 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.613478 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.613479 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.613480 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.613481 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.621699 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.621701 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.621709 LLDP, length 82 [|LLDP] 19:07:18.621718 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.621719 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 041b 6015 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.621721 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.621722 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.621723 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.621727 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.632705 LLDP, length 82 [|LLDP] 19:07:18.632716 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.632717 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0423 c674 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.632719 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.632720 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.632728 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.632729 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.632731 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.632733 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.640963 LLDP, length 82 [|LLDP] 19:07:18.640973 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.640973 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 042a 1340 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.640976 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.640977 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.640978 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.640979 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.640988 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.640990 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.651984 LLDP, length 82 [|LLDP] 19:07:18.651997 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.651998 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0432 79a6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.652001 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.652002 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.652003 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.652004 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.652016 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.652017 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.652020 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.652021 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.652022 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.652024 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.652026 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:18.652027 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:18.662989 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.662992 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.663008 LLDP, length 82 [|LLDP] 19:07:18.663019 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.663020 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 043a e00d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.663021 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.663023 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.663024 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.663025 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.663027 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.663033 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.663036 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.663037 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.663038 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:18.663039 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:18.671243 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.671245 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.671258 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.671259 LLDP, length 82 [|LLDP] 19:07:18.671271 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.671272 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0441 2cd9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.671273 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.671274 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.671276 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.671277 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.671278 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.671279 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.671280 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.671281 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:18.671283 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:18.682254 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.682256 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.682270 LLDP, length 82 [|LLDP] 19:07:18.682280 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.682281 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0449 933f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.682282 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.682283 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.682285 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.682286 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.682287 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.682294 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.682296 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.682297 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.682298 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:18.682299 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:18.693272 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.693274 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.693290 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.693291 LLDP, length 82 [|LLDP] 19:07:18.693303 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.693304 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0451 f9a6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.693305 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.693306 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.693308 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.693309 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.693310 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.693311 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.693312 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.693313 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:18.693314 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:18.701527 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.701529 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.701543 LLDP, length 82 [|LLDP] 19:07:18.701554 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.701555 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0458 4672 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.701557 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.701558 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.701559 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.701560 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.701562 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.701569 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.701571 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.701572 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.701573 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:18.701573 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:18.712550 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.712551 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.712560 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.712561 LLDP, length 82 [|LLDP] 19:07:18.712571 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.712572 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0460 acd8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.712574 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.712575 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.712576 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.712577 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.712578 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.712579 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.712580 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.723539 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.723541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.723549 LLDP, length 82 [|LLDP] 19:07:18.723558 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.723559 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0469 133e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.723561 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.723562 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.723563 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.723567 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.731791 LLDP, length 82 [|LLDP] 19:07:18.731802 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.731803 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 046f 600c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.731805 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.731807 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.731815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.731816 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.731819 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.731821 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.742807 LLDP, length 82 [|LLDP] 19:07:18.742817 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.742818 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0477 c672 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.742821 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.742822 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.742823 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.742825 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.742835 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.742836 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.751068 LLDP, length 82 [|LLDP] 19:07:18.751083 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.751084 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 047e 133e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.751086 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.751087 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.751088 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.751090 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.751100 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.751101 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.751104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.751105 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.751106 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.751108 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.751110 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:18.751111 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:18.762076 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.762078 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.762092 LLDP, length 82 [|LLDP] 19:07:18.762103 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.762104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0486 79a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.762105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.762107 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.762108 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.762109 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.762110 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.762118 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.762120 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.762121 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.762122 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:18.762123 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:18.773088 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.773089 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.773103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.773104 LLDP, length 82 [|LLDP] 19:07:18.773115 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.773116 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 048e e00c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.773117 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.773119 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.773120 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.773122 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.773123 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.773124 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.773125 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.773126 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:18.773127 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:18.781346 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.781348 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.781355 LLDP, length 82 [|LLDP] 19:07:18.781365 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.781366 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0495 2cd9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.781367 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.781369 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.781370 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.781371 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.781372 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.781379 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.781381 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.781382 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.781383 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:18.781384 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:18.792357 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.792359 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.792373 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.792374 LLDP, length 82 [|LLDP] 19:07:18.792385 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.792386 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 049d 933f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.792387 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.792388 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.792390 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.792391 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.792392 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.792394 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.792395 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.792396 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:18.792398 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:18.803364 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.803366 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.803380 LLDP, length 82 [|LLDP] 19:07:18.803389 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.803390 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04a5 f9a6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.803392 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.803393 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.803394 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.803395 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.803396 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.803404 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.803405 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.803406 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.803407 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:18.803408 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:18.811629 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.811631 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.811638 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.811640 LLDP, length 82 [|LLDP] 19:07:18.811658 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.811659 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04ac 4672 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.811660 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.811661 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.811663 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.811664 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.811665 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.811666 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.811667 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.822638 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.822640 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.822650 LLDP, length 82 [|LLDP] 19:07:18.822662 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.822663 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04b4 acd9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.822665 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.822666 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.822667 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.822672 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.830889 LLDP, length 82 [|LLDP] 19:07:18.830900 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.830901 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04ba f9a6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.830904 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.830905 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.830914 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.830915 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.830917 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.830919 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.841897 LLDP, length 82 [|LLDP] 19:07:18.841907 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.841908 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04c3 600c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.841910 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.841911 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.841912 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.841913 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.841922 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.841924 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.852913 LLDP, length 82 [|LLDP] 19:07:18.852927 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.852928 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04cb c673 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.852931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.852932 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.852934 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.852935 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.852945 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.852946 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.852948 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.852949 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.852950 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.852952 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.852953 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:18.852954 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:18.861166 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.861168 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.861181 LLDP, length 82 [|LLDP] 19:07:18.861190 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.861191 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04d2 1340 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.861193 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.861194 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.861195 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.861196 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.861198 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.861204 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.861207 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.861208 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.861209 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:18.861210 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:18.872185 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.872187 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.872202 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.872203 LLDP, length 82 [|LLDP] 19:07:18.872216 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.872217 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04da 79ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.872219 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.872220 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.872221 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.872222 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.872223 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.872224 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.872225 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.872227 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:18.872228 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:18.883191 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.883193 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.883207 LLDP, length 82 [|LLDP] 19:07:18.883218 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.883219 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04e2 e00d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.883221 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.883222 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.883223 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.883224 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.883226 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.883234 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.883235 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.883237 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.883237 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:18.883238 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:18.891447 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.891449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.891463 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.891464 LLDP, length 82 [|LLDP] 19:07:18.891475 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.891476 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04e9 2cda 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.891478 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.891479 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.891480 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.891482 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.891482 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.891483 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.891485 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.891485 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:18.891486 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:18.902458 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.902460 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.902475 LLDP, length 82 [|LLDP] 19:07:18.902487 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.902488 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04f1 9340 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.902490 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.902491 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.902493 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.902494 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.902495 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.902503 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.902504 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.902505 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.902506 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:18.902507 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:18.913476 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.913478 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.913486 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.913487 LLDP, length 82 [|LLDP] 19:07:18.913498 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.913499 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04f9 f9a6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.913501 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.913502 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.913504 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.913505 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.913506 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.913508 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.913509 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.921718 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.921719 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.921727 LLDP, length 82 [|LLDP] 19:07:18.921737 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.921738 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0500 4673 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.921739 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.921740 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.921741 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.921746 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.932728 LLDP, length 82 [|LLDP] 19:07:18.932737 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.932738 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0508 acda 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.932741 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.932742 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.932750 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.932751 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.932754 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.932755 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.940988 LLDP, length 82 [|LLDP] 19:07:18.940998 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.940999 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 050e f9a6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.941001 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.941002 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.941003 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.941005 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.941016 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.941018 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.952003 LLDP, length 82 [|LLDP] 19:07:18.952017 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.952018 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0517 600c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.952020 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.952021 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.952022 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.952024 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.952034 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.952036 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.952038 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.952040 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.952041 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.952042 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.952044 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:18.952045 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:18.963009 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.963010 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.963024 LLDP, length 82 [|LLDP] 19:07:18.963034 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.963035 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 051f c672 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.963036 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.963038 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.963039 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.963040 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.963041 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.963048 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.963050 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.963051 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.963052 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:18.963053 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:18.971267 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.971269 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.971284 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.971285 LLDP, length 82 [|LLDP] 19:07:18.971296 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.971297 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0526 133f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.971299 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.971300 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.971302 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.971304 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.971304 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.971305 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.971306 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.971307 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:18.971308 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:18.982277 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.982279 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.982294 LLDP, length 82 [|LLDP] 19:07:18.982304 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.982305 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 052e 79a6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.982306 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.982308 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.982309 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.982310 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.982311 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.982318 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.982320 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.982321 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.982322 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:18.982323 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:18.993284 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.993285 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.993300 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.993301 LLDP, length 82 [|LLDP] 19:07:18.993311 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.993312 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0536 e00c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.993314 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.993315 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.993317 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.993318 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.993319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.993320 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.993322 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.993323 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:18.993324 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:19.001543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.001544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.001558 LLDP, length 82 [|LLDP] 19:07:19.001568 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.001569 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 053d 2cd8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.001571 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.001572 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.001573 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.001574 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.001576 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.001583 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.001585 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.001586 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.001587 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:19.001588 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:19.012562 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.012564 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.012572 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.012573 LLDP, length 82 [|LLDP] 19:07:19.012584 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.012585 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0545 933f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.012586 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.012588 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.012589 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.012591 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.012592 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.012593 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.012593 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.020806 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.020807 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.020815 LLDP, length 82 [|LLDP] 19:07:19.020825 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.020826 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 054b e00c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.020827 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.020829 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.020830 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.020834 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.031816 LLDP, length 82 [|LLDP] 19:07:19.031827 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.031827 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0554 4672 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.031830 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.031831 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.031840 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.031841 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.031843 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.031845 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.042829 LLDP, length 82 [|LLDP] 19:07:19.042837 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.042838 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 055c acd9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.042840 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.042841 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.042842 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.042843 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.042852 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.042853 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.051091 LLDP, length 82 [|LLDP] 19:07:19.051108 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.051109 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0562 f9a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.051112 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.051113 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.051114 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.051115 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.051126 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.051128 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.051130 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.051131 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.051132 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.051134 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.051135 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:19.051136 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:19.062098 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.062100 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.062112 LLDP, length 82 [|LLDP] 19:07:19.062123 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.062124 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 056b 600c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.062125 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.062127 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.062128 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.062129 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.062130 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.062138 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.062140 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.062141 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.062142 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:19.062143 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:19.073109 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.073110 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.073125 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.073126 LLDP, length 82 [|LLDP] 19:07:19.073137 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.073138 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0573 c672 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.073140 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.073141 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.073142 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.073144 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.073145 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.073146 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.073147 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.073149 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:19.073150 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:19.081365 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.081367 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.081381 LLDP, length 82 [|LLDP] 19:07:19.081391 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.081392 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 057a 133f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.081394 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.081395 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.081396 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.081397 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.081399 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.081406 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.081408 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.081409 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.081410 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:19.081411 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:19.092379 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.092381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.092395 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.092396 LLDP, length 82 [|LLDP] 19:07:19.092407 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.092409 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0582 79a6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.092410 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.092411 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.092413 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.092414 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.092415 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.092416 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.092417 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.092418 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:19.092419 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:19.103385 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.103386 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.103401 LLDP, length 82 [|LLDP] 19:07:19.103410 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.103411 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 058a e00c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.103413 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.103414 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.103415 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.103416 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.103417 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.103424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.103427 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.103428 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.103428 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:19.103429 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:19.111660 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.111662 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.111670 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.111671 LLDP, length 82 [|LLDP] 19:07:19.111681 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.111682 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0591 2cd9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.111684 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.111685 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.111686 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.111688 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.111689 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.111690 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.111691 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.122645 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.122647 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.122655 LLDP, length 82 [|LLDP] 19:07:19.122664 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.122665 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0599 9347 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.122667 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.122668 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.122669 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.122673 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.130905 LLDP, length 82 [|LLDP] 19:07:19.130915 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.130916 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 059f e00d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.130919 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.130920 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.130927 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.130928 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.130930 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.130932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.141922 LLDP, length 82 [|LLDP] 19:07:19.141932 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.141933 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05a8 4673 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.141935 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.141936 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.141938 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.141939 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.141948 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.141950 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.152934 LLDP, length 82 [|LLDP] 19:07:19.152948 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.152949 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05b0 acd9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.152951 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.152952 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.152953 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.152954 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.152965 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.152966 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.152968 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.152970 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.152971 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.152973 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.152974 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:19.152976 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:19.161187 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.161189 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.161202 LLDP, length 82 [|LLDP] 19:07:19.161213 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.161214 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05b6 f9ab 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.161215 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.161216 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.161217 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.161218 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.161219 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.161227 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.161228 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.161229 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.161230 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:19.161231 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:19.172198 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.172199 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.172213 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.172214 LLDP, length 82 [|LLDP] 19:07:19.172225 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.172226 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05bf 600d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.172228 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.172229 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.172231 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.172232 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.172233 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.172234 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.172235 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.172236 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:19.172237 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:19.183209 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.183210 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.183224 LLDP, length 82 [|LLDP] 19:07:19.183235 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.183236 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05c7 c673 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.183237 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.183238 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.183240 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.183241 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.183242 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.183249 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.183251 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.183252 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.183253 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:19.183254 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:19.191466 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.191467 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.191482 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.191483 LLDP, length 82 [|LLDP] 19:07:19.191493 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.191494 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05ce 133f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.191496 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.191497 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.191498 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.191500 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.191501 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.191502 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.191503 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.191504 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:19.191505 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:19.202476 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.202478 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.202493 LLDP, length 82 [|LLDP] 19:07:19.202502 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.202503 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05d6 79c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.202504 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.202506 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.202507 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.202508 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.202509 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.202516 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.202518 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.202519 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.202520 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:19.202521 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:19.213495 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.213496 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.213504 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.213505 LLDP, length 82 [|LLDP] 19:07:19.213516 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.213516 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05de e034 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.213518 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.213519 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.213521 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.213522 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.213523 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.213524 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.213525 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.221739 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.221741 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.221749 LLDP, length 82 [|LLDP] 19:07:19.221759 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.221761 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05e5 2cfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.221762 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.221764 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.221765 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.221769 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.232749 LLDP, length 82 [|LLDP] 19:07:19.232759 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.232760 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05ed 9360 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.232762 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.232763 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.232771 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.232772 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.232775 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.232776 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.241005 LLDP, length 82 [|LLDP] 19:07:19.241015 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.241015 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05f3 e02d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.241018 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.241019 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.241020 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.241021 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.241030 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.241032 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.252024 LLDP, length 82 [|LLDP] 19:07:19.252039 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.252040 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05fc 4694 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.252044 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.252045 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.252046 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.252048 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.252058 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.252060 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.252062 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.252064 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.252065 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.252067 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.252069 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:19.252070 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:19.263031 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.263032 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.263046 LLDP, length 82 [|LLDP] 19:07:19.263055 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.263056 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0604 acf9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.263058 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.263059 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.263060 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.263061 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.263062 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.263070 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.263072 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.263073 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.263074 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:19.263074 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:19.271289 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.271291 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.271307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.271308 LLDP, length 82 [|LLDP] 19:07:19.271320 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.271321 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 060a f9c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.271322 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.271324 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.271325 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.271326 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.271327 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.271328 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.271330 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.271331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:19.271332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:19.282300 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.282302 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.282317 LLDP, length 82 [|LLDP] 19:07:19.282327 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.282328 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0613 602d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.282330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.282331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.282332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.282333 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.282335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.282342 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.282344 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.282345 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.282345 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:19.282346 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:19.293307 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.293308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.293322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.293323 LLDP, length 82 [|LLDP] 19:07:19.293333 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.293334 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 061b c693 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.293336 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.293337 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.293338 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.293339 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.293341 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.293341 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.293342 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.293343 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:19.293344 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:19.301565 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.301567 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.301581 LLDP, length 82 [|LLDP] 19:07:19.301592 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.301593 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0622 1361 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.301595 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.301596 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.301597 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.301598 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.301599 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.301606 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.301609 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.301609 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.301610 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:19.301611 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:19.312583 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.312585 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.312593 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.312594 LLDP, length 82 [|LLDP] 19:07:19.312604 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.312605 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 062a 79c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.312607 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.312608 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.312609 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.312610 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.312611 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.312613 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.312614 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.320828 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.320830 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.320838 LLDP, length 82 [|LLDP] 19:07:19.320849 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.320850 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0630 c694 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.320852 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.320853 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.320854 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.320857 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.331840 LLDP, length 82 [|LLDP] 19:07:19.331850 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.331850 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0639 2cfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.331853 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.331854 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.331862 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.331863 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.331866 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.331867 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.342854 LLDP, length 82 [|LLDP] 19:07:19.342867 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.342868 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0641 9361 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.342871 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.342872 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.342873 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.342874 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.342875 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.342877 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.342888 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.342890 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.342891 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.342896 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.342898 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:19.342899 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:19.351109 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.351111 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.351126 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.351127 LLDP, length 82 [|LLDP] 19:07:19.351137 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.351138 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0647 e02e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.351140 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.351141 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.351142 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.351144 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.351145 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.351146 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.351147 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.351148 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:19.351149 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:19.362122 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.362124 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.362138 LLDP, length 82 [|LLDP] 19:07:19.362148 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.362149 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0650 4694 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.362151 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.362152 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.362153 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.362154 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.362155 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.362163 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.362165 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.362166 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.362167 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:19.362168 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:19.373131 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.373132 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.373147 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.373148 LLDP, length 82 [|LLDP] 19:07:19.373159 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.373160 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0658 acfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.373161 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.373162 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.373164 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.373165 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.373166 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.373167 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.373168 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.373169 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:19.373184 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:19.381419 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.381422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.381434 LLDP, length 82 [|LLDP] 19:07:19.381449 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.381449 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 065e f9c8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.381451 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.381452 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.381453 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.381454 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.381456 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.381464 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.381467 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.381468 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.381469 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:19.381470 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:19.392401 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.392403 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.392416 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.392417 LLDP, length 82 [|LLDP] 19:07:19.392429 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.392430 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0667 602e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.392432 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.392433 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.392434 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.392436 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.392437 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.392437 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.392438 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.392440 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:19.392440 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:19.403417 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.403419 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.403426 LLDP, length 82 [|LLDP] 19:07:19.403436 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.403437 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 066f c695 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.403439 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.403440 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.403441 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.403442 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.403443 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.403450 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.403452 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.403453 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.414531 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.414532 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.414541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.414542 LLDP, length 82 [|LLDP] 19:07:19.414552 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.414553 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0676 1367 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.414554 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.414556 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.414557 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.422673 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.422674 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.422681 LLDP, length 82 [|LLDP] 19:07:19.422691 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.422692 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 067e 79c9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.422694 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.422695 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.422696 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.422700 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.430928 LLDP, length 82 [|LLDP] 19:07:19.430937 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.430938 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0684 c695 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.430941 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.430942 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.430949 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.430950 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.430953 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.430954 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.441926 LLDP, length 82 [|LLDP] 19:07:19.441936 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.441937 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 068d 2cfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.441939 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.441940 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.452957 LLDP, length 82 [|LLDP] 19:07:19.452966 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.452967 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0695 9362 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.452969 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.452970 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.452972 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.452973 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.452975 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.452986 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.452987 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.452990 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.452991 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.452992 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.452993 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:19.452995 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:19.461212 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.461214 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.461221 LLDP, length 82 [|LLDP] 19:07:19.461230 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.461232 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 069b e02e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.461233 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.461234 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.461235 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.461237 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.461238 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.461244 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.461246 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.461247 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.461248 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:19.461249 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:19.472217 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.472219 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.472232 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.472233 LLDP, length 82 [|LLDP] 19:07:19.472244 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.472245 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06a4 4694 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.472247 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.472248 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.472249 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.472251 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.472252 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.472253 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.472254 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.472255 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:19.472256 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:19.483230 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.483232 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.483248 LLDP, length 82 [|LLDP] 19:07:19.483257 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.483258 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06ac acfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.483260 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.483261 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.483262 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.483263 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.483264 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.483271 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.483273 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.483274 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.483275 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:19.483276 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:19.491489 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.491491 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.491505 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.491506 LLDP, length 82 [|LLDP] 19:07:19.491517 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.491518 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06b2 f9c8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.491520 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.491521 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.491522 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.491524 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.491525 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.491526 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.491527 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.491528 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:19.491529 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:19.502496 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.502498 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.502512 LLDP, length 82 [|LLDP] 19:07:19.502522 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.502522 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06bb 602d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.502524 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.502525 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.502526 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.502527 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.502529 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.502536 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.502538 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.502539 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.502540 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:19.502541 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:19.510760 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.510762 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.510769 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.510770 LLDP, length 82 [|LLDP] 19:07:19.510781 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.510782 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06c1 acfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.510783 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.510784 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.510786 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.510787 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.510789 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.510790 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.510791 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.521753 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.521754 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.521761 LLDP, length 82 [|LLDP] 19:07:19.521770 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.521771 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06ca 1360 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.521773 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.521774 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.521775 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.521779 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.532770 LLDP, length 82 [|LLDP] 19:07:19.532779 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.532780 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06d2 79c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.532782 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.532783 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.532785 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.532793 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.532794 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.532797 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.541028 LLDP, length 82 [|LLDP] 19:07:19.541037 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.541037 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06d8 c693 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.541039 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.541040 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.541042 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.541043 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.541051 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.541052 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.552043 LLDP, length 82 [|LLDP] 19:07:19.552056 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.552057 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06e1 2cf9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.552059 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.552060 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.552061 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.552062 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.552063 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.552075 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.552076 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.552085 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.552087 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.552088 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.552089 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:19.552091 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:19.563051 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.563053 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.563067 LLDP, length 82 [|LLDP] 19:07:19.563076 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.563077 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06e9 9361 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.563079 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.563080 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.563081 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.563082 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.563083 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.563091 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.563093 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.563094 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.563095 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:19.563096 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:19.571306 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.571308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.571321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.571322 LLDP, length 82 [|LLDP] 19:07:19.571333 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.571335 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06ef e02e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.571336 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.571337 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.571338 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.571340 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.571341 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.571342 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.571343 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.571344 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:19.571345 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:19.582323 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.582325 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.582338 LLDP, length 82 [|LLDP] 19:07:19.582349 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.582350 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06f8 469b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.582352 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.582353 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.582354 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.582356 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.582357 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.582364 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.582366 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.582366 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.582367 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:19.582369 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:19.593332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.593334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.593349 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.593350 LLDP, length 82 [|LLDP] 19:07:19.593360 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.593361 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0700 acfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.593363 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.593364 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.593365 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.593367 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.593369 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.593370 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.593371 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.593372 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:19.593373 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:19.601587 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.601589 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.601603 LLDP, length 82 [|LLDP] 19:07:19.601612 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.601613 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0706 f9c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.601615 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.601617 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.601618 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.601619 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.601620 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.601627 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.601629 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.601630 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.601632 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:19.601633 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:19.612619 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.612621 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.612628 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.612630 LLDP, length 82 [|LLDP] 19:07:19.612640 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.612641 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 070f 602e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.612642 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.612643 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.612644 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.612646 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.612648 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.612649 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.612650 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.620872 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.620875 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.620889 LLDP, length 82 [|LLDP] 19:07:19.620900 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.620902 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0715 acfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.620903 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.620904 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.620906 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.620910 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.631866 LLDP, length 82 [|LLDP] 19:07:19.631876 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.631877 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 071e 1361 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.631880 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.631881 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.631889 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.631899 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.631900 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.631903 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.642888 LLDP, length 82 [|LLDP] 19:07:19.642898 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.642899 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0726 79c8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.642901 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.642902 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.642903 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.642904 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.642905 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.642906 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.642919 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.642921 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.642922 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.642930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.642932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:19.642933 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:19.651146 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.651148 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.651158 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.651159 LLDP, length 82 [|LLDP] 19:07:19.651174 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.651175 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 072c c694 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.651176 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.651178 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.651179 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.651180 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.651182 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.651183 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.651184 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.651185 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:19.651186 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:19.662155 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.662158 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.662173 LLDP, length 82 [|LLDP] 19:07:19.662186 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.662187 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0735 2cfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.662188 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.662189 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.662190 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.662192 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.662193 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.662201 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.662204 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.662205 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.662206 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:19.662207 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:19.673162 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.673163 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.673174 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.673175 LLDP, length 82 [|LLDP] 19:07:19.673187 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.673189 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 073d 9361 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.673190 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.673192 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.673193 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.673195 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.673197 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.673197 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.673198 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.673199 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:19.673205 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:19.681412 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.681414 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.681430 LLDP, length 82 [|LLDP] 19:07:19.681440 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.681441 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0743 e02e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.681443 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.681444 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.681446 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.681447 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.681448 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.681455 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.681458 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.681458 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.681460 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:19.681461 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:19.692418 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.692419 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.692433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.692434 LLDP, length 82 [|LLDP] 19:07:19.692446 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.692447 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 074c 4695 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.692449 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.692450 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.692452 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.692453 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.692455 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.692456 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.692457 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.692458 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:19.692459 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:19.703428 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.703430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.703436 LLDP, length 82 [|LLDP] 19:07:19.703445 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.703446 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0754 acfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.703447 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.703448 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.703449 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.703450 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.703451 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.703458 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.703460 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.703461 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.711686 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.711687 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.711693 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.711694 LLDP, length 82 [|LLDP] 19:07:19.711703 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.711704 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 075a f9c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.711706 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.711707 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.711708 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.722688 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.722690 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.722697 LLDP, length 82 [|LLDP] 19:07:19.722705 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.722706 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0763 602d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.722708 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.722709 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.722710 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.722713 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.730946 LLDP, length 82 [|LLDP] 19:07:19.730954 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.730955 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0769 acfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.730957 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.730958 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.730959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.730966 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.730967 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.730970 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.741969 LLDP, length 82 [|LLDP] 19:07:19.741981 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.741982 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0772 1360 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.741983 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.741985 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.741986 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.741987 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.741988 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.741998 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.742000 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.742001 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.742002 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.742009 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.742011 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:19.742013 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:19.752969 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.752970 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.752981 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.752983 LLDP, length 82 [|LLDP] 19:07:19.752992 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.752993 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 077a 79c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.752995 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.752996 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.752997 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.752998 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.752999 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.753000 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.753001 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.753002 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:19.753003 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:19.761223 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.761224 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.761235 LLDP, length 82 [|LLDP] 19:07:19.761245 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.761246 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0780 c694 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.761247 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.761248 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.761250 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.761251 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.761252 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.761260 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.761261 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.761262 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.761263 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:19.761265 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:19.772236 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.772238 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.772252 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.772253 LLDP, length 82 [|LLDP] 19:07:19.772261 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.772262 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0789 2cfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.772264 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.772265 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.772266 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.772268 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.772270 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.772271 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.772272 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.772273 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:19.772274 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:19.783245 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.783247 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.783259 LLDP, length 82 [|LLDP] 19:07:19.783268 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.783269 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0791 9361 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.783271 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.783272 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.783273 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.783274 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.783275 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.783282 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.783284 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.783285 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.783286 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:19.783287 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:19.791502 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.791503 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.791517 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.791518 LLDP, length 82 [|LLDP] 19:07:19.791526 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.791527 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0797 e02d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.791529 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.791530 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.791531 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.791533 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.791534 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.791535 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.791536 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.791537 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:19.791538 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:19.802519 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.802520 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.802527 LLDP, length 82 [|LLDP] 19:07:19.802535 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.802537 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07a0 4695 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.802538 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.802539 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.802540 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.802541 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.802543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.802549 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.802551 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.802552 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.810766 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.810767 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.810772 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.810774 LLDP, length 82 [|LLDP] 19:07:19.810783 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.810784 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07a6 9362 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.810785 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.810787 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.810789 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.821790 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.821792 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.821800 LLDP, length 82 [|LLDP] 19:07:19.821813 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.821814 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07ae f9c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.821815 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.821817 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.821818 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.821823 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.832793 LLDP, length 82 [|LLDP] 19:07:19.832802 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.832802 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07b7 6035 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.832805 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.832805 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.832806 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.832814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.832815 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.832818 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.841050 LLDP, length 82 [|LLDP] 19:07:19.841062 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.841063 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07bd acfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.841065 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.841066 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.841067 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.841069 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.841070 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.841071 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.841082 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.841084 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.841085 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.841092 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.841094 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:19.841094 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:19.852056 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.852057 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.852069 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.852070 LLDP, length 82 [|LLDP] 19:07:19.852079 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.852080 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07c6 1362 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.852082 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.852083 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.852084 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.852086 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.852088 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.852089 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.852090 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.852091 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:19.852092 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:19.863071 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.863073 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.863085 LLDP, length 82 [|LLDP] 19:07:19.863094 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.863096 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07ce 79c8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.863097 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.863098 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.863100 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.863101 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.863102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.863109 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.863111 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.863112 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.863113 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:19.863114 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:19.871326 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.871327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.871341 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.871342 LLDP, length 82 [|LLDP] 19:07:19.871351 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.871352 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07d4 c695 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.871354 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.871355 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.871356 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.871358 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.871359 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.871360 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.871361 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.871362 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:19.871363 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:19.882337 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.882339 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.882352 LLDP, length 82 [|LLDP] 19:07:19.882360 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.882361 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07dd 2cfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.882363 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.882364 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.882365 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.882366 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.882367 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.882374 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.882376 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.882377 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.882378 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:19.882379 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:19.893347 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.893348 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.893361 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.893362 LLDP, length 82 [|LLDP] 19:07:19.893371 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.893372 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07e5 9362 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.893374 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.893375 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.893376 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.893378 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.893379 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.893380 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.893381 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.893382 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:19.893383 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:19.901611 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.901612 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.901618 LLDP, length 82 [|LLDP] 19:07:19.901626 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.901627 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07eb e02e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.901629 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.901630 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.901632 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.901633 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.901634 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.901641 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.901642 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.901643 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.912608 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.912609 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.912615 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.912616 LLDP, length 82 [|LLDP] 19:07:19.912625 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.912626 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07f4 4697 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.912628 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.912630 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.912631 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.920866 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.920867 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.920873 LLDP, length 82 [|LLDP] 19:07:19.920881 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.920882 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07fa 9361 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.920884 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.920885 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.920886 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.920890 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.931878 LLDP, length 82 [|LLDP] 19:07:19.931886 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.931887 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0802 f9c8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.931889 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.931890 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.931892 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.931900 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.931901 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.931904 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.942902 LLDP, length 82 [|LLDP] 19:07:19.942910 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.942911 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 080b 602d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.942913 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.942914 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.942915 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.942917 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.942918 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.942919 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.942930 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.942931 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.942933 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.942938 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.942940 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:19.942941 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:19.951152 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.951154 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.951166 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.951167 LLDP, length 82 [|LLDP] 19:07:19.951176 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.951177 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0811 acfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.951179 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.951180 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.951181 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.951182 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.951184 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.951185 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.951186 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.951186 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:19.951187 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:19.962155 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.962157 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.962169 LLDP, length 82 [|LLDP] 19:07:19.962177 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.962178 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 081a 1360 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.962179 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.962180 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.962182 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.962183 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.962184 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.962191 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.962192 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.962194 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.962195 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:19.962196 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:19.973164 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.973166 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.973178 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.973179 LLDP, length 82 [|LLDP] 19:07:19.973188 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.973189 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0822 79c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.973191 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.973192 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.973193 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.973195 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.973196 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.973197 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.973198 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.973199 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:19.973200 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:19.981424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.981425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.981438 LLDP, length 82 [|LLDP] 19:07:19.981446 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.981447 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0828 c693 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.981449 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.981450 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.981451 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.981452 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.981454 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.981461 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.981463 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.981464 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.981465 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:19.981466 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:19.992434 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.992436 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.992448 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.992449 LLDP, length 82 [|LLDP] 19:07:19.992457 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.992458 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0831 2cfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.992460 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.992461 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.992462 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.992464 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.992465 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.992466 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.992467 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.992468 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:19.992469 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:20.003453 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.003454 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.003460 LLDP, length 82 [|LLDP] 19:07:20.003468 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.003469 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0839 9360 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.003471 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.003472 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.003473 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.003474 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.003476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.003483 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.003485 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.003486 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.011706 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.011708 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.011713 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.011715 LLDP, length 82 [|LLDP] 19:07:20.011724 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.011725 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 083f e02d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.011727 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.011728 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.011730 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.022723 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.022725 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.022734 LLDP, length 82 [|LLDP] 19:07:20.022748 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.022749 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0848 4694 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.022751 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.022752 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.022754 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.022758 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.030987 LLDP, length 82 [|LLDP] 19:07:20.030998 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.030999 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 084e 9367 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.031002 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.031003 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.031005 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.031014 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.031015 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.031018 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.041994 LLDP, length 82 [|LLDP] 19:07:20.042003 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.042004 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0856 f9c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.042006 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.042007 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.042008 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.042010 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.042011 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.042012 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.042024 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.042026 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.042028 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.042035 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.042037 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:20.042038 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:20.052998 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.053000 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.053018 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.053019 LLDP, length 82 [|LLDP] 19:07:20.053031 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.053032 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 085f 602d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.053034 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.053035 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.053037 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.053039 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.053040 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.053041 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.053042 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.053043 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:20.053044 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:20.061257 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.061259 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.061273 LLDP, length 82 [|LLDP] 19:07:20.061286 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.061287 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0865 acfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.061288 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.061289 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.061290 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.061292 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.061293 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.061301 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.061303 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.061304 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.061306 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:20.061306 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:20.072266 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.072268 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.072282 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.072284 LLDP, length 82 [|LLDP] 19:07:20.072293 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.072294 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 086e 1362 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.072296 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.072298 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.072299 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.072300 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.072302 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.072303 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.072304 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.072305 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:20.072305 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:20.083282 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.083284 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.083299 LLDP, length 82 [|LLDP] 19:07:20.083314 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.083315 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0876 79ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.083318 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.083319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.083320 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.083322 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.083324 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.083333 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.083336 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.083338 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.083340 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:20.083342 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:20.091554 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.091563 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.091574 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.091575 LLDP, length 82 [|LLDP] 19:07:20.091588 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.091589 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 087c c695 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.091591 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.091592 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.091594 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.091595 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.091597 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.091597 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.091598 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.091599 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:20.091601 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:20.102559 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.102561 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.102570 LLDP, length 82 [|LLDP] 19:07:20.102582 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.102583 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0885 2cfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.102584 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.102585 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.102587 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.102588 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.102589 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.102597 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.102599 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.102600 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.110798 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.110800 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.110808 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.110809 LLDP, length 82 [|LLDP] 19:07:20.110821 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.110821 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 088b 79c8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.110823 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.110825 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.110826 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.121809 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.121811 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.121820 LLDP, length 82 [|LLDP] 19:07:20.121830 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.121831 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0893 e02e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.121833 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.121834 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.121835 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.121839 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.132820 LLDP, length 82 [|LLDP] 19:07:20.132832 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.132833 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 089c 4694 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.132836 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.132837 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.132838 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.132848 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.132849 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.132852 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.141078 LLDP, length 82 [|LLDP] 19:07:20.141091 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.141092 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08a2 9361 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.141094 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.141095 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.141096 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.141098 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.141099 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.141100 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.141112 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.141114 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.141115 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.141122 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.141124 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:20.141124 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:20.152083 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.152085 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.152098 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.152099 LLDP, length 82 [|LLDP] 19:07:20.152108 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.152109 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08aa f9c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.152110 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.152111 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.152112 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.152114 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.152115 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.152116 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.152117 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.152118 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:20.152119 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:20.163093 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.163094 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.163106 LLDP, length 82 [|LLDP] 19:07:20.163116 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.163117 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08b3 602f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.163119 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.163120 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.163121 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.163122 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.163124 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.163131 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.163132 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.163133 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.163135 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:20.163135 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:20.171345 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.171346 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.171359 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.171360 LLDP, length 82 [|LLDP] 19:07:20.171369 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.171370 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08b9 acfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.171372 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.171373 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.171374 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.171375 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.171377 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.171378 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.171379 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.171380 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:20.171381 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:20.182356 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.182358 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.182371 LLDP, length 82 [|LLDP] 19:07:20.182379 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.182379 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08c2 1361 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.182381 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.182382 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.182383 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.182385 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.182386 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.182393 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.182395 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.182396 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.182397 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:20.182398 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:20.193368 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.193370 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.193376 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.193377 LLDP, length 82 [|LLDP] 19:07:20.193386 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.193387 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08ca 79c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.193389 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.193390 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.193391 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.193392 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.193394 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.193395 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.193396 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.193397 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:20.193398 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:20.201633 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.201634 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.201640 LLDP, length 82 [|LLDP] 19:07:20.201648 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.201649 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08d0 c694 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.201651 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.201652 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.201653 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.201655 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.201656 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.201663 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.201664 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.201665 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.212630 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.212631 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.212637 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.212639 LLDP, length 82 [|LLDP] 19:07:20.212648 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.212649 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08d9 2cfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.212650 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.212652 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.212653 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.220887 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.220888 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.220894 LLDP, length 82 [|LLDP] 19:07:20.220903 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.220904 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08df 79c8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.220905 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.220906 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.220908 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.220911 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.231897 LLDP, length 82 [|LLDP] 19:07:20.231905 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.231906 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08e7 e02e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.231908 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.231909 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.231911 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.231917 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.231918 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.231921 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.242914 LLDP, length 82 [|LLDP] 19:07:20.242926 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.242927 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08f0 4694 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.242930 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.242931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.242932 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.242934 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.242935 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.242945 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.242947 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.242948 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.242949 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.242956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.242958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:20.242959 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:20.251171 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.251172 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.251184 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.251185 LLDP, length 82 [|LLDP] 19:07:20.251195 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.251196 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08f6 9361 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.251197 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.251199 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.251200 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.251202 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.251203 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.251204 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.251205 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.251206 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:20.251207 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:20.262178 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.262179 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.262192 LLDP, length 82 [|LLDP] 19:07:20.262199 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.262200 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08fe f9c8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.262202 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.262203 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.262204 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.262206 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.262207 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.262215 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.262216 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.262218 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.262218 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:20.262219 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:20.273190 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.273191 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.273203 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.273204 LLDP, length 82 [|LLDP] 19:07:20.273212 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.273213 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0907 602e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.273215 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.273216 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.273218 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.273219 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.273221 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.273222 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.273223 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.273224 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:20.273225 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:20.281444 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.281445 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.281457 LLDP, length 82 [|LLDP] 19:07:20.281466 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.281467 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 090d ad02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.281469 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.281470 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.281471 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.281472 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.281473 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.281480 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.281482 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.281483 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.281484 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:20.281485 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:20.292456 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.292457 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.292469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.292470 LLDP, length 82 [|LLDP] 19:07:20.292479 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.292480 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0916 1362 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.292482 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.292483 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.292484 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.292486 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.292488 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.292488 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.292490 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.292491 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:20.292492 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:20.300723 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.300724 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.300730 LLDP, length 82 [|LLDP] 19:07:20.300739 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.300740 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 091c 602e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.300742 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.300743 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.300744 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.300745 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.300746 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.300753 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.300755 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.300756 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.311715 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.311717 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.311723 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.311724 LLDP, length 82 [|LLDP] 19:07:20.311733 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.311734 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0924 c695 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.311735 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.311737 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.311738 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.322730 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.322731 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.322738 LLDP, length 82 [|LLDP] 19:07:20.322745 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.322746 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 092d 2cfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.322748 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.322749 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.322750 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.322754 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.330988 LLDP, length 82 [|LLDP] 19:07:20.330995 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.330996 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0933 79c8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.330998 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.330999 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.331000 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.331008 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.331009 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.331011 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.341999 LLDP, length 82 [|LLDP] 19:07:20.342010 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.342011 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 093b e02f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.342012 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.342013 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.342015 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.342016 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.342025 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.342027 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.342028 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.342030 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.342031 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.342039 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.342041 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:20.342042 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:20.353012 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.353014 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.353020 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.353027 LLDP, length 82 [|LLDP] 19:07:20.353036 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.353037 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0944 4694 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.353038 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.353039 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.353040 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.353042 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.353043 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.353045 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.353046 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.353047 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:20.353047 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:20.361266 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.361268 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.361279 LLDP, length 82 [|LLDP] 19:07:20.361288 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.361289 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 094a 9361 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.361290 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.361292 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.361293 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.361294 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.361308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.361316 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.361318 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.361319 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.361320 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:20.361321 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:20.372320 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.372328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.372339 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.372341 LLDP, length 82 [|LLDP] 19:07:20.372357 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.372358 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0952 f9c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.372360 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.372362 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.372363 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.372364 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.372365 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.372366 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.372367 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.372368 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:20.372370 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:20.383294 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.383295 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.383308 LLDP, length 82 [|LLDP] 19:07:20.383317 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.383318 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 095b 602e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.383320 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.383321 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.383322 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.383323 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.383325 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.383332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.383334 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.383335 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.383336 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:20.383337 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:20.391547 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.391549 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.391563 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.391564 LLDP, length 82 [|LLDP] 19:07:20.391574 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.391575 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0961 acfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.391576 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.391577 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.391578 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.391580 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.391581 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.391582 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.391583 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.391584 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:20.391585 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:20.402568 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.402569 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.402576 LLDP, length 82 [|LLDP] 19:07:20.402585 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.402586 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 096a 1361 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.402588 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.402589 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.402590 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.402591 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.402592 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.402600 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.402602 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.402603 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.410811 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.410812 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.410817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.410818 LLDP, length 82 [|LLDP] 19:07:20.410827 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.410828 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0970 602d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.410830 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.410832 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.410833 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.421816 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.421818 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.421824 LLDP, length 82 [|LLDP] 19:07:20.421833 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.421834 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0978 c694 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.421835 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.421836 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.421838 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.421842 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.432826 LLDP, length 82 [|LLDP] 19:07:20.432834 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.432835 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0981 2cfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.432837 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.432838 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.432839 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.432846 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.432847 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.432849 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.441096 LLDP, length 82 [|LLDP] 19:07:20.441110 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.441111 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0987 79c6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.441113 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.441114 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.441115 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.441116 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.441117 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.441119 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.441132 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.441134 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.441135 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.441140 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.441143 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:20.441144 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:20.452105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.452107 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.452119 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.452121 LLDP, length 82 [|LLDP] 19:07:20.452130 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.452131 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 098f e02d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.452132 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.452133 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.452135 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.452137 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.452138 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.452139 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.452140 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.452141 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:20.452143 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:20.463113 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.463115 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.463128 LLDP, length 82 [|LLDP] 19:07:20.463137 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.463138 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0998 4694 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.463139 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.463141 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.463142 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.463143 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.463144 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.463151 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.463153 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.463154 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.463155 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:20.463156 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:20.471367 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.471368 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.471380 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.471381 LLDP, length 82 [|LLDP] 19:07:20.471391 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.471391 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 099e 9361 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.471393 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.471394 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.471395 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.471397 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.471398 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.471399 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.471400 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.471401 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:20.471402 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:20.482377 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.482378 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.482391 LLDP, length 82 [|LLDP] 19:07:20.482400 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.482401 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09a6 f9c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.482402 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.482404 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.482405 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.482406 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.482407 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.482414 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.482416 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.482417 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.482418 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:20.482419 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:20.493390 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.493392 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.493404 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.493406 LLDP, length 82 [|LLDP] 19:07:20.493415 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.493416 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09af 602d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.493418 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.493419 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.493421 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.493422 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.493423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.493424 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.493426 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.493427 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:20.493428 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:20.501656 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.501657 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.501663 LLDP, length 82 [|LLDP] 19:07:20.501672 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.501673 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09b5 acfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.501675 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.501676 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.501677 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.501678 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.501679 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.501686 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.501688 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.501689 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.512652 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.512654 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.512660 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.512661 LLDP, length 82 [|LLDP] 19:07:20.512670 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.512671 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09be 1361 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.512673 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.512674 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.512676 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.520907 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.520909 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.520914 LLDP, length 82 [|LLDP] 19:07:20.520922 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.520923 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09c4 602e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.520925 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.520926 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.520927 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.520930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.531919 LLDP, length 82 [|LLDP] 19:07:20.531927 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.531928 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09cc c69b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.531929 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.531931 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.531931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.531938 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.531939 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.531942 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.542937 LLDP, length 82 [|LLDP] 19:07:20.542949 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.542949 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09d5 2cfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.542951 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.542952 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.542953 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.542954 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.542956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.542965 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.542967 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.542968 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.542969 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.542976 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.542978 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:20.542979 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:20.553166 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.553168 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.553175 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.553176 LLDP, length 82 [|LLDP] 19:07:20.553186 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.553187 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09db 79c8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.553188 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.553190 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.553191 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.553193 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.553194 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.553195 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.553196 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.553197 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:20.553198 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:20.562199 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.562200 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.562212 LLDP, length 82 [|LLDP] 19:07:20.562220 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.562221 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09e3 e02e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.562223 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.562224 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.562225 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.562226 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.562228 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.562234 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.562236 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.562237 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.562238 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:20.562239 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:20.573210 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.573211 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.573224 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.573225 LLDP, length 82 [|LLDP] 19:07:20.573234 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.573235 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09ec 4694 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.573236 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.573237 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.573239 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.573240 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.573241 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.573242 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.573244 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.573245 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:20.573246 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:20.581466 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.581468 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.581483 LLDP, length 82 [|LLDP] 19:07:20.581492 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.581493 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09f2 9361 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.581494 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.581495 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.581496 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.581498 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.581499 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.581506 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.581508 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.581509 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.581510 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:20.581511 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:20.592478 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.592480 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.592491 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.592493 LLDP, length 82 [|LLDP] 19:07:20.592502 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.592502 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09fa f9c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.592504 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.592505 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.592506 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.592507 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.592509 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.592510 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.592511 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.592512 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:20.592513 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:20.600751 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.600752 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.600759 LLDP, length 82 [|LLDP] 19:07:20.600767 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.600769 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a01 4693 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.600770 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.600771 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.600773 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.600774 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.600775 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.600782 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.600784 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.600785 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.614029 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.614030 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.614036 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.614038 LLDP, length 82 [|LLDP] 19:07:20.614047 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.614048 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a09 acfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.614050 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.614052 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.614053 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.622751 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.622752 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.622758 LLDP, length 82 [|LLDP] 19:07:20.622767 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.622767 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a12 1361 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.622769 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.622770 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.622771 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.622775 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.631009 LLDP, length 82 [|LLDP] 19:07:20.631016 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.631017 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a18 602d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.631019 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.631020 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.631021 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.631028 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.631030 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.631032 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.642022 LLDP, length 82 [|LLDP] 19:07:20.642034 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.642035 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a20 c693 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.642037 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.642038 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.642039 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.642040 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.642041 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.642051 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.642053 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.642055 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.642056 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.642062 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.642064 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:20.642065 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:20.653030 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.653031 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.653042 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.653044 LLDP, length 82 [|LLDP] 19:07:20.653052 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.653053 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a29 2cfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.653054 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.653056 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.653057 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.653059 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.653060 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.653061 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.653062 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.653063 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:20.653064 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:20.661290 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.661292 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.661304 LLDP, length 82 [|LLDP] 19:07:20.661313 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.661314 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a2f 79c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.661316 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.661317 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.661318 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.661319 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.661321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.661327 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.661330 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.661331 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.661332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:20.661333 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:20.674735 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.674738 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.674749 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.674750 LLDP, length 82 [|LLDP] 19:07:20.674764 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.674765 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a37 e02e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.674766 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.674767 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.674769 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.674770 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.674772 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.674773 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.674774 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.674775 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:20.674776 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:20.683319 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.683321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.683329 LLDP, length 82 [|LLDP] 19:07:20.683340 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.683341 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a40 4694 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.683343 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.683344 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.683345 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.683346 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.683347 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.683354 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.683356 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.683357 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.683358 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:20.683359 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:20.691575 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.691577 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.691591 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.691592 LLDP, length 82 [|LLDP] 19:07:20.691603 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.691604 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a46 9361 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.691606 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.691607 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.691609 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.691610 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.691612 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.691612 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.691614 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.691615 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:20.691616 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:20.702601 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.702603 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.702614 LLDP, length 82 [|LLDP] 19:07:20.702625 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.702626 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a4e f9c8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.702628 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.702629 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.702630 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.702631 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.702633 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.702640 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.702642 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.702643 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.710838 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.710840 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.710848 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.710849 LLDP, length 82 [|LLDP] 19:07:20.710859 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.710860 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a55 4695 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.710862 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.710863 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.710864 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.721855 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.721857 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.721866 LLDP, length 82 [|LLDP] 19:07:20.721875 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.721876 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a5d acfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.721878 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.721879 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.721880 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.721885 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.735382 LLDP, length 82 [|LLDP] 19:07:20.735394 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.735395 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a66 1361 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.735398 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.735399 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.735400 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.735411 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.735412 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.735415 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.741138 LLDP, length 82 [|LLDP] 19:07:20.741149 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.741150 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a6c 602f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.741153 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.741154 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.741155 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.741156 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.741158 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.741159 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.741175 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.741177 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.741178 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.741186 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.741188 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:20.741189 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:20.752133 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.752135 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.752150 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.752151 LLDP, length 82 [|LLDP] 19:07:20.752163 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.752164 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a74 c6b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.752166 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.752167 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.752168 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.752170 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.752172 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.752173 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.752174 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.752175 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:20.752176 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:20.763136 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.763138 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.763152 LLDP, length 82 [|LLDP] 19:07:20.763162 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.763163 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a7d 2d1d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.763165 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.763166 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.763167 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.763168 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.763170 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.763177 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.763179 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.763180 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.763181 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:20.763182 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:20.771393 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.771394 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.771407 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.771408 LLDP, length 82 [|LLDP] 19:07:20.771417 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.771418 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a83 79ea 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.771420 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.771421 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.771422 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.771424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.771425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.771426 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.771428 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.771429 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:20.771430 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:20.782401 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.782402 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.782414 LLDP, length 82 [|LLDP] 19:07:20.782424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.782425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a8b e04f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.782426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.782427 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.782428 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.782430 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.782431 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.782438 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.782440 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.782441 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.782442 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:20.782443 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:20.790656 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.790657 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.790670 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.790671 LLDP, length 82 [|LLDP] 19:07:20.790680 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.790681 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a92 2d1d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.790682 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.790684 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.790685 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.790686 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.790688 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.790689 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.790690 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.790691 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:20.790692 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:20.801678 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.801680 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.801685 LLDP, length 82 [|LLDP] 19:07:20.801694 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.801695 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a9a 9382 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.801697 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.801698 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.801699 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.801700 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.801702 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.801709 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.801711 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.801712 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.812677 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.812678 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.812684 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.812685 LLDP, length 82 [|LLDP] 19:07:20.812694 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.812695 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0aa2 f9e9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.812697 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.812698 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.812700 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.820945 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.820948 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.820957 LLDP, length 82 [|LLDP] 19:07:20.820969 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.820971 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0aa9 46b8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.820972 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.820973 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.820974 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.820979 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.831943 LLDP, length 82 [|LLDP] 19:07:20.831951 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.831952 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ab1 ad1b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.831954 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.831955 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.831957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.831964 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.831965 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.831969 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.842962 LLDP, length 82 [|LLDP] 19:07:20.842974 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.842975 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0aba 1381 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.842977 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.842978 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.842979 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.842981 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.842982 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.842992 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.842994 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.842995 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.842996 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.843004 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.843006 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:20.843007 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:20.851211 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.851213 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.851225 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.851227 LLDP, length 82 [|LLDP] 19:07:20.851236 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.851238 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ac0 604f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.851239 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.851240 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.851242 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.851243 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.851244 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.851245 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.851247 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.851248 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:20.851249 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:20.862223 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.862225 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.862238 LLDP, length 82 [|LLDP] 19:07:20.862247 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.862248 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ac8 c6b5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.862250 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.862251 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.862252 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.862253 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.862255 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.862261 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.862263 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.862264 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.862265 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:20.862266 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:20.873246 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.873247 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.873263 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.873264 LLDP, length 82 [|LLDP] 19:07:20.873276 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.873277 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ad1 2d22 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.873279 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.873280 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.873281 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.873283 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.873284 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.873286 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.873286 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.873287 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:20.873288 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:20.881493 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.881495 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.881508 LLDP, length 82 [|LLDP] 19:07:20.881518 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.881519 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ad7 79e8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.881521 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.881522 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.881523 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.881524 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.881525 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.881532 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.881535 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.881535 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.881536 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:20.881538 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:20.892501 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.892502 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.892514 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.892515 LLDP, length 82 [|LLDP] 19:07:20.892525 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.892526 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0adf e04e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.892527 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.892529 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.892530 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.892532 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.892533 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.892534 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.892535 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.892536 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:20.892537 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:20.900766 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.900768 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.900774 LLDP, length 82 [|LLDP] 19:07:20.900782 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.900783 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ae6 2d1b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.900785 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.900786 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.900788 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.900789 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.900790 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.900797 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.900798 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.900800 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.911764 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.911766 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.911773 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.911773 LLDP, length 82 [|LLDP] 19:07:20.911783 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.911784 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0aee 9382 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.911785 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.911786 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.911787 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.922776 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.922777 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.922783 LLDP, length 82 [|LLDP] 19:07:20.922790 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.922791 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0af6 f9e8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.922793 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.922794 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.922796 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.922800 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.931034 LLDP, length 82 [|LLDP] 19:07:20.931042 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.931043 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0afd 46b5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.931046 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.931047 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.931048 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.931055 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.931057 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.931059 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.942170 LLDP, length 82 [|LLDP] 19:07:20.942178 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.942179 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b05 ad1c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.942180 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.942181 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.942182 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.942184 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.942185 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.942186 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.942196 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.942198 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.942200 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.942205 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.942207 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:20.942208 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:20.953055 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.953057 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.953063 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.953064 LLDP, length 82 [|LLDP] 19:07:20.953073 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.953074 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b0e 1382 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.953075 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.953077 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.953078 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.953080 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.953081 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.953082 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.953083 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.953084 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:20.953085 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:20.961310 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.961311 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.961324 LLDP, length 82 [|LLDP] 19:07:20.961332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.961333 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b14 604f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.961335 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.961336 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.961337 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.961338 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.961340 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.961347 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.961349 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.961350 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.961351 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:20.961352 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:20.972321 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.972322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.972335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.972336 LLDP, length 82 [|LLDP] 19:07:20.972346 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.972346 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b1c c6b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.972348 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.972350 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.972351 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.972352 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.972353 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.972355 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.972356 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.972357 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:20.972358 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:20.983332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.983333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.983345 LLDP, length 82 [|LLDP] 19:07:20.983354 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.983356 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b25 2d1c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.983357 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.983358 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.983360 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.983361 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.983362 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.983369 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.983371 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.983372 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.983373 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:20.983374 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:20.991585 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.991587 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.991599 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.991600 LLDP, length 82 [|LLDP] 19:07:20.991609 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.991610 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b2b 79f0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.991612 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.991613 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.991614 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.991615 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.991617 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.991617 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.991618 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.991619 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:20.991620 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:21.002610 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.002612 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.002617 LLDP, length 82 [|LLDP] 19:07:21.002626 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.002627 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b33 e050 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.002629 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.002630 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.002631 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.002633 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.002634 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.002641 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.002643 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.002644 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.010852 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.010854 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.010860 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.010861 LLDP, length 82 [|LLDP] 19:07:21.010870 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.010871 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b3a 2d1d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.010873 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.010874 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.010876 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.021864 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.021865 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.021871 LLDP, length 82 [|LLDP] 19:07:21.021879 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.021880 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b42 9384 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.021882 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.021883 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.021884 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.021888 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.032872 LLDP, length 82 [|LLDP] 19:07:21.032880 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.032880 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b4a f9ea 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.032882 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.032883 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.032885 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.032892 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.032894 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.032896 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.041136 LLDP, length 82 [|LLDP] 19:07:21.041147 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.041148 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b51 46b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.041150 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.041151 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.041153 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.041154 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.041155 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.041156 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.041167 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.041169 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.041170 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.041176 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.041178 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:21.041179 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:21.052144 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.052145 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.052160 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.052161 LLDP, length 82 [|LLDP] 19:07:21.052170 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.052172 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b59 ad1d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.052173 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.052174 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.052176 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.052177 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.052179 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.052180 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.052181 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.052182 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:21.052183 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:21.063152 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.063153 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.063165 LLDP, length 82 [|LLDP] 19:07:21.063174 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.063175 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b62 1383 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.063177 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.063178 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.063179 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.063180 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.063181 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.063188 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.063190 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.063191 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.063192 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:21.063193 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:21.071411 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.071413 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.071425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.071426 LLDP, length 82 [|LLDP] 19:07:21.071434 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.071435 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b68 6051 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.071436 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.071437 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.071439 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.071440 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.071442 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.071443 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.071444 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.071445 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:21.071446 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:21.082419 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.082421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.082434 LLDP, length 82 [|LLDP] 19:07:21.082442 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.082443 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b70 c6b5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.082445 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.082446 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.082447 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.082448 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.082449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.082457 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.082459 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.082460 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.082460 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:21.082462 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:21.090678 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.090680 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.090692 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.090693 LLDP, length 82 [|LLDP] 19:07:21.090702 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.090703 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b77 1383 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.090705 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.090706 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.090707 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.090709 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.090710 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.090711 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.090712 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.090713 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:21.090715 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:21.101698 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.101699 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.101706 LLDP, length 82 [|LLDP] 19:07:21.101714 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.101715 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b7f 79e9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.101717 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.101718 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.101719 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.101720 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.101721 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.101728 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.101730 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.101731 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.112695 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.112696 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.112702 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.112703 LLDP, length 82 [|LLDP] 19:07:21.112712 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.112713 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b87 e04f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.112714 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.112716 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.112717 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.120953 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.120955 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.120962 LLDP, length 82 [|LLDP] 19:07:21.120971 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.120972 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b8e 2d1b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.120973 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.120975 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.120976 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.120980 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.131963 LLDP, length 82 [|LLDP] 19:07:21.131970 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.131971 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b96 9382 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.131973 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.131974 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.131975 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.131983 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.131984 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.131988 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.142978 LLDP, length 82 [|LLDP] 19:07:21.142990 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.142990 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b9e f9e8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.142992 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.142994 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.142995 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.142996 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.142997 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.143007 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.143008 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.143010 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.143011 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.143018 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.143019 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:21.143020 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:21.151231 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.151232 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.151244 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.151245 LLDP, length 82 [|LLDP] 19:07:21.151254 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.151255 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ba5 46b4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.151257 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.151258 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.151259 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.151261 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.151263 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.151264 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.151264 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.151265 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:21.151266 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:21.162244 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.162245 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.162257 LLDP, length 82 [|LLDP] 19:07:21.162266 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.162267 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bad ad1b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.162269 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.162270 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.162271 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.162272 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.162273 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.162281 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.162282 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.162284 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.162284 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:21.162285 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:21.173251 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.173253 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.173268 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.173269 LLDP, length 82 [|LLDP] 19:07:21.173278 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.173279 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bb6 1382 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.173280 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.173282 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.173282 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.173284 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.173286 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.173287 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.173288 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.173289 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:21.173290 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:21.181512 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.181513 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.181526 LLDP, length 82 [|LLDP] 19:07:21.181535 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.181536 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bbc 604f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.181538 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.181539 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.181541 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.181542 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.181543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.181550 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.181552 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.181553 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.181554 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:21.181555 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:21.192520 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.192522 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.192534 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.192535 LLDP, length 82 [|LLDP] 19:07:21.192544 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.192544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bc4 c6b5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.192546 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.192547 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.192548 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.192549 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.192551 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.192552 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.192553 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.192554 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:21.192555 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:21.200790 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.200792 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.200798 LLDP, length 82 [|LLDP] 19:07:21.200806 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.200807 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bcb 13a4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.200809 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.200810 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.200811 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.200812 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.200813 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.200820 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.200823 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.200824 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.211785 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.211786 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.211792 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.211793 LLDP, length 82 [|LLDP] 19:07:21.211802 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.211803 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bd3 7a0a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.211805 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.211807 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.211808 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.222797 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.222799 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.222805 LLDP, length 82 [|LLDP] 19:07:21.222813 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.222814 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bdb e071 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.222815 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.222816 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.222817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.222821 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.231053 LLDP, length 82 [|LLDP] 19:07:21.231060 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.231061 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0be2 2d3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.231063 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.231064 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.231065 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.231072 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.231073 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.231076 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.242066 LLDP, length 82 [|LLDP] 19:07:21.242078 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.242078 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bea 93a4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.242080 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.242082 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.242083 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.242085 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.242086 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.242095 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.242097 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.242098 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.242100 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.242106 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.242109 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:21.242110 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:21.253078 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.253080 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.253092 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.253093 LLDP, length 82 [|LLDP] 19:07:21.253102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.253103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bf2 fa0a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.253105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.253106 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.253107 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.253109 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.253110 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.253111 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.253112 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.253113 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:21.253114 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:21.261333 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.261334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.261346 LLDP, length 82 [|LLDP] 19:07:21.261355 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.261355 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bf9 46d7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.261357 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.261359 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.261360 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.261361 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.261362 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.261369 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.261371 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.261372 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.261373 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:21.261374 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:21.272341 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.272343 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.272355 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.272356 LLDP, length 82 [|LLDP] 19:07:21.272366 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.272367 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c01 ad3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.272369 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.272370 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.272371 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.272373 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.272375 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.272376 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.272376 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.272377 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:21.272378 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:21.283352 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.283354 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.283370 LLDP, length 82 [|LLDP] 19:07:21.283379 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.283380 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c0a 13a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.283381 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.283383 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.283384 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.283385 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.283386 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.283393 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.283395 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.283396 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.283397 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:21.283398 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:21.291608 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.291609 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.291621 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.291622 LLDP, length 82 [|LLDP] 19:07:21.291632 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.291633 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c10 6071 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.291634 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.291635 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.291637 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.291638 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.291640 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.291641 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.291642 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.291643 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:21.291644 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:21.302630 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.302631 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.302638 LLDP, length 82 [|LLDP] 19:07:21.302646 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.302647 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c18 c6d8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.302649 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.302650 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.302652 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.302653 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.302654 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.302661 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.302663 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.302664 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.310874 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.310875 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.310881 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.310882 LLDP, length 82 [|LLDP] 19:07:21.310890 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.310891 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c1f 13a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.310893 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.310894 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.310895 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.321888 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.321889 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.321895 LLDP, length 82 [|LLDP] 19:07:21.321903 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.321903 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c27 7a0b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.321905 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.321907 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.321908 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.321912 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.332895 LLDP, length 82 [|LLDP] 19:07:21.332902 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.332903 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c2f e071 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.332906 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.332907 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.332908 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.332916 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.332917 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.332920 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.341161 LLDP, length 82 [|LLDP] 19:07:21.341174 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.341175 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c36 2d3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.341176 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.341177 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.341178 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.341180 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.341181 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.341182 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.341193 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.341195 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.341196 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.341215 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.341217 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:21.341218 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:21.352209 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.352218 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.352229 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.352230 LLDP, length 82 [|LLDP] 19:07:21.352246 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.352247 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c3e 93a4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.352249 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.352251 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.352252 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.352254 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.352255 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.352256 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.352257 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.352258 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:21.352259 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:21.363182 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.363184 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.363197 LLDP, length 82 [|LLDP] 19:07:21.363206 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.363207 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c46 fa0b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.363209 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.363210 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.363211 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.363212 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.363213 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.363220 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.363222 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.363223 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.363224 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:21.363225 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:21.371434 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.371435 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.371448 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.371449 LLDP, length 82 [|LLDP] 19:07:21.371459 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.371460 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c4d 46d7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.371462 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.371463 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.371464 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.371466 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.371468 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.371469 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.371469 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.371470 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:21.371471 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:21.382443 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.382445 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.382457 LLDP, length 82 [|LLDP] 19:07:21.382465 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.382466 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c55 ad3d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.382467 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.382469 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.382470 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.382471 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.382472 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.382479 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.382481 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.382482 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.382483 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:21.382484 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:21.390702 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.390704 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.390717 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.390718 LLDP, length 82 [|LLDP] 19:07:21.390727 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.390728 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c5b fa0a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.390730 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.390731 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.390732 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.390734 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.390736 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.390737 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.390738 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.390739 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:21.390740 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:21.401716 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.401718 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.401724 LLDP, length 82 [|LLDP] 19:07:21.401733 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.401733 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c64 6070 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.401735 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.401736 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.401738 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.401739 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.401740 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.401746 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.401748 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.401749 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.412718 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.412719 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.412724 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.412726 LLDP, length 82 [|LLDP] 19:07:21.412735 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.412736 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c6c c6dd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.412737 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.412738 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.412740 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.420974 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.420975 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.420981 LLDP, length 82 [|LLDP] 19:07:21.420988 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.420989 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c73 13a4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.420991 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.420992 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.420993 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.420997 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.431984 LLDP, length 82 [|LLDP] 19:07:21.431992 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.431993 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c7b 7a0a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.431995 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.431996 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.431998 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.432006 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.432007 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.432011 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.443021 LLDP, length 82 [|LLDP] 19:07:21.443038 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.443039 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c83 e070 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.443042 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.443043 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.443045 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.443046 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.443047 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.443048 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.443064 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.443067 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.443068 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.443075 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.443077 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:21.443078 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:21.451263 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.451265 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.451279 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.451280 LLDP, length 82 [|LLDP] 19:07:21.451289 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.451290 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c8a 2d42 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.451292 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.451293 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.451294 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.451295 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.451297 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.451298 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.451299 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.451300 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:21.451301 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:21.462278 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.462280 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.462298 LLDP, length 82 [|LLDP] 19:07:21.462309 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.462311 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c92 93a4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.462312 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.462314 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.462315 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.462316 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.462318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.462326 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.462328 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.462329 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.462331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:21.462332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:21.473286 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.473288 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.473303 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.473304 LLDP, length 82 [|LLDP] 19:07:21.473320 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.473321 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c9a fa0b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.473322 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.473324 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.473325 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.473326 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.473327 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.473328 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.473330 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.473330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:21.473332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:21.481546 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.481548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.481571 LLDP, length 82 [|LLDP] 19:07:21.481583 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.481584 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ca1 46d7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.481585 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.481586 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.481588 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.481589 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.481590 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.481598 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.481600 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.481601 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.481602 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:21.481603 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:21.492554 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.492556 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.492573 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.492574 LLDP, length 82 [|LLDP] 19:07:21.492585 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.492586 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ca9 ad3d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.492587 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.492588 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.492589 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.492591 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.492592 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.492593 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.492594 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.492595 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:21.492596 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:21.500815 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.500816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.500824 LLDP, length 82 [|LLDP] 19:07:21.500834 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.500835 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0caf fa0b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.500837 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.500838 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.500843 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.500845 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.500846 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.500854 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.500855 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.500857 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.511816 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.511818 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.511826 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.511827 LLDP, length 82 [|LLDP] 19:07:21.511838 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.511839 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cb8 6071 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.511841 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.511843 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.511844 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.522821 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.522823 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.522831 LLDP, length 82 [|LLDP] 19:07:21.522842 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.522843 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cc0 c6d8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.522844 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.522846 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.522847 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.522851 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.531081 LLDP, length 82 [|LLDP] 19:07:21.531092 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.531093 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cc7 13ab 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.531096 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.531098 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.531099 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.531108 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.531109 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.531112 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.542100 LLDP, length 82 [|LLDP] 19:07:21.542114 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.542115 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ccf 7a0b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.542118 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.542119 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.542120 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.542121 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.542122 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.542123 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.542136 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.542138 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.542140 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.542153 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.542156 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:21.542157 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:21.553104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.553106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.553121 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.553122 LLDP, length 82 [|LLDP] 19:07:21.553132 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.553134 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cd7 e072 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.553135 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.553136 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.553138 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.553139 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.553140 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.553141 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.553142 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.553143 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:21.553144 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:21.561360 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.561362 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.561376 LLDP, length 82 [|LLDP] 19:07:21.561386 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.561387 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cde 2d3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.561389 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.561390 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.561391 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.561392 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.561393 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.561401 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.561403 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.561404 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.561405 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:21.561407 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:21.572373 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.572374 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.572389 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.572390 LLDP, length 82 [|LLDP] 19:07:21.572401 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.572402 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ce6 93a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.572404 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.572405 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.572406 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.572408 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.572410 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.572411 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.572412 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.572413 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:21.572414 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:21.580630 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.580632 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.580640 LLDP, length 82 [|LLDP] 19:07:21.580648 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.580649 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cec e071 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.580651 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.580652 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.580653 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.580654 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.580655 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.580662 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.580664 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.580665 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.580667 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:21.580668 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:21.591641 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.591643 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.591665 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.591667 LLDP, length 82 [|LLDP] 19:07:21.591677 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.591678 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cf5 46d8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.591679 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.591681 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.591682 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.591683 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.591685 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.591686 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.591686 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.591687 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:21.591688 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:21.602664 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.602666 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.602675 LLDP, length 82 [|LLDP] 19:07:21.602685 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.602685 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cfd ad3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.602687 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.602688 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.602689 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.602690 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.602692 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.602699 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.602701 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.602702 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.610920 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.610922 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.610933 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.610933 LLDP, length 82 [|LLDP] 19:07:21.610947 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.610948 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d03 fa0b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.610949 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.610951 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.610952 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.621919 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.621922 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.621931 LLDP, length 82 [|LLDP] 19:07:21.621942 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.621943 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d0c 6072 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.621944 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.621946 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.621947 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.621951 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.632926 LLDP, length 82 [|LLDP] 19:07:21.632937 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.632937 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d14 c6d7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.632940 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.632941 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.632943 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.632954 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.632955 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.632958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.641197 LLDP, length 82 [|LLDP] 19:07:21.641212 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.641213 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d1b 13a4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.641216 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.641217 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.641219 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.641220 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.641221 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.641222 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.641236 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.641239 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.641240 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.641248 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.641250 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:21.641251 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:21.652196 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.652198 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.652212 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.652213 LLDP, length 82 [|LLDP] 19:07:21.652222 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.652223 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d23 7a0b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.652225 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.652226 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.652227 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.652228 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.652230 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.652230 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.652231 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.652233 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:21.652233 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:21.663202 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.663204 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.663217 LLDP, length 82 [|LLDP] 19:07:21.663225 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.663226 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d2b e077 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.663227 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.663229 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.663230 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.663231 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.663232 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.663240 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.663242 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.663243 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.663244 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:21.663245 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:21.671458 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.671460 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.671473 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.671474 LLDP, length 82 [|LLDP] 19:07:21.671483 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.671484 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d32 2d3d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.671486 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.671487 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.671488 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.671490 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.671492 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.671493 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.671493 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.671495 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:21.671495 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:21.682503 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.682505 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.682515 LLDP, length 82 [|LLDP] 19:07:21.682530 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.682531 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d3a 93a4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.682533 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.682534 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.682535 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.682537 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.682538 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.682545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.682547 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.682548 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.682550 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:21.682551 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:21.690735 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.690737 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.690751 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.690753 LLDP, length 82 [|LLDP] 19:07:21.690763 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.690764 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d40 e071 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.690766 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.690767 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.690768 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.690769 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.690771 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.690772 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.690773 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.690774 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:21.690775 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:21.701757 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.701760 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.701769 LLDP, length 82 [|LLDP] 19:07:21.701781 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.701782 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d49 46da 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.701784 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.701786 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.701787 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.701788 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.701790 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.701798 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.701800 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.701801 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.712748 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.712750 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.712760 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.712761 LLDP, length 82 [|LLDP] 19:07:21.712772 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.712773 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d51 ad3d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.712775 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.712777 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.712778 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.721003 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.721005 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.721014 LLDP, length 82 [|LLDP] 19:07:21.721025 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.721027 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d57 fa0a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.721029 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.721030 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.721031 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.721035 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.732019 LLDP, length 82 [|LLDP] 19:07:21.732030 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.732031 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d60 6070 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.732033 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.732034 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.732035 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.732044 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.732046 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.732049 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.743034 LLDP, length 82 [|LLDP] 19:07:21.743048 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.743049 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d68 c6d7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.743052 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.743053 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.743054 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.743056 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.743057 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.743058 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.743075 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.743077 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.743078 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.743085 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.743088 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:21.743089 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:21.751284 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.751287 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.751301 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.751302 LLDP, length 82 [|LLDP] 19:07:21.751318 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.751319 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d6f 13a4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.751321 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.751322 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.751323 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.751325 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.751326 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.751327 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.751328 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.751329 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:21.751330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:21.762295 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.762297 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.762312 LLDP, length 82 [|LLDP] 19:07:21.762323 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.762324 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d77 7a0a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.762326 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.762327 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.762328 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.762329 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.762330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.762337 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.762339 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.762340 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.762341 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:21.762342 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:21.773305 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.773307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.773321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.773322 LLDP, length 82 [|LLDP] 19:07:21.773334 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.773335 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d7f e070 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.773336 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.773338 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.773339 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.773341 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.773343 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.773344 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.773345 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.773346 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:21.773347 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:21.781567 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.781569 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.781583 LLDP, length 82 [|LLDP] 19:07:21.781592 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.781593 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d86 2d44 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.781594 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.781596 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.781597 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.781598 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.781599 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.781606 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.781608 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.781610 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.781611 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:21.781612 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:21.792576 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.792578 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.792592 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.792594 LLDP, length 82 [|LLDP] 19:07:21.792608 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.792609 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d8e 93a4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.792611 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.792612 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.792613 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.792615 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.792617 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.792617 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.792618 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.792619 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:21.792621 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:21.800849 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.800851 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.800864 LLDP, length 82 [|LLDP] 19:07:21.800875 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.800876 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d94 e071 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.800878 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.800879 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.800880 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.800881 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.800882 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.800890 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.800892 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.800893 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.811844 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.811846 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.811855 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.811856 LLDP, length 82 [|LLDP] 19:07:21.811867 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.811868 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d9d 46d7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.811870 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.811871 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.811872 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.822853 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.822855 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.822864 LLDP, length 82 [|LLDP] 19:07:21.822875 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.822876 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0da5 ad3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.822878 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.822879 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.822880 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.822885 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.831108 LLDP, length 82 [|LLDP] 19:07:21.831119 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.831120 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dab fa0b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.831122 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.831123 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.831124 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.831134 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.831135 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.831138 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.842132 LLDP, length 82 [|LLDP] 19:07:21.842149 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.842150 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0db4 6071 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.842153 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.842154 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.842155 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.842156 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.842158 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.842159 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.842174 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.842176 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.842177 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.842184 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.842185 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:21.842186 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:21.853133 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.853135 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.853150 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.853151 LLDP, length 82 [|LLDP] 19:07:21.853162 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.853163 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dbc c6d8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.853165 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.853166 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.853166 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.853168 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.853170 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.853171 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.853172 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.853173 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:21.853174 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:21.861392 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.861394 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.861409 LLDP, length 82 [|LLDP] 19:07:21.861418 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.861419 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dc3 13a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.861421 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.861422 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.861423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.861425 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.861426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.861438 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.861440 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.861441 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.861442 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:21.861443 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:21.872415 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.872423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.872433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.872434 LLDP, length 82 [|LLDP] 19:07:21.872449 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.872450 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dcb 7a0b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.872452 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.872453 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.872454 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.872456 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.872458 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.872458 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.872459 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.872460 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:21.872462 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:21.880660 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.880662 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.880677 LLDP, length 82 [|LLDP] 19:07:21.880689 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.880690 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dd1 c6d8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.880691 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.880692 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.880693 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.880695 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.880696 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.880704 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.880706 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.880707 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.880708 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:21.880710 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:21.891672 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.891673 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.891688 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.891689 LLDP, length 82 [|LLDP] 19:07:21.891699 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.891699 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dda 2d3f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.891701 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.891702 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.891704 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.891705 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.891706 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.891708 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.891709 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.891709 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:21.891710 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:21.902681 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.902683 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.902691 LLDP, length 82 [|LLDP] 19:07:21.902701 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.902702 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0de2 93a4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.902704 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.902705 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.902706 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.902707 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.902709 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.902717 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.902718 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.902720 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.910922 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.910923 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.910931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.910932 LLDP, length 82 [|LLDP] 19:07:21.910942 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.910942 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0de8 e071 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.910944 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.910945 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.910947 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.921934 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.921935 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.921943 LLDP, length 82 [|LLDP] 19:07:21.921951 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.921952 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0df1 46d7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.921954 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.921955 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.921956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.921961 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.932942 LLDP, length 82 [|LLDP] 19:07:21.932949 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.932950 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0df9 ad3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.932952 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.932954 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.932955 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.932963 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.932964 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.932967 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.941209 LLDP, length 82 [|LLDP] 19:07:21.941221 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.941222 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dff fa0a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.941225 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.941226 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.941227 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.941228 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.941229 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.941230 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.941242 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.941244 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.941245 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.941250 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.941252 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:21.941253 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:21.952215 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.952217 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.952230 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.952232 LLDP, length 82 [|LLDP] 19:07:21.952240 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.952241 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e08 6072 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.952243 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.952244 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.952245 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.952247 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.952249 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.952250 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.952251 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.952252 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:21.952253 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:21.963224 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.963225 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.963240 LLDP, length 82 [|LLDP] 19:07:21.963248 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.963249 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e10 c6d7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.963251 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.963252 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.963254 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.963255 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.963256 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.963263 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.963265 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.963266 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.963267 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:21.963268 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:21.971481 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.971483 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.971496 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.971497 LLDP, length 82 [|LLDP] 19:07:21.971507 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.971508 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e17 13a4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.971510 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.971511 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.971512 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.971514 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.971515 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.971516 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.971517 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.971518 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:21.971519 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:21.982490 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.982491 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.982505 LLDP, length 82 [|LLDP] 19:07:21.982514 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.982514 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e1f 7a09 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.982516 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.982518 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.982519 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.982520 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.982521 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.982529 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.982531 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.982532 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.982533 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:21.982534 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:21.990750 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.990752 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.990766 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.990767 LLDP, length 82 [|LLDP] 19:07:21.990777 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.990778 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e25 c6d7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.990780 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.990781 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.990782 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.990784 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.990785 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.990786 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.990787 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.990788 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:21.990789 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:22.001768 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.001770 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.001777 LLDP, length 82 [|LLDP] 19:07:22.001787 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.001788 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e2e 2d3d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.001790 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.001791 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.001792 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.001793 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.001794 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.001802 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.001804 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.001805 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.012765 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.012767 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.012774 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.012774 LLDP, length 82 [|LLDP] 19:07:22.012784 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.012785 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e36 93a4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.012786 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.012788 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.012789 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.021024 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.021025 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.021034 LLDP, length 82 [|LLDP] 19:07:22.021041 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.021042 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e3c e070 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.021044 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.021045 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.021046 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.021050 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.032090 LLDP, length 82 [|LLDP] 19:07:22.032108 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.032109 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e45 46de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.032113 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.032114 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.032116 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.032146 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.032148 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.032152 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.043123 LLDP, length 82 [|LLDP] 19:07:22.043144 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.043146 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e4d ad3d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.043149 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.043150 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.043151 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.043153 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.043155 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.043157 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.043193 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.043197 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.043198 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.043209 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.043212 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:22.043213 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:22.051372 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.051376 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.051396 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.051398 LLDP, length 82 [|LLDP] 19:07:22.051420 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.051421 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e53 fa0a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.051422 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.051423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.051424 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.051426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.051427 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.051429 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.051430 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.051431 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:22.051431 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:22.062386 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.062389 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.062411 LLDP, length 82 [|LLDP] 19:07:22.062433 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.062434 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e5c 6071 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.062436 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.062437 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.062439 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.062441 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.062442 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.062452 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.062455 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.062456 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.062457 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:22.062458 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:22.070639 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.070642 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.070662 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.070664 LLDP, length 82 [|LLDP] 19:07:22.070684 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.070685 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e62 ad3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.070687 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.070688 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.070689 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.070691 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.070692 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.070693 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.070695 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.070696 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:22.070697 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:22.081657 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.081661 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.081682 LLDP, length 82 [|LLDP] 19:07:22.081701 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.081702 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e6b 13a4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.081704 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.081705 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.081706 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.081708 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.081710 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.081720 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.081722 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.081724 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.081725 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:22.081726 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:22.092658 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.092662 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.092683 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.092684 LLDP, length 82 [|LLDP] 19:07:22.092703 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.092704 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e73 7a0b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.092705 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.092707 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.092708 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.092710 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.092712 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.092713 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.092714 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.092715 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:22.092716 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:22.100942 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.100947 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.100975 LLDP, length 82 [|LLDP] 19:07:22.101003 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.101004 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e79 c6d7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.101006 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.101008 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.101009 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.101011 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.101012 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.101022 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.101025 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.101026 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.111895 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.111898 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.111914 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.111915 LLDP, length 82 [|LLDP] 19:07:22.111932 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.111933 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e82 2d3f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.111935 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.111936 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.111938 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.122874 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.122876 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.122885 LLDP, length 82 [|LLDP] 19:07:22.122896 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.122897 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e8a 93a4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.122898 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.122899 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.122901 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.122905 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.131120 LLDP, length 82 [|LLDP] 19:07:22.131130 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.131130 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e90 e072 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.131133 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.131134 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.131135 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.131144 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.131145 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.131148 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.142148 LLDP, length 82 [|LLDP] 19:07:22.142164 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.142166 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e99 46d9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.142168 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.142170 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.142171 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.142172 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.142173 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.142174 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.142188 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.142190 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.142191 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.142199 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.142202 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:22.142203 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:22.153170 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.153173 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.153184 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.153185 LLDP, length 82 [|LLDP] 19:07:22.153202 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.153203 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ea1 ad3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.153205 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.153206 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.153207 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.153209 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.153211 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.153212 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.153213 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.153214 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:22.153215 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:22.161416 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.161424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.161436 LLDP, length 82 [|LLDP] 19:07:22.161448 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.161449 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ea7 fa0b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.161450 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.161451 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.161452 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.161453 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.161455 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.161462 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.161464 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.161466 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.161467 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:22.161468 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:22.172423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.172425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.172447 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.172448 LLDP, length 82 [|LLDP] 19:07:22.172458 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.172459 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0eb0 6072 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.172461 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.172462 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.172463 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.172465 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.172467 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.172468 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.172469 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.172470 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:22.172471 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:22.180683 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.180684 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.180700 LLDP, length 82 [|LLDP] 19:07:22.180712 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.180713 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0eb6 ad3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.180715 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.180716 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.180717 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.180718 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.180719 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.180727 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.180729 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.180730 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.180731 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:22.180732 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:22.191701 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.191703 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.191718 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.191719 LLDP, length 82 [|LLDP] 19:07:22.191730 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.191732 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ebf 13a4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.191733 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.191734 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.191736 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.191737 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.191739 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.191740 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.191740 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.191742 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:22.191743 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:22.202709 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.202711 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.202720 LLDP, length 82 [|LLDP] 19:07:22.202732 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.202733 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ec7 7a0b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.202734 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.202736 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.202737 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.202738 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.202739 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.202746 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.202748 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.202749 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.210952 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.210955 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.210964 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.210966 LLDP, length 82 [|LLDP] 19:07:22.210977 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.210978 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ecd c6d8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.210980 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.210981 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.210983 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.221962 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.221965 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.221974 LLDP, length 82 [|LLDP] 19:07:22.221985 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.221986 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ed6 2d3d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.221988 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.221989 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.221990 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.221994 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.232972 LLDP, length 82 [|LLDP] 19:07:22.232984 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.232985 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ede 93a4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.232987 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.232988 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.232989 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.233000 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.233001 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.233004 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.241234 LLDP, length 82 [|LLDP] 19:07:22.241249 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.241250 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ee4 e070 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.241252 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.241253 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.241254 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.241256 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.241257 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.241258 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.241270 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.241272 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.241273 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.241279 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.241281 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:22.241282 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:22.252241 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.252242 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.252257 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.252258 LLDP, length 82 [|LLDP] 19:07:22.252270 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.252271 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0eed 46d7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.252273 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.252274 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.252276 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.252277 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.252279 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.252280 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.252281 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.252282 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:22.252283 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:22.263250 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.263252 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.263266 LLDP, length 82 [|LLDP] 19:07:22.263276 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.263277 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ef5 ad3d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.263278 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.263279 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.263280 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.263281 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.263283 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.263290 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.263292 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.263293 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.263294 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:22.263295 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:22.271505 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.271506 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.271521 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.271522 LLDP, length 82 [|LLDP] 19:07:22.271532 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.271533 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0efb fa0a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.271535 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.271536 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.271537 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.271539 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.271540 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.271541 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.271542 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.271543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:22.271544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:22.282530 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.282532 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.282548 LLDP, length 82 [|LLDP] 19:07:22.282559 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.282560 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f04 6077 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.282561 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.282563 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.282564 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.282565 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.282566 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.282574 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.282576 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.282577 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.282578 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:22.282579 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:22.290775 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.290777 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.290792 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.290793 LLDP, length 82 [|LLDP] 19:07:22.290804 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.290804 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f0a ad3d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.290806 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.290807 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.290808 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.290810 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.290811 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.290812 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.290813 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.290814 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:22.290815 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:22.301793 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.301794 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.301802 LLDP, length 82 [|LLDP] 19:07:22.301811 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.301813 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f13 13a3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.301814 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.301815 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.301816 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.301817 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.301819 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.301825 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.301827 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.301828 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.312784 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.312785 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.312792 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.312793 LLDP, length 82 [|LLDP] 19:07:22.312803 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.312804 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f1b 7a0a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.312806 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.312807 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.312808 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.321045 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.321047 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.321055 LLDP, length 82 [|LLDP] 19:07:22.321064 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.321065 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f21 c6d7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.321079 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.321081 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.321082 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.321086 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.332077 LLDP, length 82 [|LLDP] 19:07:22.332093 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.332101 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f2a 2d3d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.332104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.332105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.332107 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.332127 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.332129 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.332133 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.343083 LLDP, length 82 [|LLDP] 19:07:22.343094 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.343094 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f32 93a4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.343097 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.343098 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.343099 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.343100 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.343102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.343103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.343116 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.343118 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.343120 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.343127 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.343130 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:22.343131 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:22.351330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.351332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.351345 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.351346 LLDP, length 82 [|LLDP] 19:07:22.351356 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.351357 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f38 e071 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.351359 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.351360 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.351361 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.351363 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.351364 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.351365 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.351367 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.351368 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:22.351369 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:22.362337 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.362339 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.362352 LLDP, length 82 [|LLDP] 19:07:22.362362 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.362364 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f41 46d7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.362365 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.362366 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.362368 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.362369 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.362370 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.362377 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.362379 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.362380 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.362381 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:22.362382 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:22.370595 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.370597 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.370610 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.370611 LLDP, length 82 [|LLDP] 19:07:22.370622 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.370623 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f47 93a4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.370625 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.370626 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.370628 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.370629 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.370630 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.370632 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.370633 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.370633 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:22.370634 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:22.381603 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.381604 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.381618 LLDP, length 82 [|LLDP] 19:07:22.381628 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.381629 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f4f fa0b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.381631 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.381632 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.381633 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.381634 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.381635 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.381642 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.381644 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.381645 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.381646 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:22.381647 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:22.392613 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.392615 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.392629 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.392630 LLDP, length 82 [|LLDP] 19:07:22.392640 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.392641 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f58 6072 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.392643 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.392644 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.392645 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.392646 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.392648 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.392649 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.392650 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.392651 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:22.392652 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:22.400879 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.400881 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.400888 LLDP, length 82 [|LLDP] 19:07:22.400897 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.400898 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f5e ad45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.400900 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.400901 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.400902 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.400904 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.400905 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.400912 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.400914 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.400915 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.411874 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.411875 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.411882 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.411883 LLDP, length 82 [|LLDP] 19:07:22.411894 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.411895 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f67 13a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.411896 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.411898 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.411899 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.422884 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.422886 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.422893 LLDP, length 82 [|LLDP] 19:07:22.422902 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.422903 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f6f 7a0b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.422904 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.422905 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.422906 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.422910 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.431141 LLDP, length 82 [|LLDP] 19:07:22.431151 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.431152 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f75 c6d8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.431154 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.431155 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.431157 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.431164 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.431165 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.431168 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.442162 LLDP, length 82 [|LLDP] 19:07:22.442171 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.442171 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f7e 2d3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.442174 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.442175 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.442176 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.442178 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.442179 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.442180 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.442192 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.442194 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.442195 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.442202 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.442204 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:22.442205 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:22.453172 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.453174 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.453181 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.453183 LLDP, length 82 [|LLDP] 19:07:22.453193 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.453194 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f86 93a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.453196 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.453197 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.453198 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.453200 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.453201 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.453202 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.453203 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.453204 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:22.453204 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:22.461421 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.461422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.461439 LLDP, length 82 [|LLDP] 19:07:22.461450 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.461451 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f8c e071 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.461453 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.461454 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.461455 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.461456 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.461457 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.461464 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.461467 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.461467 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.461468 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:22.461469 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:22.472438 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.472440 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.472455 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.472456 LLDP, length 82 [|LLDP] 19:07:22.472466 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.472467 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f95 46d8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.472468 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.472470 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.472471 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.472473 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.472474 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.472475 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.472476 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.472477 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:22.472478 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:22.480691 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.480692 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.480706 LLDP, length 82 [|LLDP] 19:07:22.480715 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.480716 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f9b 93a4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.480718 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.480719 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.480721 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.480722 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.480723 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.480730 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.480731 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.480732 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.480733 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:22.480734 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:22.491708 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.491710 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.491725 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.491726 LLDP, length 82 [|LLDP] 19:07:22.491736 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.491737 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fa3 fa0a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.491739 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.491740 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.491741 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.491743 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.491744 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.491745 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.491746 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.491747 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:22.491748 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:22.502723 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.502725 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.502732 LLDP, length 82 [|LLDP] 19:07:22.502743 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.502743 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fac 6070 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.502745 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.502746 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.502748 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.502749 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.502750 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.502757 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.502759 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.502760 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.510966 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.510968 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.510975 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.510976 LLDP, length 82 [|LLDP] 19:07:22.510986 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.510987 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fb2 ad3d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.510989 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.510991 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.510992 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.521977 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.521979 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.521986 LLDP, length 82 [|LLDP] 19:07:22.521996 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.521997 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fbb 13a4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.521999 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.522000 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.522001 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.522004 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.532990 LLDP, length 82 [|LLDP] 19:07:22.532999 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.533000 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fc3 7a11 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.533003 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.533004 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.533005 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.533013 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.533014 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.533017 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.541249 LLDP, length 82 [|LLDP] 19:07:22.541262 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.541263 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fc9 c6d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.541265 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.541266 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.541267 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.541268 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.541269 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.541270 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.541281 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.541282 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.541284 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.541290 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.541292 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:22.541293 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:22.552256 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.552257 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.552271 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.552272 LLDP, length 82 [|LLDP] 19:07:22.552282 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.552283 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fd2 2d3d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.552284 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.552286 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.552287 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.552288 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.552289 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.552291 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.552292 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.552293 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:22.552295 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:22.563269 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.563271 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.563284 LLDP, length 82 [|LLDP] 19:07:22.563293 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.563294 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fda 93a4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.563296 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.563297 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.563298 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.563300 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.563301 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.563308 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.563310 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.563311 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.563312 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:22.563313 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:22.571525 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.571527 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.571540 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.571541 LLDP, length 82 [|LLDP] 19:07:22.571552 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.571553 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fe0 e071 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.571554 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.571555 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.571556 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.571558 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.571560 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.571561 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.571561 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.571562 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:22.571563 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:22.582534 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.582536 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.582552 LLDP, length 82 [|LLDP] 19:07:22.582561 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.582562 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fe9 46d7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.582563 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.582564 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.582566 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.582567 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.582568 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.582575 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.582576 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.582578 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.582579 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:22.582580 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:22.590796 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.590797 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.590811 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.590812 LLDP, length 82 [|LLDP] 19:07:22.590822 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.590823 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fef 93a3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.590825 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.590826 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.590827 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.590829 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.590830 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.590832 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.590833 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.590834 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:22.590835 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:22.601811 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.601813 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.601820 LLDP, length 82 [|LLDP] 19:07:22.601829 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.601830 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ff7 fa0b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.601831 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.601832 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.601834 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.601835 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.601836 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.601843 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.601845 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.601846 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.612808 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.612809 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.612816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.612818 LLDP, length 82 [|LLDP] 19:07:22.612826 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.612827 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1000 6071 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.612829 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.612831 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.612832 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.621064 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.621066 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.621073 LLDP, length 82 [|LLDP] 19:07:22.621082 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.621083 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1006 ad3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.621085 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.621086 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.621087 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.621091 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.632074 LLDP, length 82 [|LLDP] 19:07:22.632083 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.632084 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 100f 13a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.632086 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.632088 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.632089 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.632096 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.632098 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.632100 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.643090 LLDP, length 82 [|LLDP] 19:07:22.643102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.643103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1017 7a0b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.643105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.643106 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.643107 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.643108 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.643110 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.643111 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.643121 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.643123 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.643125 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.643130 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.643132 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:22.643133 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:22.651346 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.651347 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.651360 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.651362 LLDP, length 82 [|LLDP] 19:07:22.651372 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.651373 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 101d c6de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.651375 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.651376 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.651377 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.651379 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.651380 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.651381 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.651382 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.651383 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:22.651384 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:22.662362 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.662371 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.662382 LLDP, length 82 [|LLDP] 19:07:22.662393 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.662394 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1026 2d3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.662395 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.662396 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.662398 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.662399 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.662400 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.662408 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.662409 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.662411 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.662412 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:22.662412 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:22.670618 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.670620 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.670633 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.670634 LLDP, length 82 [|LLDP] 19:07:22.670643 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.670644 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 102c 7a0b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.670646 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.670647 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.670648 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.670650 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.670651 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.670652 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.670653 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.670654 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:22.670656 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:22.681623 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.681625 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.681638 LLDP, length 82 [|LLDP] 19:07:22.681647 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.681648 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1034 e072 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.681650 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.681651 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.681653 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.681654 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.681655 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.681661 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.681663 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.681664 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.681665 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:22.681666 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:22.692635 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.692637 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.692651 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.692652 LLDP, length 82 [|LLDP] 19:07:22.692662 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.692663 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 103d 46d8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.692665 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.692666 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.692667 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.692668 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.692670 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.692671 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.692672 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.692673 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:22.692674 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:22.700902 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.700903 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.700910 LLDP, length 82 [|LLDP] 19:07:22.700921 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.700921 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1043 93a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.700923 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.700924 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.700925 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.700927 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.700928 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.700935 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.700937 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.700938 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.711899 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.711901 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.711907 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.711908 LLDP, length 82 [|LLDP] 19:07:22.711918 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.711919 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 104b fa0b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.711921 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.711922 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.711924 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.722909 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.722911 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.722919 LLDP, length 82 [|LLDP] 19:07:22.722928 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.722929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1054 6072 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.722931 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.722932 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.722933 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.722937 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.731168 LLDP, length 82 [|LLDP] 19:07:22.731178 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.731179 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 105a ad3f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.731181 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.731182 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.731183 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.731191 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.731192 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.731195 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.742183 LLDP, length 82 [|LLDP] 19:07:22.742195 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.742196 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1063 13a4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.742199 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.742200 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.742202 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.742202 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.742203 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.742204 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.742216 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.742218 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.742220 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.742226 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.742228 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:22.742229 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:22.753189 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.753191 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.753204 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.753205 LLDP, length 82 [|LLDP] 19:07:22.753215 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.753216 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 106b 7a0b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.753218 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.753219 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.753220 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.753222 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.753223 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.753224 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.753225 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.753226 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:22.753227 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:22.761444 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.761445 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.761459 LLDP, length 82 [|LLDP] 19:07:22.761468 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.761469 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1071 c6d8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.761471 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.761472 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.761473 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.761475 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.761476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.761483 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.761485 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.761486 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.761487 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:22.761488 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:22.772455 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.772456 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.772469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.772470 LLDP, length 82 [|LLDP] 19:07:22.772480 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.772481 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 107a 2d3d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.772482 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.772484 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.772485 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.772486 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.772488 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.772488 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.772489 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.772490 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:22.772491 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:22.780713 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.780715 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.780727 LLDP, length 82 [|LLDP] 19:07:22.780737 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.780738 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1080 7a0a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.780739 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.780741 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.780742 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.780743 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.780744 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.780751 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.780753 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.780754 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.780756 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:22.780756 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:22.791722 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.791724 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.791737 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.791739 LLDP, length 82 [|LLDP] 19:07:22.791749 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.791750 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1088 e071 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.791751 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.791753 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.791754 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.791755 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.791757 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.791758 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.791759 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.791760 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:22.791762 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:22.802745 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.802747 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.802753 LLDP, length 82 [|LLDP] 19:07:22.802762 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.802763 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1091 46d7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.802765 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.802766 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.802767 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.802768 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.802769 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.802776 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.802778 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.802779 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.810986 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.810988 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.810994 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.810996 LLDP, length 82 [|LLDP] 19:07:22.811006 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.811007 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1097 93a3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.811008 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.811010 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.811012 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.822010 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.822012 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.822021 LLDP, length 82 [|LLDP] 19:07:22.822032 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.822034 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 109f fa09 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.822035 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.822036 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.822037 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.822042 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.833005 LLDP, length 82 [|LLDP] 19:07:22.833014 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.833015 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10a8 6070 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.833017 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.833019 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:22.833020 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.833021 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.833032 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.833033 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.833036 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.841270 LLDP, length 82 [|LLDP] 19:07:22.841284 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.841285 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10ae ad3d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.841287 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.841288 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.841290 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.841291 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.841292 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.841301 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.841303 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.841304 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.841309 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.841311 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.841313 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:22.841313 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:22.852278 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.852279 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.852293 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.852294 LLDP, length 82 [|LLDP] 19:07:22.852305 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.852306 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10b7 13a4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.852308 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.852309 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.852311 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.852312 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.852313 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.852314 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.852315 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.852316 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:22.852317 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:22.860540 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.860542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.860556 LLDP, length 82 [|LLDP] 19:07:22.860564 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.860566 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10bd 6070 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.860567 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.860568 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.860569 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.860570 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.860576 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.860579 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.860580 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.860581 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.860582 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:22.860583 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:22.871568 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.871571 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.871581 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.871583 LLDP, length 82 [|LLDP] 19:07:22.871597 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.871598 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10c5 c6d7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.871600 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.871601 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.871603 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.871604 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.871605 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.871607 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.871607 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.871608 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:22.871609 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:22.882562 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.882564 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.882573 LLDP, length 82 [|LLDP] 19:07:22.882584 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.882585 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10ce 2d3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.882586 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.882588 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.882589 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.882590 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.882597 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.882599 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.882600 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.882601 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.882602 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:22.882603 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:22.890821 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.890823 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.890836 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.890838 LLDP, length 82 [|LLDP] 19:07:22.890847 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.890849 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10d4 7a0a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.890850 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.890851 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.890853 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.890854 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.890855 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.890856 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.890857 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.890858 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:22.890859 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:22.901838 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.901841 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.901849 LLDP, length 82 [|LLDP] 19:07:22.901859 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.901860 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10dc e077 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.901862 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.901863 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.901864 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.901865 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.901871 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.901872 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.901873 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.912836 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.912838 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.912846 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.912847 LLDP, length 82 [|LLDP] 19:07:22.912857 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.912858 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10e5 46d7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.912859 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.912861 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.912862 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.921084 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.921086 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.921094 LLDP, length 82 [|LLDP] 19:07:22.921104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.921106 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10eb 93a4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.921107 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.921108 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.921110 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.921114 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.932106 LLDP, length 82 [|LLDP] 19:07:22.932115 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.932115 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10f3 fa0b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.932117 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.932119 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.932120 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.932129 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.932131 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.932133 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.943127 LLDP, length 82 [|LLDP] 19:07:22.943142 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.943143 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10fc 6071 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.943146 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.943147 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.943148 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.943149 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.943150 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.943151 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.943165 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.943166 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.943168 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.943174 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.943177 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:22.943178 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:22.951373 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.951374 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.951388 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.951389 LLDP, length 82 [|LLDP] 19:07:22.951401 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.951401 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1102 ad3f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.951403 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.951404 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.951405 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.951407 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.951408 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.951409 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.951410 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.951411 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:22.951412 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:22.962384 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.962386 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.962400 LLDP, length 82 [|LLDP] 19:07:22.962411 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.962412 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 110b 13a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.962414 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.962415 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.962416 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.962418 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.962419 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.962426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.962428 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.962429 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.962430 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:22.962432 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:22.970636 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.970637 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.970651 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.970652 LLDP, length 82 [|LLDP] 19:07:22.970663 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.970664 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1111 6071 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.970665 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.970667 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.970668 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.970669 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.970671 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.970672 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.970672 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.970673 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:22.970674 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:22.981646 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.981648 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.981662 LLDP, length 82 [|LLDP] 19:07:22.981672 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.981673 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1119 c6d8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.981674 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.981675 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.981677 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.981678 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.981679 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.981686 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.981688 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.981689 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.981690 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:22.981691 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:22.992654 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.992656 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.992669 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.992671 LLDP, length 82 [|LLDP] 19:07:22.992681 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.992682 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1122 2d3f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.992683 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.992684 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.992685 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.992687 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.992688 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.992689 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.992690 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.992691 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:22.992692 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:23.000921 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:23.000923 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.000929 LLDP, length 82 [|LLDP] 19:07:23.000938 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:23.000939 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1128 7a0b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:23.000941 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:23.000942 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:23.000943 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:23.000945 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:23.000946 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.000953 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:23.000955 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:23.000956 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:23.011920 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:23.011922 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.011930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.011931 LLDP, length 82 [|LLDP] 19:07:23.011940 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:23.011941 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1130 e071 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:23.011943 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:23.011945 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:23.011946 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:23.022929 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:23.022930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.022938 LLDP, length 82 [|LLDP] 19:07:23.022947 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:23.022948 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1139 46d7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:23.022950 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:23.022951 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:23.022952 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.022956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:23.031188 LLDP, length 82 [|LLDP] 19:07:23.031196 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:23.031197 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 113f 93a4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:23.031200 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:23.031201 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:23.031202 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.031210 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.031211 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:23.031214 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:23.042206 LLDP, length 82 [|LLDP] 19:07:23.042220 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:23.042221 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1147 fa0b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:23.042223 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:23.042224 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:23.042225 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:23.042226 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:23.042228 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:23.042229 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.042240 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:23.042241 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:23.042243 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.042249 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:23.042251 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:23.042252 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:23.053210 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:23.053212 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.053225 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.053226 LLDP, length 82 [|LLDP] 19:07:23.053236 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:23.053237 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1150 6071 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:23.053239 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:23.053240 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:23.053241 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:23.053243 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:23.053244 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:23.053245 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:23.053246 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:23.053247 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:23.053248 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:23.061467 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:23.061469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.061482 LLDP, length 82 [|LLDP] 19:07:23.061491 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:23.061492 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1156 ad3d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:23.061494 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:23.061495 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:23.061496 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:23.061498 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:23.061499 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.061506 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:23.061507 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:23.061508 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:23.061509 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:23.061510 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:23.072476 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:23.072478 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.072491 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.072492 LLDP, length 82 [|LLDP] 19:07:23.072501 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:23.072502 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 115f 13a9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:23.072504 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:23.072505 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:23.072507 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:23.072508 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:23.072510 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:23.072511 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:23.072512 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:23.072513 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:23.072519 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:23.080736 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:23.080737 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.080752 LLDP, length 82 [|LLDP] 19:07:23.080761 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:23.080762 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1165 6070 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:23.080764 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:23.080765 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:23.080766 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:23.080767 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:23.080769 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.080776 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:23.080777 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:23.080779 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:23.080780 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:23.080781 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:23.091747 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:23.091748 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.091763 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.091764 LLDP, length 82 [|LLDP] 19:07:23.091774 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:23.091775 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 116d c6d7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:23.091777 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:23.091778 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:23.091779 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:23.091781 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:23.091782 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:23.091783 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:23.091784 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:23.091785 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:23.091786 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:23.102757 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:23.102759 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.102766 LLDP, length 82 [|LLDP] 19:07:23.102775 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:23.102775 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1176 2d3d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:23.102777 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:23.102779 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:23.102780 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:23.102781 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:23.102782 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.102789 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:23.102791 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:23.102792 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:23.111070 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:23.111073 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.111095 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.111096 LLDP, length 82 [|LLDP] 19:07:23.111114 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:23.111115 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 117c 7a09 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:23.111117 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:23.111119 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:23.111120 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:23.122073 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:23.122076 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.122097 LLDP, length 82 [|LLDP] 19:07:23.122114 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:23.122115 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1184 e071 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:23.122117 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:23.122118 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:23.122120 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.122125 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:23.133049 LLDP, length 82 [|LLDP] 19:07:23.133060 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:23.133061 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 118d 46d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:23.133064 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:23.133065 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:23.133066 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:23.133067 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:23.133068 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.133080 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.133081 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:23.133084 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:23.133085 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:23.133086 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:23.133088 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:23.133089 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:23.141294 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:23.141295 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.141309 LLDP, length 82 [|LLDP] 19:07:23.141320 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:23.141321 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1193 93a4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:23.141322 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:23.141324 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:23.141324 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:23.141326 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:23.141327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.141334 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:23.141336 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:23.141338 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:23.141339 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:23.141340 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:23.152303 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:23.152304 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.152318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.152319 LLDP, length 82 [|LLDP] 19:07:23.152331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:23.152332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 119b fa11 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:23.152334 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:23.152335 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:23.152337 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:23.152339 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:23.152340 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:23.152341 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:23.152342 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:23.152343 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:23.152344 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:23.160558 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:23.160560 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.160576 LLDP, length 82 [|LLDP] 19:07:23.160586 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:23.160586 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11a2 46d7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:23.160588 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:23.160589 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:23.160590 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:23.160591 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:23.160593 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.160600 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:23.160602 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:23.160603 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:23.160604 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:23.160605 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:23.171567 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:23.171569 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.171585 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.171586 LLDP, length 82 [|LLDP] 19:07:23.171596 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:23.171597 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11aa ad3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:23.171599 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:23.171600 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:23.171602 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:23.171604 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:23.171605 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:23.171606 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:23.171607 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:23.171609 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:23.171610 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:23.182578 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:23.182579 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.182594 LLDP, length 82 [|LLDP] 19:07:23.182604 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:23.182605 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11b3 13a4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:23.182606 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:23.182607 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:23.182609 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:23.182610 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:23.182611 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.182618 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:23.182620 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:23.182621 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:23.182622 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:23.182623 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:23.190843 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:23.190845 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.190852 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.190854 LLDP, length 82 [|LLDP] 19:07:23.190865 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:23.190866 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11b9 6071 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:23.190867 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:23.190869 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:23.190870 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:23.190871 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:23.190873 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:23.190874 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:23.190875 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:23.201841 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:23.201842 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.201849 LLDP, length 82 [|LLDP] 19:07:23.201859 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:23.201860 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11c1 c6d8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:23.201862 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:23.201863 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:23.201864 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.201868 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:23.212853 LLDP, length 82 [|LLDP] 19:07:23.212861 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:23.212862 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11ca 2d3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:23.212864 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:23.212865 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:23.212867 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.212875 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.212876 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:23.212879 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:23.221114 LLDP, length 82 [|LLDP] 19:07:23.221124 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:23.221125 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11d0 7a0b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:23.221127 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:23.221128 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:23.221129 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:23.221130 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.221141 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.221142 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:23.232127 LLDP, length 82 [|LLDP] 19:07:23.232141 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:23.232142 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11d8 e072 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:23.232144 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:23.232146 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:23.232147 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:23.232148 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:23.232149 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.232161 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.232162 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:23.232165 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:23.232166 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:23.232168 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:23.232170 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:23.232171 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:23.243133 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:23.243135 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.243147 LLDP, length 82 [|LLDP] 19:07:23.243157 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:23.243158 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11e1 46d8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:23.243160 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:23.243161 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:23.243162 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:23.243164 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:23.243165 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.243172 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:23.243174 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:23.243175 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:23.243176 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:23.243177 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:23.251399 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:23.251407 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.251418 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.251419 LLDP, length 82 [|LLDP] 19:07:23.251430 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:23.251431 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11e7 93a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:23.251433 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:23.251434 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:23.251435 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:23.251436 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:23.251437 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:23.251439 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:23.251440 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:23.251441 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:23.251443 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:23.262403 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:23.262404 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.262419 LLDP, length 82 [|LLDP] 19:07:23.262429 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:23.262430 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11ef fa0b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:23.262432 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:23.262433 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:23.262434 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:23.262435 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:23.262437 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.262444 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:23.262446 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:23.262447 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:23.262449 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:23.262450 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:23.270661 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:23.270663 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.270676 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.270677 LLDP, length 82 [|LLDP] 19:07:23.270688 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:23.270689 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11f6 46df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:23.270690 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:23.270691 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:23.270692 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:23.270694 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:23.270695 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:23.270696 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:23.270697 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:23.270698 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:23.270699 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:23.281666 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:23.281668 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.281682 LLDP, length 82 [|LLDP] 19:07:23.281691 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:23.281692 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11fe ad3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:23.281693 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:23.281694 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:23.281696 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:23.281697 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:23.281698 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.281705 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:23.281708 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:23.281709 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:23.281709 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:23.281711 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:23.292690 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:23.292692 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.292699 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.292700 LLDP, length 82 [|LLDP] 19:07:23.292710 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:23.292711 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1207 13a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:23.292713 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:23.292713 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:23.292714 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:23.292716 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:23.292717 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:23.292731 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:23.292733 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:23.300955 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:23.300957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.300966 LLDP, length 82 [|LLDP] 19:07:23.300981 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:23.300982 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 120d 6071 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:23.300983 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:23.300985 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:23.300986 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.300991 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:23.311947 LLDP, length 82 [|LLDP] 19:07:23.311957 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:23.311958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1215 c6d8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:23.311961 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:23.311962 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:23.311963 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.311972 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.311973 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:23.311976 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:23.322957 LLDP, length 82 [|LLDP] 19:07:23.322965 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:23.322966 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 121e 2d41 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:23.322968 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:23.322969 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:23.322970 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:23.322971 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.322981 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.322982 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:23.331200 LLDP, length 82 [|LLDP] 19:07:23.331209 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:23.331210 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1224 7a0b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:23.331212 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:23.331214 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.342230 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:23.342232 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:23.342233 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:23.342240 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.342252 LLDP, length 82 [|LLDP] 19:07:23.342262 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:23.342263 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 122c e070 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:23.342265 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:23.342266 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:23.342267 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:23.342268 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:23.342269 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.342279 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:23.342281 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:23.342282 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:23.350480 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:23.350482 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.350495 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.350496 LLDP, length 82 [|LLDP] 19:07:23.350506 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:23.350507 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1233 2d41 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:23.350508 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:23.350509 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:23.350510 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:23.350512 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:23.350513 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:23.350514 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:23.350515 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:23.350516 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:23.350517 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:23.361491 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:23.361493 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.361506 LLDP, length 82 [|LLDP] 19:07:23.361517 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:23.361517 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 123b 93a4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:23.361519 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:23.361521 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:23.361522 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:23.361523 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:23.361524 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.361531 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:23.361533 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:23.361534 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:23.361535 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:23.361536 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:23.372501 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:23.372503 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.372516 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.372517 LLDP, length 82 [|LLDP] 19:07:23.372527 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:23.372528 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1243 fa0a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:23.372529 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:23.372530 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:23.372531 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:23.372532 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:23.372534 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:23.372536 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:23.372537 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:23.372538 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:23.372539 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:23.380754 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:23.380756 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.380769 LLDP, length 82 [|LLDP] 19:07:23.380779 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:23.380780 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 124a 46d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:23.380781 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:23.380782 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:23.380784 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:23.380785 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:23.380785 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.380792 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:23.380794 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:23.380795 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:23.380796 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:23.380797 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:23.391767 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:23.391769 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.391782 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.391783 LLDP, length 82 [|LLDP] 19:07:23.391793 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:23.391794 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1252 ad3d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:23.391795 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:23.391796 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:23.391797 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:23.391798 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:23.391800 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:23.391802 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:23.391803 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:23.391804 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:23.391805 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:23.402785 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:23.402787 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.402794 LLDP, length 82 [|LLDP] 19:07:23.402804 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:23.402805 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 125b 13aa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:23.402806 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:23.402807 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:23.402808 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:23.402810 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:23.402811 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.402818 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:23.402819 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:23.402820 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:23.411030 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:23.411032 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.411039 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.411040 LLDP, length 82 [|LLDP] 19:07:23.411050 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:23.411050 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1261 6071 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:23.411052 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:23.411053 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:23.411055 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:23.422039 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:23.422040 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.422047 LLDP, length 82 [|LLDP] 19:07:23.422056 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:23.422057 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1269 c6d7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:23.422059 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:23.422060 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:23.422061 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.422065 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:23.433062 LLDP, length 82 [|LLDP] 19:07:23.433076 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:23.433076 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1272 2d3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:23.433079 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:23.433080 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:23.433081 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:23.433082 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:23.433083 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:23.433084 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.433096 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.433097 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:23.433099 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:23.433101 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:23.433102 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:23.433103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:26.999848 LLDP, length 230: dentlab-infra2 tcpdump: verbose output suppressed, use -v or -vv for full protocol decode listening on swp33, link-type EN10MB (Ethernet), capture size 262144 bytes 7805 packets captured 7805 packets received by filter 0 packets dropped by kernel INFO DENT:Logger.py:84 [DENT infrastructure 2] Ran timeout --preserve-status 15 tcpdump -i swp33 -n on infra2 with rc 0 and out 19:07:17.443725 LLDP, length 82 [|LLDP] 19:07:17.443743 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:17.443744 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0098 933f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:17.443747 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:17.443748 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:17.443749 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:17.443751 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:17.443752 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:17.443753 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.443786 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.443788 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.443790 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.443799 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:17.443802 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:17.443803 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:17.451901 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:17.451903 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.451920 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.451921 LLDP, length 82 [|LLDP] 19:07:17.451931 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:17.451932 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 009e e00c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:17.451933 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:17.451935 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:17.451936 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:17.451938 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:17.451943 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:17.451944 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.451945 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.451946 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:17.451946 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:17.462915 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:17.462917 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.462928 LLDP, length 82 [|LLDP] 19:07:17.462937 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:17.462938 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00a7 4672 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:17.462939 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:17.462941 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:17.462942 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:17.462943 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:17.462944 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.462951 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:17.462953 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.462954 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.462955 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:17.462956 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:17.471170 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:17.471172 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.471188 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.471189 LLDP, length 82 [|LLDP] 19:07:17.471203 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:17.471204 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00ad 933f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:17.471205 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:17.471207 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:17.471208 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:17.471210 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:17.471211 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:17.471212 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.471213 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.471214 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:17.471215 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:17.482171 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:17.482173 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.482189 LLDP, length 82 [|LLDP] 19:07:17.482199 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:17.482200 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00b5 f9a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:17.482202 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:17.482203 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:17.482204 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:17.482205 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:17.482206 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.482214 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:17.482216 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.482217 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.482218 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:17.482220 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:17.493188 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:17.493190 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.493205 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.493206 LLDP, length 82 [|LLDP] 19:07:17.493217 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:17.493218 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00be 600c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:17.493220 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:17.493221 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:17.493222 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:17.493223 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:17.493224 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:17.493225 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.493226 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.493227 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:17.493229 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:17.501447 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:17.501449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.501464 LLDP, length 82 [|LLDP] 19:07:17.501473 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:17.501474 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00c4 acdf 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:17.501476 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:17.501477 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:17.501478 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:17.501479 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:17.501480 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.501488 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:17.501490 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.501491 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.501492 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:17.501493 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:17.512460 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:17.512463 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.512472 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.512474 LLDP, length 82 [|LLDP] 19:07:17.512484 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:17.512485 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00cd 133f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:17.512486 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:17.512488 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:17.512489 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:17.512490 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:17.512492 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:17.512493 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.512494 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.523454 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:17.523456 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.523464 LLDP, length 82 [|LLDP] 19:07:17.523474 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:17.523484 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00d5 79a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:17.523486 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:17.523487 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:17.523488 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.523492 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:17.531768 LLDP, length 82 [|LLDP] 19:07:17.531782 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:17.531783 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00db c672 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:17.531786 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:17.531787 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.531798 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.531799 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:17.531802 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:17.531804 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:17.542732 LLDP, length 82 [|LLDP] 19:07:17.542744 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:17.542745 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00e4 2cd8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:17.542747 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:17.542748 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:17.542749 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:17.542750 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.542762 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.542764 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:17.550993 LLDP, length 82 [|LLDP] 19:07:17.551012 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:17.551013 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00ea 79a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:17.551015 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:17.551016 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:17.551017 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:17.551018 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.551032 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.551033 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:17.551035 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:17.551036 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.551037 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.551039 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:17.551040 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:17.551041 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:17.562001 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:17.562002 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.562017 LLDP, length 82 [|LLDP] 19:07:17.562028 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:17.562028 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00f2 e00c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:17.562030 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:17.562031 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:17.562032 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:17.562034 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:17.562035 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.562042 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:17.562044 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.562045 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.562046 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:17.562047 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:17.573001 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:17.573003 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.573018 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.573020 LLDP, length 82 [|LLDP] 19:07:17.573030 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:17.573031 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 00fb 4672 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:17.573033 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:17.573034 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:17.573035 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:17.573037 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:17.573038 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:17.573039 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.573040 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.573041 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:17.573042 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:17.581260 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:17.581262 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.581277 LLDP, length 82 [|LLDP] 19:07:17.581287 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:17.581288 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0101 9340 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:17.581290 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:17.581291 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:17.581292 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:17.581293 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:17.581294 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.581301 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:17.581303 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.581304 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.581305 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:17.581306 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:17.592273 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:17.592274 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.592288 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.592289 LLDP, length 82 [|LLDP] 19:07:17.592301 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:17.592302 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0109 f9a6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:17.592303 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:17.592305 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:17.592306 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:17.592307 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:17.592308 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:17.592309 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.592310 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.592311 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:17.592312 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:17.603278 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:17.603280 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.603294 LLDP, length 82 [|LLDP] 19:07:17.603304 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:17.603305 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0112 600d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:17.603307 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:17.603308 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:17.603309 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:17.603310 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:17.603312 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.603319 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:17.603321 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.603321 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.603323 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:17.603324 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:17.611545 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:17.611546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.611554 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.611555 LLDP, length 82 [|LLDP] 19:07:17.611566 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:17.611567 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0118 acda 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:17.611568 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:17.611570 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:17.611571 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:17.611572 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:17.611573 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:17.611574 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.611575 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.622543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:17.622544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.622551 LLDP, length 82 [|LLDP] 19:07:17.622562 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:17.622563 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0121 1340 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:17.622564 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:17.622565 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:17.622566 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.622570 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:17.633552 LLDP, length 82 [|LLDP] 19:07:17.633560 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:17.633561 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0129 79a7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:17.633563 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:17.633564 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.633572 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.633573 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:17.633576 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:17.633577 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:17.641808 LLDP, length 82 [|LLDP] 19:07:17.641819 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:17.641820 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 012f c673 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:17.641822 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:17.641823 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:17.641824 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:17.641825 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.641834 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.641836 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:17.652832 LLDP, length 82 [|LLDP] 19:07:17.652845 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:17.652846 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0138 2cd9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:17.652848 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:17.652849 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:17.652850 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:17.652851 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.652862 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.652863 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:17.652866 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:17.652867 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.652868 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.652869 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:17.652870 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:17.652871 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:17.661080 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:17.661081 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.661095 LLDP, length 82 [|LLDP] 19:07:17.661105 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:17.661106 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 013e 79a6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:17.661108 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:17.661109 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:17.661110 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:17.661111 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:17.661112 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.661120 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:17.661122 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.661123 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.661124 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:17.661125 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:17.672109 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:17.672111 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.672124 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.672125 LLDP, length 82 [|LLDP] 19:07:17.672136 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:17.672137 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0146 e00c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:17.672139 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:17.672140 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:17.672142 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:17.672143 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:17.672144 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:17.672145 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.672146 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.672147 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:17.672148 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:17.683107 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:17.683109 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.683123 LLDP, length 82 [|LLDP] 19:07:17.683133 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:17.683134 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 014f 4672 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:17.683135 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:17.683136 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:17.683137 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:17.683138 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:17.683140 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.683146 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:17.683148 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.683150 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.683150 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:17.683151 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:17.691357 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:17.691358 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.691374 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.691375 LLDP, length 82 [|LLDP] 19:07:17.691386 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:17.691387 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0155 933f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:17.691389 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:17.691390 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:17.691391 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:17.691393 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:17.691394 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:17.691395 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.691396 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.691397 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:17.691398 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:17.702368 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:17.702370 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.702385 LLDP, length 82 [|LLDP] 19:07:17.702396 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:17.702396 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 015d f9a6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:17.702398 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:17.702399 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:17.702400 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:17.702401 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:17.702403 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.702410 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:17.702412 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.702413 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.702414 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:17.702415 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:17.713388 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:17.713390 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.713397 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.713399 LLDP, length 82 [|LLDP] 19:07:17.713410 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:17.713411 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0166 600c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:17.713413 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:17.713414 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:17.713416 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:17.713417 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:17.713418 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:17.713419 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.713420 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.721630 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:17.721632 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.721640 LLDP, length 82 [|LLDP] 19:07:17.721650 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:17.721651 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 016c acd8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:17.721652 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:17.721653 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:17.721654 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.721659 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:17.732641 LLDP, length 82 [|LLDP] 19:07:17.732650 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:17.732650 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0175 133f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:17.732652 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:17.732653 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.732661 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.732663 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:17.732665 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:17.732667 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:17.740900 LLDP, length 82 [|LLDP] 19:07:17.740908 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:17.740909 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 017b 600c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:17.740912 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:17.740913 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:17.740914 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:17.740915 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.740924 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.740925 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:17.751918 LLDP, length 82 [|LLDP] 19:07:17.751932 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:17.751933 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0183 c67a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:17.751935 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:17.751936 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:17.751937 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:17.751939 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.751949 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.751950 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:17.751953 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:17.751954 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.751956 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.751957 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:17.751958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:17.751960 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:17.762924 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:17.762926 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.762940 LLDP, length 82 [|LLDP] 19:07:17.762952 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:17.762953 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 018c 2cd9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:17.762955 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:17.762956 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:17.762958 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:17.762959 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:17.762960 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.762968 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:17.762970 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.762971 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.762972 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:17.762973 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:17.771181 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:17.771183 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.771196 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.771198 LLDP, length 82 [|LLDP] 19:07:17.771208 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:17.771209 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0192 79a6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:17.771211 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:17.771212 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:17.771214 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:17.771215 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:17.771216 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:17.771217 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.771218 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.771219 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:17.771220 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:17.782191 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:17.782193 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.782208 LLDP, length 82 [|LLDP] 19:07:17.782218 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:17.782219 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 019a e00d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:17.782220 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:17.782222 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:17.782223 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:17.782224 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:17.782225 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.782233 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:17.782235 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.782236 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.782237 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:17.782238 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:17.793200 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:17.793202 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.793216 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.793217 LLDP, length 82 [|LLDP] 19:07:17.793228 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:17.793229 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01a3 4673 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:17.793230 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:17.793231 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:17.793233 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:17.793234 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:17.793235 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:17.793237 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.793238 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.793239 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:17.793239 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:17.801456 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:17.801459 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.801472 LLDP, length 82 [|LLDP] 19:07:17.801482 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:17.801483 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01a9 9340 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:17.801485 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:17.801486 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:17.801488 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:17.801489 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:17.801490 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.801498 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:17.801500 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.801501 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.801502 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:17.801503 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:17.812478 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:17.812480 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.812488 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.812489 LLDP, length 82 [|LLDP] 19:07:17.812501 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:17.812502 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01b1 f9a6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:17.812504 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:17.812505 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:17.812506 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:17.812507 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:17.812508 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:17.812509 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.812510 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.823482 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:17.823484 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.823493 LLDP, length 82 [|LLDP] 19:07:17.823506 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:17.823507 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01ba 600d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:17.823508 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:17.823510 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:17.823511 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.823515 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:17.831736 LLDP, length 82 [|LLDP] 19:07:17.831748 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:17.831749 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01c0 acda 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:17.831751 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:17.831753 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.831762 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.831763 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:17.831765 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:17.831767 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:17.842740 LLDP, length 82 [|LLDP] 19:07:17.842750 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:17.842751 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01c9 1340 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:17.842754 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:17.842755 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:17.842756 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:17.842757 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.842767 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.842768 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:17.851006 LLDP, length 82 [|LLDP] 19:07:17.851020 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:17.851020 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01cf 600d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:17.851023 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:17.851024 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:17.851025 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:17.851026 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.851037 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.851038 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:17.851040 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:17.851041 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.851043 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.851044 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:17.851045 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:17.851046 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:17.862017 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:17.862020 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.862035 LLDP, length 82 [|LLDP] 19:07:17.862045 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:17.862046 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01d7 c673 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:17.862048 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:17.862049 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:17.862051 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:17.862052 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:17.862053 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.862061 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:17.862063 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.862064 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.862065 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:17.862066 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:17.873033 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:17.873035 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.873051 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.873052 LLDP, length 82 [|LLDP] 19:07:17.873064 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:17.873066 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01e0 2cd9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:17.873067 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:17.873069 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:17.873070 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:17.873072 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:17.873073 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:17.873074 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.873074 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.873075 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:17.873077 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:17.881283 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:17.881285 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.881301 LLDP, length 82 [|LLDP] 19:07:17.881311 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:17.881312 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01e6 79a6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:17.881313 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:17.881315 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:17.881316 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:17.881317 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:17.881318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.881325 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:17.881328 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.881329 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.881330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:17.881331 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:17.892300 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:17.892308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.892319 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.892320 LLDP, length 82 [|LLDP] 19:07:17.892333 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:17.892334 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01ee e00c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:17.892335 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:17.892336 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:17.892338 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:17.892339 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:17.892340 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:17.892341 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.892342 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.892343 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:17.892344 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:17.903319 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:17.903321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.903334 LLDP, length 82 [|LLDP] 19:07:17.903346 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:17.903347 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01f7 4673 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:17.903349 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:17.903350 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:17.903351 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:17.903352 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:17.903353 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.903361 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:17.903363 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.903364 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.903365 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:17.903366 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:17.911576 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:17.911578 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.911587 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.911588 LLDP, length 82 [|LLDP] 19:07:17.911600 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:17.911601 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 01fd 933f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:17.911603 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:17.911604 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:17.911606 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:17.911607 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:17.911608 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:17.911610 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.911610 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.922568 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:17.922570 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.922579 LLDP, length 82 [|LLDP] 19:07:17.922590 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:17.922591 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0205 f9a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:17.922593 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:17.922594 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:17.922599 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.922603 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:17.933583 LLDP, length 82 [|LLDP] 19:07:17.933594 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:17.933595 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 020e 600c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:17.933597 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:17.933598 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.933607 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.933608 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:17.933611 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:17.933612 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:17.941833 LLDP, length 82 [|LLDP] 19:07:17.941843 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:17.941844 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0214 acd9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:17.941846 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:17.941847 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:17.941848 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:17.941849 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.941861 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.941863 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:17.952859 LLDP, length 82 [|LLDP] 19:07:17.952876 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:17.952877 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 021d 133f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:17.952880 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:17.952881 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:17.952882 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:17.952883 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.952898 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.952899 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:17.952902 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:17.952903 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.952904 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.952905 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:17.952907 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:17.952908 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:17.961110 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:17.961113 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.961128 LLDP, length 82 [|LLDP] 19:07:17.961139 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:17.961140 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0223 600b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:17.961142 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:17.961143 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:17.961144 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:17.961146 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:17.961147 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.961158 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:17.961161 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.961162 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.961163 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:17.961164 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:17.972119 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:17.972121 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.972136 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.972137 LLDP, length 82 [|LLDP] 19:07:17.972149 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:17.972150 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 022b c672 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:17.972152 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:17.972153 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:17.972154 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:17.972156 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:17.972156 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:17.972157 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.972158 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.972159 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:17.972160 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:17.983126 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:17.983128 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.983144 LLDP, length 82 [|LLDP] 19:07:17.983154 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:17.983155 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0234 2cd9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:17.983157 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:17.983162 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:17.983163 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:17.983164 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:17.983166 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.983173 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:17.983175 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.983176 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.983177 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:17.983178 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:17.991385 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:17.991387 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.991404 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:17.991405 LLDP, length 82 [|LLDP] 19:07:17.991415 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:17.991416 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 023a 79a6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:17.991418 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:17.991419 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:17.991420 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:17.991422 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:17.991423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:17.991424 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.991425 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:17.991426 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:17.991427 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:18.002401 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.002410 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.002419 LLDP, length 82 [|LLDP] 19:07:18.002432 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.002433 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0242 e013 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.002435 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.002436 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.002437 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.002438 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.002439 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.002447 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.002449 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.002450 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.002451 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:18.002453 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:18.013412 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.013414 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.013422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.013423 LLDP, length 82 [|LLDP] 19:07:18.013434 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.013435 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 024b 4672 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.013436 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.013437 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.013439 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.013440 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.013441 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.013442 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.013443 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.021663 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.021664 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.021673 LLDP, length 82 [|LLDP] 19:07:18.021685 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.021686 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0251 933f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.021687 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.021688 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.021689 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.021694 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.032669 LLDP, length 82 [|LLDP] 19:07:18.032680 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.032681 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0259 f9a6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.032683 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.032684 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.032694 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.032695 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.032698 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.032699 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.040920 LLDP, length 82 [|LLDP] 19:07:18.040930 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.040930 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0260 4677 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.040933 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.040934 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.040935 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.040936 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.040945 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.040947 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.051938 LLDP, length 82 [|LLDP] 19:07:18.051951 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.051952 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0268 acd9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.051955 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.051956 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.051957 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.051958 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.051971 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.051972 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.051975 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.051976 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.051977 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.051979 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.051981 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:18.051982 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:18.062947 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.062949 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.062963 LLDP, length 82 [|LLDP] 19:07:18.062973 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.062974 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0271 1340 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.062975 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.062977 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.062978 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.062979 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.062980 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.062987 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.062989 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.062990 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.062991 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:18.062992 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:18.071200 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.071202 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.071216 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.071217 LLDP, length 82 [|LLDP] 19:07:18.071227 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.071229 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0277 600d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.071230 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.071231 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.071233 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.071234 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.071235 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.071236 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.071237 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.071239 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:18.071240 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:18.082212 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.082214 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.082228 LLDP, length 82 [|LLDP] 19:07:18.082238 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.082239 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 027f c673 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.082241 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.082242 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.082243 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.082244 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.082245 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.082252 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.082255 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.082255 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.082256 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:18.082257 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:18.093220 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.093222 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.093235 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.093236 LLDP, length 82 [|LLDP] 19:07:18.093246 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.093247 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0288 2cd9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.093249 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.093250 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.093251 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.093253 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.093254 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.093255 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.093256 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.093257 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:18.093258 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:18.101516 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.101518 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.101538 LLDP, length 82 [|LLDP] 19:07:18.101552 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.101553 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 028e 79a6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.101556 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.101557 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.101559 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.101560 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.101561 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.101569 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.101572 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.101573 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.101574 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:18.101575 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:18.112603 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.112608 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.112653 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.112655 LLDP, length 82 [|LLDP] 19:07:18.112684 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.112685 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0296 e00c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.112687 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.112689 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.112692 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.112694 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.112695 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.112696 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.112698 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.123538 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.123540 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.123557 LLDP, length 82 [|LLDP] 19:07:18.123572 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.123573 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 029f 4672 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.123575 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.123576 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.123577 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.123583 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.131762 LLDP, length 82 [|LLDP] 19:07:18.131773 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.131774 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02a5 933f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.131776 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.131777 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.131787 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.131788 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.131791 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.131792 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.142768 LLDP, length 82 [|LLDP] 19:07:18.142780 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.142781 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02ad f9a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.142783 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.142785 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.142786 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.142787 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.142798 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.142800 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.151047 LLDP, length 82 [|LLDP] 19:07:18.151062 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.151063 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02b4 4672 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.151065 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.151066 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.151067 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.151069 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.151080 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.151082 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.151084 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.151085 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.151086 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.151088 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.151089 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:18.151090 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:18.162041 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.162043 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.162057 LLDP, length 82 [|LLDP] 19:07:18.162067 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.162068 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02bc acd8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.162069 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.162070 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.162072 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.162073 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.162074 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.162081 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.162084 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.162085 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.162085 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:18.162086 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:18.173043 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.173045 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.173052 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.173053 LLDP, length 82 [|LLDP] 19:07:18.173064 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.173065 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02c5 133f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.173067 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.173068 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.173070 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.173071 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.173072 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.173074 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.173074 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.173075 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:18.173076 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:18.181299 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.181301 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.181315 LLDP, length 82 [|LLDP] 19:07:18.181324 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.181325 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02cb 600c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.181327 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.181328 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.181330 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.181331 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.181332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.181339 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.181340 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.181342 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.181343 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:18.181344 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:18.192308 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.192310 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.192323 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.192324 LLDP, length 82 [|LLDP] 19:07:18.192334 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.192334 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02d3 c672 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.192336 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.192337 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.192338 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.192340 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.192341 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.192342 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.192343 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.192344 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:18.192345 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:18.203319 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.203321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.203335 LLDP, length 82 [|LLDP] 19:07:18.203344 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.203345 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02dc 2cd8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.203347 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.203348 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.203349 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.203350 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.203352 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.203359 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.203361 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.203362 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.203363 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:18.203364 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:18.211584 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.211586 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.211594 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.211595 LLDP, length 82 [|LLDP] 19:07:18.211605 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.211606 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02e2 79a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.211607 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.211608 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.211610 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.211611 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.211612 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.211613 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.211614 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.222586 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.222588 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.222597 LLDP, length 82 [|LLDP] 19:07:18.222608 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.222609 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02ea e00c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.222610 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.222611 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.222612 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.222616 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.230843 LLDP, length 82 [|LLDP] 19:07:18.230852 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.230853 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02f1 2cd8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.230856 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.230857 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.230864 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.230865 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.230867 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.230869 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.241849 LLDP, length 82 [|LLDP] 19:07:18.241858 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.241859 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 02f9 933f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.241861 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.241862 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.241863 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.241864 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.241873 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.241874 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.252877 LLDP, length 82 [|LLDP] 19:07:18.252893 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.252895 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0301 f9ac 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.252897 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.252899 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.252900 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.252901 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.252913 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.252915 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.252917 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.252919 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.252920 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.252921 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.252924 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:18.252925 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:18.261121 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.261123 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.261136 LLDP, length 82 [|LLDP] 19:07:18.261145 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.261146 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0308 4672 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.261148 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.261149 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.261150 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.261152 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.261153 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.261160 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.261162 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.261163 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.261163 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:18.261164 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:18.272132 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.272133 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.272147 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.272148 LLDP, length 82 [|LLDP] 19:07:18.272157 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.272158 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0310 acd9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.272160 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.272161 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.272163 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.272164 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.272165 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.272166 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.272167 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.272168 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:18.272170 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:18.283144 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.283146 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.283159 LLDP, length 82 [|LLDP] 19:07:18.283168 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.283169 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0319 133f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.283170 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.283172 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.283173 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.283174 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.283175 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.283181 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.283184 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.283184 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.283185 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:18.283187 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:18.291397 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.291399 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.291413 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.291414 LLDP, length 82 [|LLDP] 19:07:18.291423 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.291424 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 031f 600f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.291425 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.291427 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.291428 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.291430 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.291431 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.291432 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.291433 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.291434 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:18.291435 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:18.302410 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.302412 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.302426 LLDP, length 82 [|LLDP] 19:07:18.302435 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.302435 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0327 c673 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.302437 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.302439 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.302440 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.302441 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.302442 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.302449 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.302451 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.302452 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.302453 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:18.302454 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:18.313427 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.313429 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.313436 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.313437 LLDP, length 82 [|LLDP] 19:07:18.313447 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.313448 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0330 2cd9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.313449 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.313450 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.313452 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.313453 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.313454 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.313455 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.313456 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.321671 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.321672 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.321679 LLDP, length 82 [|LLDP] 19:07:18.321689 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.321690 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0336 79a6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.321691 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.321692 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.321694 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.321697 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.332682 LLDP, length 82 [|LLDP] 19:07:18.332690 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.332691 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 033e e00d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.332693 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.332694 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.332701 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.332703 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.332705 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.332707 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.340941 LLDP, length 82 [|LLDP] 19:07:18.340950 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.340951 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0345 2cda 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.340953 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.340954 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.340955 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.340956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.340964 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.340965 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.351954 LLDP, length 82 [|LLDP] 19:07:18.351967 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.351968 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 034d 9340 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.351970 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.351971 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.351972 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.351973 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.351982 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.351983 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.351986 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.351987 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.351988 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.351990 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.351992 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:18.351993 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:18.362965 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.362966 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.362979 LLDP, length 82 [|LLDP] 19:07:18.362987 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.362988 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0355 f9a7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.362989 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.362991 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.362992 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.362993 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.362994 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.363001 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.363003 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.363004 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.363005 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:18.363006 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:18.371234 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.371236 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.371254 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.371256 LLDP, length 82 [|LLDP] 19:07:18.371267 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.371268 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 035c 467a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.371270 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.371271 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.371273 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.371274 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.371275 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.371276 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.371277 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.371278 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:18.371280 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:18.382239 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.382241 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.382255 LLDP, length 82 [|LLDP] 19:07:18.382266 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.382267 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0364 acd9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.382269 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.382270 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.382271 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.382273 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.382274 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.382281 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.382283 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.382284 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.382285 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:18.382286 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:18.393244 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.393246 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.393260 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.393261 LLDP, length 82 [|LLDP] 19:07:18.393272 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.393273 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 036d 133f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.393274 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.393276 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.393277 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.393278 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.393279 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.393281 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.393282 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.393283 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:18.393284 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:18.401538 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.401546 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.401558 LLDP, length 82 [|LLDP] 19:07:18.401574 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.401575 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0373 600c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.401577 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.401578 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.401579 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.401580 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.401581 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.401590 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.401592 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.401594 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.401595 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:18.401596 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:18.412538 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.412539 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.412549 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.412550 LLDP, length 82 [|LLDP] 19:07:18.412564 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.412565 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 037b c672 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.412566 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.412568 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.412569 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.412571 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.412572 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.412573 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.412574 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.423523 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.423525 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.423534 LLDP, length 82 [|LLDP] 19:07:18.423544 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.423545 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0384 2cd9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.423547 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.423548 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.423549 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.423553 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.431783 LLDP, length 82 [|LLDP] 19:07:18.431796 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.431797 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 038a 79a6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.431799 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.431800 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.431813 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.431814 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.431817 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.431818 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.442788 LLDP, length 82 [|LLDP] 19:07:18.442798 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.442799 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0392 e00b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.442801 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.442802 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.442803 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.442804 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.442814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.442815 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.451058 LLDP, length 82 [|LLDP] 19:07:18.451073 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.451074 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0399 2cd8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.451076 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.451078 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.451079 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.451080 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.451091 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.451093 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.451095 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.451097 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.451098 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.451100 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.451102 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:18.451103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:18.462058 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.462060 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.462074 LLDP, length 82 [|LLDP] 19:07:18.462086 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.462087 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03a1 933f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.462088 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.462090 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.462091 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.462092 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.462093 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.462100 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.462102 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.462103 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.462104 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:18.462105 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:18.473071 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.473074 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.473089 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.473090 LLDP, length 82 [|LLDP] 19:07:18.473101 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.473102 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03a9 f9a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.473103 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.473105 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.473106 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.473107 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.473109 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.473109 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.473110 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.473111 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:18.473112 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:18.481324 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.481326 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.481340 LLDP, length 82 [|LLDP] 19:07:18.481350 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.481351 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03b0 4672 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.481352 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.481353 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.481354 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.481356 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.481357 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.481364 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.481366 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.481367 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.481368 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:18.481369 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:18.492335 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.492337 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.492351 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.492352 LLDP, length 82 [|LLDP] 19:07:18.492363 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.492364 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03b8 acd9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.492365 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.492367 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.492368 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.492369 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.492371 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.492372 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.492373 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.492374 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:18.492375 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:18.503342 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.503344 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.503359 LLDP, length 82 [|LLDP] 19:07:18.503368 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.503369 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03c1 1346 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.503371 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.503372 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.503373 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.503375 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.503376 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.503383 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.503385 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.503386 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.503388 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:18.503389 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:18.511615 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.511617 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.511625 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.511626 LLDP, length 82 [|LLDP] 19:07:18.511636 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.511637 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03c7 600c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.511638 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.511639 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.511641 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.511642 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.511643 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.511644 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.511645 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.522623 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.522625 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.522636 LLDP, length 82 [|LLDP] 19:07:18.522648 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.522649 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03cf c672 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.522651 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.522652 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.522653 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.522657 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.530872 LLDP, length 82 [|LLDP] 19:07:18.530883 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.530884 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03d6 1340 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.530886 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.530887 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.530897 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.530899 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.530901 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.530903 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.541876 LLDP, length 82 [|LLDP] 19:07:18.541885 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.541886 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03de 79a8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.541889 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.541890 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.541891 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.541893 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.541903 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.541905 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.552894 LLDP, length 82 [|LLDP] 19:07:18.552908 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.552909 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03e6 e00c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.552912 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.552913 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.552914 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.552915 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.552927 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.552928 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.552931 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.552932 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.552933 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.552935 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.552936 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:18.552937 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:18.561148 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.561150 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.561165 LLDP, length 82 [|LLDP] 19:07:18.561175 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.561176 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03ed 2cd9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.561178 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.561179 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.561180 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.561181 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.561182 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.561190 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.561192 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.561194 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.561195 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:18.561195 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:18.572164 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.572166 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.572181 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.572182 LLDP, length 82 [|LLDP] 19:07:18.572193 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.572194 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03f5 9340 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.572196 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.572197 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.572198 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.572200 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.572201 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.572202 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.572203 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.572204 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:18.572205 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:18.583176 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.583178 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.583189 LLDP, length 82 [|LLDP] 19:07:18.583198 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.583199 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 03fd f9a6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.583201 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.583202 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.583207 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.583208 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.583209 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.583217 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.583219 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.583220 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.583221 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:18.583222 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:18.591431 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.591433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.591448 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.591450 LLDP, length 82 [|LLDP] 19:07:18.591461 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.591462 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0404 4673 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.591464 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.591465 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.591467 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.591468 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.591469 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.591470 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.591471 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.591472 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:18.591473 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:18.602437 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.602439 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.602454 LLDP, length 82 [|LLDP] 19:07:18.602464 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.602465 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 040c acda 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.602467 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.602468 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.602469 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.602470 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.602472 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.602479 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.602481 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.602482 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.602483 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:18.602484 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:18.613449 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.613451 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.613460 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.613461 LLDP, length 82 [|LLDP] 19:07:18.613471 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.613472 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0415 1340 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.613474 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.613475 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.613477 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.613478 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.613479 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.613480 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.613481 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.621699 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.621701 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.621709 LLDP, length 82 [|LLDP] 19:07:18.621718 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.621719 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 041b 6015 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.621721 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.621722 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.621723 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.621727 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.632705 LLDP, length 82 [|LLDP] 19:07:18.632716 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.632717 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0423 c674 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.632719 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.632720 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.632728 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.632729 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.632731 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.632733 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.640963 LLDP, length 82 [|LLDP] 19:07:18.640973 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.640973 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 042a 1340 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.640976 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.640977 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.640978 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.640979 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.640988 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.640990 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.651984 LLDP, length 82 [|LLDP] 19:07:18.651997 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.651998 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0432 79a6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.652001 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.652002 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.652003 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.652004 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.652016 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.652017 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.652020 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.652021 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.652022 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.652024 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.652026 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:18.652027 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:18.662989 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.662992 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.663008 LLDP, length 82 [|LLDP] 19:07:18.663019 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.663020 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 043a e00d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.663021 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.663023 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.663024 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.663025 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.663027 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.663033 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.663036 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.663037 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.663038 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:18.663039 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:18.671243 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.671245 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.671258 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.671259 LLDP, length 82 [|LLDP] 19:07:18.671271 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.671272 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0441 2cd9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.671273 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.671274 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.671276 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.671277 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.671278 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.671279 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.671280 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.671281 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:18.671283 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:18.682254 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.682256 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.682270 LLDP, length 82 [|LLDP] 19:07:18.682280 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.682281 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0449 933f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.682282 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.682283 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.682285 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.682286 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.682287 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.682294 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.682296 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.682297 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.682298 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:18.682299 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:18.693272 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.693274 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.693290 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.693291 LLDP, length 82 [|LLDP] 19:07:18.693303 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.693304 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0451 f9a6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.693305 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.693306 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.693308 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.693309 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.693310 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.693311 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.693312 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.693313 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:18.693314 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:18.701527 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.701529 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.701543 LLDP, length 82 [|LLDP] 19:07:18.701554 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.701555 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0458 4672 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.701557 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.701558 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.701559 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.701560 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.701562 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.701569 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.701571 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.701572 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.701573 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:18.701573 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:18.712550 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.712551 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.712560 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.712561 LLDP, length 82 [|LLDP] 19:07:18.712571 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.712572 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0460 acd8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.712574 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.712575 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.712576 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.712577 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.712578 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.712579 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.712580 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.723539 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.723541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.723549 LLDP, length 82 [|LLDP] 19:07:18.723558 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.723559 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0469 133e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.723561 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.723562 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.723563 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.723567 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.731791 LLDP, length 82 [|LLDP] 19:07:18.731802 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.731803 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 046f 600c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.731805 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.731807 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.731815 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.731816 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.731819 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.731821 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.742807 LLDP, length 82 [|LLDP] 19:07:18.742817 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.742818 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0477 c672 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.742821 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.742822 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.742823 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.742825 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.742835 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.742836 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.751068 LLDP, length 82 [|LLDP] 19:07:18.751083 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.751084 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 047e 133e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.751086 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.751087 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.751088 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.751090 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.751100 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.751101 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.751104 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.751105 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.751106 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.751108 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.751110 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:18.751111 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:18.762076 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.762078 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.762092 LLDP, length 82 [|LLDP] 19:07:18.762103 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.762104 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0486 79a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.762105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.762107 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.762108 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.762109 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.762110 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.762118 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.762120 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.762121 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.762122 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:18.762123 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:18.773088 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.773089 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.773103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.773104 LLDP, length 82 [|LLDP] 19:07:18.773115 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.773116 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 048e e00c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.773117 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.773119 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.773120 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.773122 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.773123 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.773124 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.773125 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.773126 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:18.773127 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:18.781346 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.781348 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.781355 LLDP, length 82 [|LLDP] 19:07:18.781365 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.781366 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0495 2cd9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.781367 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.781369 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.781370 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.781371 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.781372 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.781379 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.781381 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.781382 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.781383 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:18.781384 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:18.792357 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.792359 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.792373 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.792374 LLDP, length 82 [|LLDP] 19:07:18.792385 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.792386 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 049d 933f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.792387 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.792388 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.792390 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.792391 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.792392 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.792394 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.792395 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.792396 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:18.792398 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:18.803364 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.803366 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.803380 LLDP, length 82 [|LLDP] 19:07:18.803389 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.803390 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04a5 f9a6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.803392 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.803393 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.803394 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.803395 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.803396 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.803404 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.803405 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.803406 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.803407 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:18.803408 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:18.811629 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.811631 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.811638 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.811640 LLDP, length 82 [|LLDP] 19:07:18.811658 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.811659 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04ac 4672 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.811660 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.811661 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.811663 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.811664 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.811665 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.811666 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.811667 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.822638 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.822640 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.822650 LLDP, length 82 [|LLDP] 19:07:18.822662 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.822663 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04b4 acd9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.822665 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.822666 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.822667 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.822672 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.830889 LLDP, length 82 [|LLDP] 19:07:18.830900 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.830901 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04ba f9a6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.830904 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.830905 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.830914 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.830915 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.830917 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.830919 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.841897 LLDP, length 82 [|LLDP] 19:07:18.841907 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.841908 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04c3 600c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.841910 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.841911 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.841912 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.841913 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.841922 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.841924 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.852913 LLDP, length 82 [|LLDP] 19:07:18.852927 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.852928 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04cb c673 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.852931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.852932 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.852934 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.852935 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.852945 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.852946 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.852948 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.852949 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.852950 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.852952 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.852953 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:18.852954 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:18.861166 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.861168 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.861181 LLDP, length 82 [|LLDP] 19:07:18.861190 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.861191 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04d2 1340 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.861193 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.861194 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.861195 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.861196 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.861198 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.861204 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.861207 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.861208 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.861209 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:18.861210 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:18.872185 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.872187 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.872202 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.872203 LLDP, length 82 [|LLDP] 19:07:18.872216 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.872217 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04da 79ae 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.872219 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.872220 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.872221 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.872222 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.872223 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.872224 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.872225 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.872227 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:18.872228 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:18.883191 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.883193 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.883207 LLDP, length 82 [|LLDP] 19:07:18.883218 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.883219 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04e2 e00d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.883221 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.883222 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.883223 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.883224 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.883226 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.883234 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.883235 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.883237 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.883237 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:18.883238 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:18.891447 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.891449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.891463 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.891464 LLDP, length 82 [|LLDP] 19:07:18.891475 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.891476 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04e9 2cda 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.891478 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.891479 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.891480 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.891482 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.891482 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.891483 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.891485 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.891485 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:18.891486 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:18.902458 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.902460 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.902475 LLDP, length 82 [|LLDP] 19:07:18.902487 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.902488 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04f1 9340 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.902490 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.902491 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.902493 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.902494 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.902495 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.902503 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.902504 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.902505 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.902506 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:18.902507 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:18.913476 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.913478 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.913486 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.913487 LLDP, length 82 [|LLDP] 19:07:18.913498 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.913499 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 04f9 f9a6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.913501 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.913502 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.913504 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.913505 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.913506 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.913508 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.913509 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.921718 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.921719 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.921727 LLDP, length 82 [|LLDP] 19:07:18.921737 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.921738 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0500 4673 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.921739 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.921740 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.921741 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.921746 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.932728 LLDP, length 82 [|LLDP] 19:07:18.932737 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.932738 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0508 acda 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.932741 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.932742 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.932750 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.932751 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.932754 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.932755 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.940988 LLDP, length 82 [|LLDP] 19:07:18.940998 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.940999 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 050e f9a6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.941001 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.941002 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.941003 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.941005 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.941016 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.941018 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.952003 LLDP, length 82 [|LLDP] 19:07:18.952017 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.952018 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0517 600c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.952020 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.952021 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.952022 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.952024 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.952034 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.952036 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.952038 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.952040 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.952041 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.952042 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.952044 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:18.952045 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:18.963009 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.963010 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.963024 LLDP, length 82 [|LLDP] 19:07:18.963034 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.963035 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 051f c672 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.963036 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.963038 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.963039 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.963040 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.963041 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.963048 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.963050 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.963051 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.963052 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:18.963053 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:18.971267 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.971269 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.971284 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.971285 LLDP, length 82 [|LLDP] 19:07:18.971296 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.971297 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0526 133f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.971299 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.971300 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.971302 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.971304 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.971304 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.971305 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.971306 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.971307 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:18.971308 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:18.982277 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.982279 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.982294 LLDP, length 82 [|LLDP] 19:07:18.982304 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.982305 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 052e 79a6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.982306 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.982308 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.982309 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.982310 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.982311 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.982318 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.982320 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.982321 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.982322 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:18.982323 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:18.993284 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:18.993285 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.993300 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:18.993301 LLDP, length 82 [|LLDP] 19:07:18.993311 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:18.993312 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0536 e00c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:18.993314 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:18.993315 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:18.993317 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:18.993318 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:18.993319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:18.993320 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.993322 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:18.993323 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:18.993324 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:19.001543 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.001544 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.001558 LLDP, length 82 [|LLDP] 19:07:19.001568 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.001569 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 053d 2cd8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.001571 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.001572 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.001573 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.001574 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.001576 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.001583 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.001585 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.001586 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.001587 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:19.001588 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:19.012562 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.012564 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.012572 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.012573 LLDP, length 82 [|LLDP] 19:07:19.012584 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.012585 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0545 933f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.012586 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.012588 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.012589 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.012591 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.012592 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.012593 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.012593 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.020806 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.020807 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.020815 LLDP, length 82 [|LLDP] 19:07:19.020825 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.020826 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 054b e00c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.020827 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.020829 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.020830 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.020834 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.031816 LLDP, length 82 [|LLDP] 19:07:19.031827 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.031827 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0554 4672 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.031830 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.031831 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.031840 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.031841 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.031843 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.031845 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.042829 LLDP, length 82 [|LLDP] 19:07:19.042837 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.042838 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 055c acd9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.042840 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.042841 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.042842 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.042843 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.042852 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.042853 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.051091 LLDP, length 82 [|LLDP] 19:07:19.051108 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.051109 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0562 f9a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.051112 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.051113 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.051114 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.051115 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.051126 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.051128 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.051130 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.051131 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.051132 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.051134 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.051135 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:19.051136 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:19.062098 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.062100 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.062112 LLDP, length 82 [|LLDP] 19:07:19.062123 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.062124 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 056b 600c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.062125 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.062127 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.062128 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.062129 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.062130 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.062138 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.062140 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.062141 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.062142 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:19.062143 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:19.073109 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.073110 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.073125 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.073126 LLDP, length 82 [|LLDP] 19:07:19.073137 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.073138 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0573 c672 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.073140 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.073141 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.073142 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.073144 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.073145 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.073146 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.073147 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.073149 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:19.073150 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:19.081365 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.081367 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.081381 LLDP, length 82 [|LLDP] 19:07:19.081391 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.081392 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 057a 133f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.081394 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.081395 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.081396 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.081397 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.081399 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.081406 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.081408 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.081409 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.081410 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:19.081411 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:19.092379 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.092381 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.092395 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.092396 LLDP, length 82 [|LLDP] 19:07:19.092407 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.092409 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0582 79a6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.092410 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.092411 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.092413 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.092414 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.092415 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.092416 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.092417 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.092418 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:19.092419 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:19.103385 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.103386 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.103401 LLDP, length 82 [|LLDP] 19:07:19.103410 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.103411 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 058a e00c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.103413 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.103414 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.103415 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.103416 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.103417 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.103424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.103427 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.103428 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.103428 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:19.103429 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:19.111660 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.111662 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.111670 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.111671 LLDP, length 82 [|LLDP] 19:07:19.111681 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.111682 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0591 2cd9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.111684 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.111685 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.111686 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.111688 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.111689 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.111690 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.111691 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.122645 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.122647 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.122655 LLDP, length 82 [|LLDP] 19:07:19.122664 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.122665 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0599 9347 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.122667 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.122668 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.122669 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.122673 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.130905 LLDP, length 82 [|LLDP] 19:07:19.130915 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.130916 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 059f e00d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.130919 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.130920 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.130927 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.130928 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.130930 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.130932 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.141922 LLDP, length 82 [|LLDP] 19:07:19.141932 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.141933 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05a8 4673 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.141935 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.141936 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.141938 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.141939 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.141948 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.141950 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.152934 LLDP, length 82 [|LLDP] 19:07:19.152948 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.152949 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05b0 acd9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.152951 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.152952 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.152953 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.152954 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.152965 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.152966 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.152968 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.152970 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.152971 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.152973 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.152974 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:19.152976 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:19.161187 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.161189 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.161202 LLDP, length 82 [|LLDP] 19:07:19.161213 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.161214 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05b6 f9ab 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.161215 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.161216 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.161217 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.161218 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.161219 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.161227 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.161228 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.161229 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.161230 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:19.161231 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:19.172198 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.172199 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.172213 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.172214 LLDP, length 82 [|LLDP] 19:07:19.172225 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.172226 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05bf 600d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.172228 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.172229 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.172231 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.172232 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.172233 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.172234 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.172235 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.172236 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:19.172237 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:19.183209 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.183210 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.183224 LLDP, length 82 [|LLDP] 19:07:19.183235 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.183236 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05c7 c673 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.183237 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.183238 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.183240 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.183241 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.183242 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.183249 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.183251 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.183252 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.183253 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:19.183254 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:19.191466 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.191467 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.191482 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.191483 LLDP, length 82 [|LLDP] 19:07:19.191493 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.191494 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05ce 133f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.191496 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.191497 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.191498 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.191500 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.191501 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.191502 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.191503 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.191504 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:19.191505 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:19.202476 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.202478 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.202493 LLDP, length 82 [|LLDP] 19:07:19.202502 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.202503 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05d6 79c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.202504 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.202506 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.202507 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.202508 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.202509 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.202516 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.202518 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.202519 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.202520 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:19.202521 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:19.213495 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.213496 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.213504 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.213505 LLDP, length 82 [|LLDP] 19:07:19.213516 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.213516 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05de e034 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.213518 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.213519 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.213521 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.213522 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.213523 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.213524 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.213525 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.221739 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.221741 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.221749 LLDP, length 82 [|LLDP] 19:07:19.221759 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.221761 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05e5 2cfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.221762 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.221764 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.221765 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.221769 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.232749 LLDP, length 82 [|LLDP] 19:07:19.232759 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.232760 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05ed 9360 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.232762 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.232763 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.232771 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.232772 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.232775 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.232776 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.241005 LLDP, length 82 [|LLDP] 19:07:19.241015 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.241015 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05f3 e02d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.241018 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.241019 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.241020 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.241021 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.241030 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.241032 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.252024 LLDP, length 82 [|LLDP] 19:07:19.252039 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.252040 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 05fc 4694 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.252044 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.252045 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.252046 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.252048 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.252058 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.252060 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.252062 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.252064 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.252065 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.252067 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.252069 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:19.252070 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:19.263031 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.263032 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.263046 LLDP, length 82 [|LLDP] 19:07:19.263055 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.263056 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0604 acf9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.263058 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.263059 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.263060 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.263061 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.263062 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.263070 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.263072 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.263073 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.263074 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:19.263074 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:19.271289 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.271291 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.271307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.271308 LLDP, length 82 [|LLDP] 19:07:19.271320 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.271321 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 060a f9c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.271322 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.271324 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.271325 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.271326 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.271327 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.271328 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.271330 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.271331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:19.271332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:19.282300 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.282302 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.282317 LLDP, length 82 [|LLDP] 19:07:19.282327 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.282328 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0613 602d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.282330 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.282331 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.282332 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.282333 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.282335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.282342 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.282344 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.282345 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.282345 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:19.282346 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:19.293307 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.293308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.293322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.293323 LLDP, length 82 [|LLDP] 19:07:19.293333 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.293334 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 061b c693 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.293336 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.293337 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.293338 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.293339 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.293341 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.293341 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.293342 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.293343 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:19.293344 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:19.301565 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.301567 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.301581 LLDP, length 82 [|LLDP] 19:07:19.301592 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.301593 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0622 1361 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.301595 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.301596 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.301597 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.301598 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.301599 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.301606 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.301609 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.301609 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.301610 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:19.301611 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:19.312583 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.312585 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.312593 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.312594 LLDP, length 82 [|LLDP] 19:07:19.312604 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.312605 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 062a 79c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.312607 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.312608 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.312609 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.312610 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.312611 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.312613 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.312614 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.320828 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.320830 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.320838 LLDP, length 82 [|LLDP] 19:07:19.320849 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.320850 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0630 c694 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.320852 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.320853 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.320854 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.320857 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.331840 LLDP, length 82 [|LLDP] 19:07:19.331850 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.331850 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0639 2cfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.331853 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.331854 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.331862 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.331863 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.331866 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.331867 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.342854 LLDP, length 82 [|LLDP] 19:07:19.342867 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.342868 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0641 9361 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.342871 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.342872 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.342873 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.342874 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.342875 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.342877 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.342888 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.342890 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.342891 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.342896 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.342898 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:19.342899 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:19.351109 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.351111 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.351126 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.351127 LLDP, length 82 [|LLDP] 19:07:19.351137 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.351138 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0647 e02e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.351140 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.351141 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.351142 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.351144 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.351145 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.351146 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.351147 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.351148 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:19.351149 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:19.362122 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.362124 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.362138 LLDP, length 82 [|LLDP] 19:07:19.362148 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.362149 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0650 4694 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.362151 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.362152 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.362153 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.362154 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.362155 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.362163 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.362165 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.362166 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.362167 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:19.362168 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:19.373131 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.373132 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.373147 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.373148 LLDP, length 82 [|LLDP] 19:07:19.373159 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.373160 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0658 acfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.373161 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.373162 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.373164 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.373165 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.373166 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.373167 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.373168 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.373169 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:19.373184 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:19.381419 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.381422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.381434 LLDP, length 82 [|LLDP] 19:07:19.381449 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.381449 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 065e f9c8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.381451 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.381452 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.381453 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.381454 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.381456 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.381464 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.381467 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.381468 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.381469 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:19.381470 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:19.392401 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.392403 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.392416 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.392417 LLDP, length 82 [|LLDP] 19:07:19.392429 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.392430 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0667 602e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.392432 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.392433 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.392434 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.392436 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.392437 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.392437 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.392438 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.392440 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:19.392440 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:19.403417 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.403419 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.403426 LLDP, length 82 [|LLDP] 19:07:19.403436 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.403437 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 066f c695 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.403439 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.403440 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.403441 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.403442 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.403443 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.403450 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.403452 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.403453 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.414531 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.414532 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.414541 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.414542 LLDP, length 82 [|LLDP] 19:07:19.414552 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.414553 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0676 1367 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.414554 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.414556 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.414557 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.422673 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.422674 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.422681 LLDP, length 82 [|LLDP] 19:07:19.422691 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.422692 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 067e 79c9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.422694 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.422695 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.422696 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.422700 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.430928 LLDP, length 82 [|LLDP] 19:07:19.430937 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.430938 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0684 c695 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.430941 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.430942 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.430949 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.430950 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.430953 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.430954 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.441926 LLDP, length 82 [|LLDP] 19:07:19.441936 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.441937 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 068d 2cfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.441939 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.441940 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.452957 LLDP, length 82 [|LLDP] 19:07:19.452966 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.452967 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0695 9362 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.452969 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.452970 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.452972 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.452973 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.452975 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.452986 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.452987 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.452990 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.452991 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.452992 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.452993 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:19.452995 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:19.461212 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.461214 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.461221 LLDP, length 82 [|LLDP] 19:07:19.461230 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.461232 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 069b e02e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.461233 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.461234 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.461235 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.461237 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.461238 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.461244 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.461246 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.461247 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.461248 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:19.461249 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:19.472217 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.472219 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.472232 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.472233 LLDP, length 82 [|LLDP] 19:07:19.472244 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.472245 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06a4 4694 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.472247 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.472248 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.472249 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.472251 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.472252 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.472253 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.472254 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.472255 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:19.472256 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:19.483230 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.483232 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.483248 LLDP, length 82 [|LLDP] 19:07:19.483257 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.483258 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06ac acfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.483260 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.483261 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.483262 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.483263 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.483264 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.483271 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.483273 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.483274 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.483275 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:19.483276 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:19.491489 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.491491 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.491505 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.491506 LLDP, length 82 [|LLDP] 19:07:19.491517 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.491518 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06b2 f9c8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.491520 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.491521 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.491522 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.491524 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.491525 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.491526 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.491527 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.491528 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:19.491529 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:19.502496 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.502498 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.502512 LLDP, length 82 [|LLDP] 19:07:19.502522 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.502522 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06bb 602d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.502524 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.502525 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.502526 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.502527 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.502529 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.502536 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.502538 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.502539 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.502540 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:19.502541 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:19.510760 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.510762 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.510769 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.510770 LLDP, length 82 [|LLDP] 19:07:19.510781 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.510782 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06c1 acfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.510783 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.510784 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.510786 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.510787 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.510789 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.510790 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.510791 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.521753 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.521754 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.521761 LLDP, length 82 [|LLDP] 19:07:19.521770 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.521771 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06ca 1360 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.521773 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.521774 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.521775 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.521779 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.532770 LLDP, length 82 [|LLDP] 19:07:19.532779 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.532780 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06d2 79c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.532782 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.532783 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.532785 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.532793 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.532794 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.532797 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.541028 LLDP, length 82 [|LLDP] 19:07:19.541037 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.541037 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06d8 c693 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.541039 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.541040 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.541042 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.541043 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.541051 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.541052 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.552043 LLDP, length 82 [|LLDP] 19:07:19.552056 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.552057 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06e1 2cf9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.552059 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.552060 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.552061 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.552062 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.552063 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.552075 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.552076 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.552085 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.552087 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.552088 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.552089 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:19.552091 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:19.563051 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.563053 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.563067 LLDP, length 82 [|LLDP] 19:07:19.563076 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.563077 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06e9 9361 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.563079 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.563080 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.563081 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.563082 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.563083 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.563091 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.563093 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.563094 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.563095 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:19.563096 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:19.571306 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.571308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.571321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.571322 LLDP, length 82 [|LLDP] 19:07:19.571333 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.571335 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06ef e02e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.571336 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.571337 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.571338 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.571340 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.571341 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.571342 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.571343 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.571344 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:19.571345 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:19.582323 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.582325 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.582338 LLDP, length 82 [|LLDP] 19:07:19.582349 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.582350 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 06f8 469b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.582352 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.582353 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.582354 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.582356 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.582357 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.582364 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.582366 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.582366 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.582367 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:19.582369 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:19.593332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.593334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.593349 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.593350 LLDP, length 82 [|LLDP] 19:07:19.593360 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.593361 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0700 acfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.593363 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.593364 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.593365 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.593367 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.593369 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.593370 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.593371 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.593372 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:19.593373 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:19.601587 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.601589 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.601603 LLDP, length 82 [|LLDP] 19:07:19.601612 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.601613 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0706 f9c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.601615 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.601617 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.601618 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.601619 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.601620 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.601627 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.601629 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.601630 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.601632 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:19.601633 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:19.612619 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.612621 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.612628 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.612630 LLDP, length 82 [|LLDP] 19:07:19.612640 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.612641 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 070f 602e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.612642 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.612643 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.612644 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.612646 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.612648 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.612649 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.612650 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.620872 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.620875 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.620889 LLDP, length 82 [|LLDP] 19:07:19.620900 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.620902 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0715 acfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.620903 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.620904 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.620906 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.620910 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.631866 LLDP, length 82 [|LLDP] 19:07:19.631876 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.631877 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 071e 1361 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.631880 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.631881 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.631889 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.631899 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.631900 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.631903 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.642888 LLDP, length 82 [|LLDP] 19:07:19.642898 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.642899 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0726 79c8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.642901 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.642902 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.642903 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.642904 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.642905 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.642906 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.642919 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.642921 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.642922 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.642930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.642932 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:19.642933 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:19.651146 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.651148 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.651158 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.651159 LLDP, length 82 [|LLDP] 19:07:19.651174 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.651175 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 072c c694 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.651176 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.651178 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.651179 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.651180 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.651182 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.651183 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.651184 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.651185 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:19.651186 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:19.662155 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.662158 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.662173 LLDP, length 82 [|LLDP] 19:07:19.662186 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.662187 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0735 2cfe 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.662188 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.662189 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.662190 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.662192 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.662193 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.662201 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.662204 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.662205 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.662206 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:19.662207 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:19.673162 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.673163 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.673174 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.673175 LLDP, length 82 [|LLDP] 19:07:19.673187 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.673189 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 073d 9361 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.673190 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.673192 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.673193 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.673195 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.673197 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.673197 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.673198 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.673199 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:19.673205 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:19.681412 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.681414 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.681430 LLDP, length 82 [|LLDP] 19:07:19.681440 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.681441 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0743 e02e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.681443 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.681444 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.681446 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.681447 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.681448 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.681455 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.681458 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.681458 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.681460 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:19.681461 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:19.692418 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.692419 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.692433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.692434 LLDP, length 82 [|LLDP] 19:07:19.692446 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.692447 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 074c 4695 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.692449 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.692450 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.692452 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.692453 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.692455 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.692456 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.692457 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.692458 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:19.692459 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:19.703428 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.703430 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.703436 LLDP, length 82 [|LLDP] 19:07:19.703445 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.703446 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0754 acfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.703447 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.703448 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.703449 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.703450 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.703451 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.703458 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.703460 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.703461 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.711686 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.711687 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.711693 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.711694 LLDP, length 82 [|LLDP] 19:07:19.711703 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.711704 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 075a f9c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.711706 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.711707 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.711708 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.722688 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.722690 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.722697 LLDP, length 82 [|LLDP] 19:07:19.722705 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.722706 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0763 602d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.722708 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.722709 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.722710 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.722713 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.730946 LLDP, length 82 [|LLDP] 19:07:19.730954 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.730955 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0769 acfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.730957 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.730958 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.730959 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.730966 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.730967 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.730970 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.741969 LLDP, length 82 [|LLDP] 19:07:19.741981 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.741982 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0772 1360 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.741983 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.741985 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.741986 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.741987 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.741988 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.741998 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.742000 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.742001 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.742002 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.742009 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.742011 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:19.742013 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:19.752969 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.752970 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.752981 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.752983 LLDP, length 82 [|LLDP] 19:07:19.752992 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.752993 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 077a 79c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.752995 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.752996 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.752997 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.752998 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.752999 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.753000 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.753001 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.753002 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:19.753003 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:19.761223 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.761224 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.761235 LLDP, length 82 [|LLDP] 19:07:19.761245 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.761246 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0780 c694 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.761247 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.761248 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.761250 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.761251 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.761252 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.761260 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.761261 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.761262 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.761263 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:19.761265 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:19.772236 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.772238 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.772252 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.772253 LLDP, length 82 [|LLDP] 19:07:19.772261 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.772262 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0789 2cfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.772264 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.772265 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.772266 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.772268 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.772270 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.772271 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.772272 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.772273 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:19.772274 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:19.783245 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.783247 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.783259 LLDP, length 82 [|LLDP] 19:07:19.783268 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.783269 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0791 9361 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.783271 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.783272 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.783273 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.783274 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.783275 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.783282 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.783284 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.783285 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.783286 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:19.783287 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:19.791502 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.791503 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.791517 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.791518 LLDP, length 82 [|LLDP] 19:07:19.791526 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.791527 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0797 e02d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.791529 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.791530 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.791531 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.791533 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.791534 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.791535 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.791536 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.791537 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:19.791538 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:19.802519 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.802520 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.802527 LLDP, length 82 [|LLDP] 19:07:19.802535 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.802537 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07a0 4695 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.802538 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.802539 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.802540 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.802541 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.802543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.802549 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.802551 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.802552 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.810766 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.810767 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.810772 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.810774 LLDP, length 82 [|LLDP] 19:07:19.810783 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.810784 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07a6 9362 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.810785 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.810787 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.810789 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.821790 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.821792 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.821800 LLDP, length 82 [|LLDP] 19:07:19.821813 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.821814 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07ae f9c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.821815 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.821817 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.821818 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.821823 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.832793 LLDP, length 82 [|LLDP] 19:07:19.832802 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.832802 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07b7 6035 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.832805 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.832805 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.832806 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.832814 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.832815 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.832818 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.841050 LLDP, length 82 [|LLDP] 19:07:19.841062 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.841063 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07bd acfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.841065 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.841066 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.841067 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.841069 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.841070 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.841071 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.841082 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.841084 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.841085 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.841092 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.841094 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:19.841094 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:19.852056 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.852057 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.852069 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.852070 LLDP, length 82 [|LLDP] 19:07:19.852079 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.852080 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07c6 1362 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.852082 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.852083 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.852084 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.852086 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.852088 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.852089 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.852090 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.852091 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:19.852092 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:19.863071 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.863073 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.863085 LLDP, length 82 [|LLDP] 19:07:19.863094 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.863096 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07ce 79c8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.863097 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.863098 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.863100 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.863101 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.863102 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.863109 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.863111 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.863112 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.863113 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:19.863114 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:19.871326 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.871327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.871341 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.871342 LLDP, length 82 [|LLDP] 19:07:19.871351 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.871352 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07d4 c695 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.871354 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.871355 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.871356 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.871358 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.871359 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.871360 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.871361 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.871362 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:19.871363 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:19.882337 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.882339 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.882352 LLDP, length 82 [|LLDP] 19:07:19.882360 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.882361 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07dd 2cfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.882363 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.882364 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.882365 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.882366 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.882367 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.882374 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.882376 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.882377 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.882378 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:19.882379 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:19.893347 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.893348 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.893361 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.893362 LLDP, length 82 [|LLDP] 19:07:19.893371 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.893372 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07e5 9362 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.893374 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.893375 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.893376 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.893378 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.893379 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.893380 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.893381 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.893382 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:19.893383 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:19.901611 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.901612 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.901618 LLDP, length 82 [|LLDP] 19:07:19.901626 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.901627 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07eb e02e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.901629 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.901630 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.901632 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.901633 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.901634 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.901641 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.901642 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.901643 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.912608 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.912609 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.912615 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.912616 LLDP, length 82 [|LLDP] 19:07:19.912625 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.912626 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07f4 4697 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.912628 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.912630 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.912631 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.920866 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.920867 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.920873 LLDP, length 82 [|LLDP] 19:07:19.920881 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.920882 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 07fa 9361 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.920884 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.920885 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.920886 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.920890 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.931878 LLDP, length 82 [|LLDP] 19:07:19.931886 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.931887 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0802 f9c8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.931889 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.931890 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.931892 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.931900 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.931901 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.931904 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.942902 LLDP, length 82 [|LLDP] 19:07:19.942910 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.942911 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 080b 602d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.942913 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.942914 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.942915 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.942917 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.942918 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.942919 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.942930 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.942931 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.942933 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.942938 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.942940 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:19.942941 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:19.951152 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.951154 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.951166 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.951167 LLDP, length 82 [|LLDP] 19:07:19.951176 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.951177 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0811 acfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.951179 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.951180 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.951181 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.951182 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.951184 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.951185 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.951186 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.951186 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:19.951187 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:19.962155 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.962157 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.962169 LLDP, length 82 [|LLDP] 19:07:19.962177 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.962178 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 081a 1360 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.962179 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.962180 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.962182 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.962183 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.962184 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.962191 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.962192 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.962194 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.962195 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:19.962196 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:19.973164 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.973166 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.973178 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.973179 LLDP, length 82 [|LLDP] 19:07:19.973188 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.973189 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0822 79c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.973191 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.973192 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.973193 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.973195 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.973196 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.973197 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.973198 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.973199 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:19.973200 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:19.981424 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.981425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.981438 LLDP, length 82 [|LLDP] 19:07:19.981446 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.981447 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0828 c693 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.981449 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.981450 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.981451 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.981452 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.981454 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.981461 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.981463 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.981464 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.981465 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:19.981466 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:19.992434 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:19.992436 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.992448 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:19.992449 LLDP, length 82 [|LLDP] 19:07:19.992457 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:19.992458 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0831 2cfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:19.992460 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:19.992461 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:19.992462 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:19.992464 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:19.992465 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:19.992466 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.992467 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:19.992468 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:19.992469 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:20.003453 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.003454 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.003460 LLDP, length 82 [|LLDP] 19:07:20.003468 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.003469 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0839 9360 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.003471 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.003472 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.003473 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.003474 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.003476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.003483 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.003485 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.003486 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.011706 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.011708 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.011713 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.011715 LLDP, length 82 [|LLDP] 19:07:20.011724 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.011725 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 083f e02d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.011727 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.011728 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.011730 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.022723 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.022725 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.022734 LLDP, length 82 [|LLDP] 19:07:20.022748 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.022749 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0848 4694 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.022751 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.022752 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.022754 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.022758 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.030987 LLDP, length 82 [|LLDP] 19:07:20.030998 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.030999 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 084e 9367 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.031002 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.031003 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.031005 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.031014 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.031015 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.031018 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.041994 LLDP, length 82 [|LLDP] 19:07:20.042003 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.042004 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0856 f9c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.042006 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.042007 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.042008 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.042010 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.042011 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.042012 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.042024 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.042026 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.042028 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.042035 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.042037 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:20.042038 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:20.052998 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.053000 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.053018 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.053019 LLDP, length 82 [|LLDP] 19:07:20.053031 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.053032 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 085f 602d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.053034 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.053035 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.053037 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.053039 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.053040 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.053041 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.053042 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.053043 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:20.053044 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:20.061257 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.061259 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.061273 LLDP, length 82 [|LLDP] 19:07:20.061286 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.061287 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0865 acfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.061288 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.061289 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.061290 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.061292 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.061293 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.061301 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.061303 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.061304 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.061306 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:20.061306 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:20.072266 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.072268 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.072282 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.072284 LLDP, length 82 [|LLDP] 19:07:20.072293 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.072294 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 086e 1362 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.072296 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.072298 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.072299 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.072300 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.072302 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.072303 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.072304 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.072305 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:20.072305 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:20.083282 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.083284 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.083299 LLDP, length 82 [|LLDP] 19:07:20.083314 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.083315 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0876 79ce 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.083318 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.083319 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.083320 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.083322 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.083324 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.083333 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.083336 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.083338 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.083340 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:20.083342 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:20.091554 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.091563 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.091574 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.091575 LLDP, length 82 [|LLDP] 19:07:20.091588 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.091589 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 087c c695 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.091591 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.091592 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.091594 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.091595 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.091597 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.091597 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.091598 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.091599 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:20.091601 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:20.102559 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.102561 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.102570 LLDP, length 82 [|LLDP] 19:07:20.102582 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.102583 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0885 2cfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.102584 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.102585 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.102587 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.102588 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.102589 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.102597 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.102599 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.102600 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.110798 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.110800 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.110808 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.110809 LLDP, length 82 [|LLDP] 19:07:20.110821 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.110821 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 088b 79c8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.110823 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.110825 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.110826 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.121809 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.121811 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.121820 LLDP, length 82 [|LLDP] 19:07:20.121830 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.121831 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0893 e02e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.121833 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.121834 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.121835 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.121839 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.132820 LLDP, length 82 [|LLDP] 19:07:20.132832 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.132833 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 089c 4694 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.132836 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.132837 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.132838 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.132848 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.132849 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.132852 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.141078 LLDP, length 82 [|LLDP] 19:07:20.141091 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.141092 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08a2 9361 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.141094 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.141095 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.141096 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.141098 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.141099 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.141100 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.141112 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.141114 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.141115 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.141122 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.141124 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:20.141124 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:20.152083 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.152085 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.152098 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.152099 LLDP, length 82 [|LLDP] 19:07:20.152108 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.152109 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08aa f9c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.152110 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.152111 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.152112 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.152114 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.152115 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.152116 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.152117 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.152118 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:20.152119 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:20.163093 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.163094 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.163106 LLDP, length 82 [|LLDP] 19:07:20.163116 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.163117 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08b3 602f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.163119 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.163120 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.163121 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.163122 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.163124 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.163131 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.163132 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.163133 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.163135 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:20.163135 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:20.171345 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.171346 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.171359 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.171360 LLDP, length 82 [|LLDP] 19:07:20.171369 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.171370 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08b9 acfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.171372 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.171373 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.171374 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.171375 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.171377 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.171378 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.171379 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.171380 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:20.171381 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:20.182356 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.182358 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.182371 LLDP, length 82 [|LLDP] 19:07:20.182379 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.182379 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08c2 1361 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.182381 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.182382 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.182383 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.182385 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.182386 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.182393 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.182395 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.182396 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.182397 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:20.182398 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:20.193368 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.193370 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.193376 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.193377 LLDP, length 82 [|LLDP] 19:07:20.193386 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.193387 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08ca 79c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.193389 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.193390 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.193391 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.193392 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.193394 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.193395 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.193396 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.193397 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:20.193398 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:20.201633 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.201634 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.201640 LLDP, length 82 [|LLDP] 19:07:20.201648 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.201649 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08d0 c694 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.201651 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.201652 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.201653 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.201655 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.201656 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.201663 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.201664 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.201665 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.212630 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.212631 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.212637 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.212639 LLDP, length 82 [|LLDP] 19:07:20.212648 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.212649 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08d9 2cfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.212650 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.212652 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.212653 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.220887 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.220888 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.220894 LLDP, length 82 [|LLDP] 19:07:20.220903 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.220904 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08df 79c8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.220905 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.220906 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.220908 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.220911 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.231897 LLDP, length 82 [|LLDP] 19:07:20.231905 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.231906 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08e7 e02e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.231908 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.231909 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.231911 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.231917 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.231918 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.231921 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.242914 LLDP, length 82 [|LLDP] 19:07:20.242926 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.242927 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08f0 4694 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.242930 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.242931 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.242932 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.242934 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.242935 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.242945 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.242947 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.242948 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.242949 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.242956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.242958 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:20.242959 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:20.251171 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.251172 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.251184 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.251185 LLDP, length 82 [|LLDP] 19:07:20.251195 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.251196 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08f6 9361 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.251197 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.251199 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.251200 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.251202 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.251203 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.251204 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.251205 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.251206 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:20.251207 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:20.262178 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.262179 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.262192 LLDP, length 82 [|LLDP] 19:07:20.262199 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.262200 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 08fe f9c8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.262202 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.262203 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.262204 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.262206 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.262207 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.262215 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.262216 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.262218 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.262218 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:20.262219 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:20.273190 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.273191 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.273203 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.273204 LLDP, length 82 [|LLDP] 19:07:20.273212 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.273213 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0907 602e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.273215 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.273216 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.273218 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.273219 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.273221 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.273222 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.273223 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.273224 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:20.273225 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:20.281444 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.281445 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.281457 LLDP, length 82 [|LLDP] 19:07:20.281466 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.281467 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 090d ad02 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.281469 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.281470 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.281471 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.281472 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.281473 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.281480 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.281482 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.281483 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.281484 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:20.281485 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:20.292456 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.292457 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.292469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.292470 LLDP, length 82 [|LLDP] 19:07:20.292479 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.292480 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0916 1362 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.292482 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.292483 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.292484 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.292486 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.292488 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.292488 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.292490 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.292491 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:20.292492 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:20.300723 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.300724 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.300730 LLDP, length 82 [|LLDP] 19:07:20.300739 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.300740 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 091c 602e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.300742 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.300743 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.300744 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.300745 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.300746 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.300753 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.300755 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.300756 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.311715 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.311717 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.311723 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.311724 LLDP, length 82 [|LLDP] 19:07:20.311733 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.311734 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0924 c695 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.311735 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.311737 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.311738 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.322730 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.322731 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.322738 LLDP, length 82 [|LLDP] 19:07:20.322745 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.322746 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 092d 2cfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.322748 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.322749 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.322750 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.322754 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.330988 LLDP, length 82 [|LLDP] 19:07:20.330995 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.330996 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0933 79c8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.330998 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.330999 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.331000 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.331008 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.331009 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.331011 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.341999 LLDP, length 82 [|LLDP] 19:07:20.342010 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.342011 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 093b e02f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.342012 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.342013 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.342015 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.342016 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.342025 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.342027 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.342028 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.342030 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.342031 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.342039 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.342041 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:20.342042 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:20.353012 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.353014 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.353020 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.353027 LLDP, length 82 [|LLDP] 19:07:20.353036 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.353037 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0944 4694 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.353038 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.353039 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.353040 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.353042 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.353043 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.353045 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.353046 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.353047 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:20.353047 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:20.361266 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.361268 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.361279 LLDP, length 82 [|LLDP] 19:07:20.361288 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.361289 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 094a 9361 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.361290 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.361292 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.361293 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.361294 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.361308 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.361316 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.361318 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.361319 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.361320 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:20.361321 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:20.372320 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.372328 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.372339 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.372341 LLDP, length 82 [|LLDP] 19:07:20.372357 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.372358 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0952 f9c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.372360 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.372362 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.372363 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.372364 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.372365 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.372366 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.372367 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.372368 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:20.372370 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:20.383294 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.383295 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.383308 LLDP, length 82 [|LLDP] 19:07:20.383317 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.383318 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 095b 602e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.383320 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.383321 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.383322 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.383323 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.383325 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.383332 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.383334 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.383335 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.383336 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:20.383337 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:20.391547 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.391549 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.391563 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.391564 LLDP, length 82 [|LLDP] 19:07:20.391574 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.391575 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0961 acfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.391576 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.391577 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.391578 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.391580 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.391581 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.391582 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.391583 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.391584 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:20.391585 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:20.402568 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.402569 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.402576 LLDP, length 82 [|LLDP] 19:07:20.402585 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.402586 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 096a 1361 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.402588 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.402589 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.402590 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.402591 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.402592 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.402600 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.402602 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.402603 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.410811 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.410812 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.410817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.410818 LLDP, length 82 [|LLDP] 19:07:20.410827 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.410828 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0970 602d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.410830 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.410832 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.410833 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.421816 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.421818 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.421824 LLDP, length 82 [|LLDP] 19:07:20.421833 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.421834 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0978 c694 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.421835 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.421836 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.421838 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.421842 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.432826 LLDP, length 82 [|LLDP] 19:07:20.432834 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.432835 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0981 2cfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.432837 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.432838 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.432839 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.432846 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.432847 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.432849 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.441096 LLDP, length 82 [|LLDP] 19:07:20.441110 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.441111 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0987 79c6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.441113 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.441114 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.441115 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.441116 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.441117 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.441119 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.441132 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.441134 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.441135 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.441140 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.441143 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:20.441144 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:20.452105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.452107 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.452119 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.452121 LLDP, length 82 [|LLDP] 19:07:20.452130 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.452131 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 098f e02d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.452132 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.452133 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.452135 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.452137 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.452138 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.452139 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.452140 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.452141 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:20.452143 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:20.463113 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.463115 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.463128 LLDP, length 82 [|LLDP] 19:07:20.463137 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.463138 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0998 4694 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.463139 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.463141 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.463142 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.463143 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.463144 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.463151 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.463153 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.463154 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.463155 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:20.463156 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:20.471367 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.471368 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.471380 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.471381 LLDP, length 82 [|LLDP] 19:07:20.471391 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.471391 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 099e 9361 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.471393 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.471394 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.471395 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.471397 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.471398 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.471399 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.471400 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.471401 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:20.471402 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:20.482377 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.482378 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.482391 LLDP, length 82 [|LLDP] 19:07:20.482400 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.482401 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09a6 f9c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.482402 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.482404 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.482405 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.482406 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.482407 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.482414 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.482416 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.482417 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.482418 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:20.482419 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:20.493390 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.493392 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.493404 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.493406 LLDP, length 82 [|LLDP] 19:07:20.493415 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.493416 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09af 602d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.493418 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.493419 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.493421 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.493422 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.493423 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.493424 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.493426 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.493427 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:20.493428 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:20.501656 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.501657 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.501663 LLDP, length 82 [|LLDP] 19:07:20.501672 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.501673 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09b5 acfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.501675 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.501676 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.501677 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.501678 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.501679 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.501686 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.501688 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.501689 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.512652 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.512654 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.512660 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.512661 LLDP, length 82 [|LLDP] 19:07:20.512670 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.512671 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09be 1361 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.512673 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.512674 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.512676 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.520907 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.520909 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.520914 LLDP, length 82 [|LLDP] 19:07:20.520922 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.520923 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09c4 602e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.520925 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.520926 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.520927 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.520930 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.531919 LLDP, length 82 [|LLDP] 19:07:20.531927 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.531928 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09cc c69b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.531929 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.531931 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.531931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.531938 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.531939 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.531942 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.542937 LLDP, length 82 [|LLDP] 19:07:20.542949 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.542949 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09d5 2cfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.542951 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.542952 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.542953 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.542954 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.542956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.542965 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.542967 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.542968 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.542969 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.542976 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.542978 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:20.542979 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:20.553166 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.553168 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.553175 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.553176 LLDP, length 82 [|LLDP] 19:07:20.553186 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.553187 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09db 79c8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.553188 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.553190 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.553191 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.553193 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.553194 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.553195 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.553196 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.553197 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:20.553198 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:20.562199 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.562200 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.562212 LLDP, length 82 [|LLDP] 19:07:20.562220 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.562221 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09e3 e02e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.562223 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.562224 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.562225 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.562226 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.562228 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.562234 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.562236 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.562237 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.562238 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:20.562239 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:20.573210 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.573211 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.573224 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.573225 LLDP, length 82 [|LLDP] 19:07:20.573234 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.573235 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09ec 4694 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.573236 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.573237 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.573239 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.573240 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.573241 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.573242 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.573244 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.573245 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:20.573246 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:20.581466 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.581468 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.581483 LLDP, length 82 [|LLDP] 19:07:20.581492 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.581493 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09f2 9361 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.581494 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.581495 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.581496 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.581498 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.581499 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.581506 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.581508 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.581509 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.581510 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:20.581511 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:20.592478 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.592480 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.592491 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.592493 LLDP, length 82 [|LLDP] 19:07:20.592502 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.592502 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 09fa f9c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.592504 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.592505 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.592506 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.592507 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.592509 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.592510 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.592511 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.592512 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:20.592513 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:20.600751 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.600752 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.600759 LLDP, length 82 [|LLDP] 19:07:20.600767 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.600769 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a01 4693 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.600770 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.600771 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.600773 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.600774 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.600775 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.600782 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.600784 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.600785 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.614029 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.614030 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.614036 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.614038 LLDP, length 82 [|LLDP] 19:07:20.614047 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.614048 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a09 acfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.614050 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.614052 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.614053 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.622751 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.622752 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.622758 LLDP, length 82 [|LLDP] 19:07:20.622767 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.622767 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a12 1361 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.622769 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.622770 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.622771 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.622775 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.631009 LLDP, length 82 [|LLDP] 19:07:20.631016 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.631017 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a18 602d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.631019 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.631020 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.631021 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.631028 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.631030 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.631032 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.642022 LLDP, length 82 [|LLDP] 19:07:20.642034 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.642035 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a20 c693 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.642037 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.642038 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.642039 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.642040 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.642041 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.642051 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.642053 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.642055 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.642056 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.642062 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.642064 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:20.642065 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:20.653030 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.653031 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.653042 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.653044 LLDP, length 82 [|LLDP] 19:07:20.653052 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.653053 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a29 2cfa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.653054 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.653056 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.653057 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.653059 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.653060 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.653061 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.653062 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.653063 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:20.653064 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:20.661290 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.661292 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.661304 LLDP, length 82 [|LLDP] 19:07:20.661313 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.661314 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a2f 79c7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.661316 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.661317 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.661318 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.661319 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.661321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.661327 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.661330 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.661331 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.661332 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:20.661333 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:20.674735 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.674738 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.674749 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.674750 LLDP, length 82 [|LLDP] 19:07:20.674764 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.674765 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a37 e02e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.674766 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.674767 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.674769 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.674770 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.674772 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.674773 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.674774 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.674775 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:20.674776 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:20.683319 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.683321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.683329 LLDP, length 82 [|LLDP] 19:07:20.683340 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.683341 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a40 4694 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.683343 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.683344 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.683345 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.683346 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.683347 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.683354 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.683356 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.683357 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.683358 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:20.683359 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:20.691575 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.691577 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.691591 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.691592 LLDP, length 82 [|LLDP] 19:07:20.691603 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.691604 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a46 9361 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.691606 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.691607 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.691609 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.691610 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.691612 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.691612 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.691614 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.691615 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:20.691616 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:20.702601 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.702603 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.702614 LLDP, length 82 [|LLDP] 19:07:20.702625 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.702626 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a4e f9c8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.702628 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.702629 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.702630 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.702631 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.702633 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.702640 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.702642 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.702643 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.710838 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.710840 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.710848 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.710849 LLDP, length 82 [|LLDP] 19:07:20.710859 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.710860 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a55 4695 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.710862 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.710863 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.710864 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.721855 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.721857 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.721866 LLDP, length 82 [|LLDP] 19:07:20.721875 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.721876 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a5d acfb 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.721878 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.721879 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.721880 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.721885 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.735382 LLDP, length 82 [|LLDP] 19:07:20.735394 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.735395 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a66 1361 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.735398 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.735399 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.735400 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.735411 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.735412 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.735415 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.741138 LLDP, length 82 [|LLDP] 19:07:20.741149 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.741150 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a6c 602f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.741153 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.741154 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.741155 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.741156 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.741158 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.741159 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.741175 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.741177 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.741178 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.741186 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.741188 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:20.741189 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:20.752133 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.752135 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.752150 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.752151 LLDP, length 82 [|LLDP] 19:07:20.752163 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.752164 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a74 c6b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.752166 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.752167 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.752168 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.752170 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.752172 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.752173 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.752174 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.752175 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:20.752176 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:20.763136 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.763138 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.763152 LLDP, length 82 [|LLDP] 19:07:20.763162 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.763163 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a7d 2d1d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.763165 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.763166 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.763167 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.763168 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.763170 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.763177 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.763179 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.763180 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.763181 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:20.763182 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:20.771393 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.771394 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.771407 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.771408 LLDP, length 82 [|LLDP] 19:07:20.771417 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.771418 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a83 79ea 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.771420 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.771421 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.771422 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.771424 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.771425 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.771426 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.771428 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.771429 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:20.771430 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:20.782401 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.782402 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.782414 LLDP, length 82 [|LLDP] 19:07:20.782424 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.782425 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a8b e04f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.782426 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.782427 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.782428 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.782430 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.782431 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.782438 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.782440 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.782441 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.782442 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:20.782443 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:20.790656 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.790657 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.790670 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.790671 LLDP, length 82 [|LLDP] 19:07:20.790680 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.790681 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a92 2d1d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.790682 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.790684 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.790685 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.790686 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.790688 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.790689 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.790690 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.790691 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:20.790692 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:20.801678 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.801680 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.801685 LLDP, length 82 [|LLDP] 19:07:20.801694 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.801695 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0a9a 9382 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.801697 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.801698 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.801699 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.801700 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.801702 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.801709 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.801711 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.801712 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.812677 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.812678 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.812684 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.812685 LLDP, length 82 [|LLDP] 19:07:20.812694 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.812695 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0aa2 f9e9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.812697 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.812698 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.812700 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.820945 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.820948 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.820957 LLDP, length 82 [|LLDP] 19:07:20.820969 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.820971 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0aa9 46b8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.820972 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.820973 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.820974 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.820979 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.831943 LLDP, length 82 [|LLDP] 19:07:20.831951 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.831952 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ab1 ad1b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.831954 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.831955 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.831957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.831964 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.831965 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.831969 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.842962 LLDP, length 82 [|LLDP] 19:07:20.842974 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.842975 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0aba 1381 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.842977 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.842978 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.842979 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.842981 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.842982 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.842992 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.842994 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.842995 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.842996 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.843004 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.843006 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:20.843007 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:20.851211 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.851213 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.851225 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.851227 LLDP, length 82 [|LLDP] 19:07:20.851236 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.851238 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ac0 604f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.851239 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.851240 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.851242 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.851243 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.851244 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.851245 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.851247 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.851248 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:20.851249 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:20.862223 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.862225 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.862238 LLDP, length 82 [|LLDP] 19:07:20.862247 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.862248 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ac8 c6b5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.862250 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.862251 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.862252 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.862253 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.862255 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.862261 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.862263 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.862264 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.862265 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:20.862266 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:20.873246 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.873247 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.873263 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.873264 LLDP, length 82 [|LLDP] 19:07:20.873276 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.873277 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ad1 2d22 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.873279 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.873280 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.873281 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.873283 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.873284 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.873286 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.873286 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.873287 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:20.873288 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:20.881493 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.881495 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.881508 LLDP, length 82 [|LLDP] 19:07:20.881518 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.881519 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ad7 79e8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.881521 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.881522 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.881523 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.881524 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.881525 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.881532 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.881535 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.881535 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.881536 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:20.881538 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:20.892501 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.892502 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.892514 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.892515 LLDP, length 82 [|LLDP] 19:07:20.892525 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.892526 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0adf e04e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.892527 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.892529 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.892530 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.892532 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.892533 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.892534 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.892535 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.892536 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:20.892537 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:20.900766 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.900768 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.900774 LLDP, length 82 [|LLDP] 19:07:20.900782 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.900783 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ae6 2d1b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.900785 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.900786 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.900788 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.900789 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.900790 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.900797 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.900798 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.900800 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.911764 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.911766 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.911773 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.911773 LLDP, length 82 [|LLDP] 19:07:20.911783 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.911784 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0aee 9382 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.911785 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.911786 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.911787 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.922776 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.922777 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.922783 LLDP, length 82 [|LLDP] 19:07:20.922790 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.922791 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0af6 f9e8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.922793 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.922794 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.922796 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.922800 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.931034 LLDP, length 82 [|LLDP] 19:07:20.931042 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.931043 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0afd 46b5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.931046 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.931047 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.931048 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.931055 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.931057 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.931059 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.942170 LLDP, length 82 [|LLDP] 19:07:20.942178 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.942179 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b05 ad1c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.942180 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.942181 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.942182 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.942184 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.942185 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.942186 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.942196 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.942198 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.942200 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.942205 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.942207 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:20.942208 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:20.953055 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.953057 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.953063 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.953064 LLDP, length 82 [|LLDP] 19:07:20.953073 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.953074 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b0e 1382 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.953075 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.953077 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.953078 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.953080 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.953081 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.953082 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.953083 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.953084 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:20.953085 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:20.961310 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.961311 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.961324 LLDP, length 82 [|LLDP] 19:07:20.961332 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.961333 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b14 604f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.961335 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.961336 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.961337 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.961338 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.961340 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.961347 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.961349 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.961350 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.961351 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:20.961352 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:20.972321 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.972322 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.972335 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.972336 LLDP, length 82 [|LLDP] 19:07:20.972346 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.972346 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b1c c6b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.972348 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.972350 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.972351 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.972352 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.972353 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.972355 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.972356 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.972357 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:20.972358 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:20.983332 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.983333 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.983345 LLDP, length 82 [|LLDP] 19:07:20.983354 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.983356 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b25 2d1c 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.983357 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.983358 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.983360 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.983361 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.983362 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.983369 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.983371 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.983372 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.983373 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:20.983374 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:20.991585 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:20.991587 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.991599 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:20.991600 LLDP, length 82 [|LLDP] 19:07:20.991609 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:20.991610 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b2b 79f0 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:20.991612 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:20.991613 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:20.991614 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:20.991615 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:20.991617 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:20.991617 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.991618 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:20.991619 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:20.991620 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:21.002610 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.002612 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.002617 LLDP, length 82 [|LLDP] 19:07:21.002626 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.002627 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b33 e050 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.002629 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.002630 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.002631 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.002633 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.002634 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.002641 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.002643 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.002644 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.010852 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.010854 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.010860 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.010861 LLDP, length 82 [|LLDP] 19:07:21.010870 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.010871 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b3a 2d1d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.010873 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.010874 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.010876 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.021864 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.021865 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.021871 LLDP, length 82 [|LLDP] 19:07:21.021879 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.021880 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b42 9384 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.021882 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.021883 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.021884 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.021888 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.032872 LLDP, length 82 [|LLDP] 19:07:21.032880 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.032880 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b4a f9ea 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.032882 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.032883 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.032885 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.032892 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.032894 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.032896 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.041136 LLDP, length 82 [|LLDP] 19:07:21.041147 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.041148 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b51 46b6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.041150 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.041151 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.041153 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.041154 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.041155 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.041156 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.041167 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.041169 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.041170 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.041176 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.041178 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:21.041179 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:21.052144 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.052145 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.052160 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.052161 LLDP, length 82 [|LLDP] 19:07:21.052170 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.052172 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b59 ad1d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.052173 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.052174 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.052176 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.052177 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.052179 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.052180 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.052181 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.052182 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:21.052183 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:21.063152 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.063153 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.063165 LLDP, length 82 [|LLDP] 19:07:21.063174 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.063175 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b62 1383 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.063177 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.063178 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.063179 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.063180 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.063181 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.063188 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.063190 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.063191 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.063192 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:21.063193 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:21.071411 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.071413 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.071425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.071426 LLDP, length 82 [|LLDP] 19:07:21.071434 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.071435 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b68 6051 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.071436 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.071437 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.071439 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.071440 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.071442 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.071443 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.071444 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.071445 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:21.071446 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:21.082419 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.082421 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.082434 LLDP, length 82 [|LLDP] 19:07:21.082442 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.082443 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b70 c6b5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.082445 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.082446 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.082447 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.082448 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.082449 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.082457 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.082459 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.082460 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.082460 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:21.082462 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:21.090678 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.090680 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.090692 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.090693 LLDP, length 82 [|LLDP] 19:07:21.090702 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.090703 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b77 1383 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.090705 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.090706 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.090707 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.090709 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.090710 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.090711 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.090712 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.090713 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:21.090715 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:21.101698 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.101699 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.101706 LLDP, length 82 [|LLDP] 19:07:21.101714 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.101715 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b7f 79e9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.101717 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.101718 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.101719 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.101720 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.101721 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.101728 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.101730 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.101731 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.112695 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.112696 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.112702 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.112703 LLDP, length 82 [|LLDP] 19:07:21.112712 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.112713 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b87 e04f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.112714 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.112716 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.112717 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.120953 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.120955 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.120962 LLDP, length 82 [|LLDP] 19:07:21.120971 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.120972 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b8e 2d1b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.120973 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.120975 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.120976 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.120980 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.131963 LLDP, length 82 [|LLDP] 19:07:21.131970 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.131971 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b96 9382 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.131973 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.131974 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.131975 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.131983 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.131984 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.131988 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.142978 LLDP, length 82 [|LLDP] 19:07:21.142990 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.142990 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0b9e f9e8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.142992 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.142994 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.142995 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.142996 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.142997 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.143007 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.143008 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.143010 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.143011 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.143018 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.143019 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:21.143020 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:21.151231 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.151232 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.151244 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.151245 LLDP, length 82 [|LLDP] 19:07:21.151254 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.151255 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ba5 46b4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.151257 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.151258 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.151259 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.151261 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.151263 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.151264 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.151264 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.151265 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:21.151266 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:21.162244 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.162245 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.162257 LLDP, length 82 [|LLDP] 19:07:21.162266 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.162267 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bad ad1b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.162269 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.162270 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.162271 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.162272 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.162273 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.162281 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.162282 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.162284 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.162284 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:21.162285 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:21.173251 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.173253 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.173268 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.173269 LLDP, length 82 [|LLDP] 19:07:21.173278 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.173279 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bb6 1382 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.173280 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.173282 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.173282 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.173284 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.173286 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.173287 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.173288 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.173289 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:21.173290 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:21.181512 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.181513 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.181526 LLDP, length 82 [|LLDP] 19:07:21.181535 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.181536 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bbc 604f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.181538 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.181539 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.181541 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.181542 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.181543 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.181550 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.181552 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.181553 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.181554 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:21.181555 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:21.192520 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.192522 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.192534 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.192535 LLDP, length 82 [|LLDP] 19:07:21.192544 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.192544 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bc4 c6b5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.192546 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.192547 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.192548 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.192549 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.192551 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.192552 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.192553 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.192554 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:21.192555 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:21.200790 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.200792 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.200798 LLDP, length 82 [|LLDP] 19:07:21.200806 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.200807 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bcb 13a4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.200809 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.200810 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.200811 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.200812 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.200813 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.200820 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.200823 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.200824 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.211785 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.211786 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.211792 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.211793 LLDP, length 82 [|LLDP] 19:07:21.211802 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.211803 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bd3 7a0a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.211805 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.211807 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.211808 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.222797 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.222799 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.222805 LLDP, length 82 [|LLDP] 19:07:21.222813 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.222814 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bdb e071 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.222815 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.222816 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.222817 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.222821 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.231053 LLDP, length 82 [|LLDP] 19:07:21.231060 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.231061 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0be2 2d3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.231063 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.231064 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.231065 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.231072 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.231073 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.231076 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.242066 LLDP, length 82 [|LLDP] 19:07:21.242078 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.242078 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bea 93a4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.242080 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.242082 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.242083 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.242085 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.242086 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.242095 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.242097 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.242098 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.242100 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.242106 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.242109 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:21.242110 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:21.253078 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.253080 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.253092 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.253093 LLDP, length 82 [|LLDP] 19:07:21.253102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.253103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bf2 fa0a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.253105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.253106 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.253107 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.253109 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.253110 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.253111 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.253112 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.253113 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:21.253114 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:21.261333 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.261334 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.261346 LLDP, length 82 [|LLDP] 19:07:21.261355 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.261355 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0bf9 46d7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.261357 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.261359 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.261360 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.261361 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.261362 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.261369 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.261371 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.261372 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.261373 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:21.261374 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:21.272341 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.272343 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.272355 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.272356 LLDP, length 82 [|LLDP] 19:07:21.272366 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.272367 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c01 ad3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.272369 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.272370 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.272371 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.272373 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.272375 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.272376 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.272376 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.272377 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:21.272378 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:21.283352 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.283354 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.283370 LLDP, length 82 [|LLDP] 19:07:21.283379 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.283380 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c0a 13a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.283381 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.283383 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.283384 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.283385 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.283386 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.283393 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.283395 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.283396 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.283397 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:21.283398 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:21.291608 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.291609 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.291621 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.291622 LLDP, length 82 [|LLDP] 19:07:21.291632 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.291633 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c10 6071 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.291634 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.291635 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.291637 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.291638 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.291640 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.291641 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.291642 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.291643 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:21.291644 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:21.302630 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.302631 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.302638 LLDP, length 82 [|LLDP] 19:07:21.302646 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.302647 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c18 c6d8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.302649 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.302650 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.302652 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.302653 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.302654 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.302661 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.302663 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.302664 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.310874 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.310875 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.310881 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.310882 LLDP, length 82 [|LLDP] 19:07:21.310890 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.310891 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c1f 13a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.310893 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.310894 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.310895 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.321888 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.321889 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.321895 LLDP, length 82 [|LLDP] 19:07:21.321903 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.321903 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c27 7a0b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.321905 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.321907 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.321908 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.321912 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.332895 LLDP, length 82 [|LLDP] 19:07:21.332902 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.332903 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c2f e071 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.332906 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.332907 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.332908 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.332916 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.332917 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.332920 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.341161 LLDP, length 82 [|LLDP] 19:07:21.341174 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.341175 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c36 2d3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.341176 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.341177 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.341178 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.341180 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.341181 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.341182 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.341193 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.341195 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.341196 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.341215 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.341217 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:21.341218 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:21.352209 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.352218 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.352229 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.352230 LLDP, length 82 [|LLDP] 19:07:21.352246 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.352247 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c3e 93a4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.352249 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.352251 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.352252 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.352254 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.352255 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.352256 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.352257 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.352258 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:21.352259 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:21.363182 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.363184 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.363197 LLDP, length 82 [|LLDP] 19:07:21.363206 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.363207 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c46 fa0b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.363209 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.363210 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.363211 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.363212 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.363213 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.363220 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.363222 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.363223 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.363224 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:21.363225 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:21.371434 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.371435 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.371448 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.371449 LLDP, length 82 [|LLDP] 19:07:21.371459 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.371460 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c4d 46d7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.371462 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.371463 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.371464 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.371466 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.371468 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.371469 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.371469 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.371470 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:21.371471 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:21.382443 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.382445 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.382457 LLDP, length 82 [|LLDP] 19:07:21.382465 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.382466 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c55 ad3d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.382467 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.382469 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.382470 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.382471 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.382472 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.382479 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.382481 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.382482 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.382483 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:21.382484 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:21.390702 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.390704 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.390717 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.390718 LLDP, length 82 [|LLDP] 19:07:21.390727 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.390728 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c5b fa0a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.390730 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.390731 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.390732 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.390734 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.390736 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.390737 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.390738 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.390739 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:21.390740 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:21.401716 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.401718 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.401724 LLDP, length 82 [|LLDP] 19:07:21.401733 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.401733 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c64 6070 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.401735 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.401736 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.401738 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.401739 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.401740 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.401746 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.401748 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.401749 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.412718 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.412719 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.412724 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.412726 LLDP, length 82 [|LLDP] 19:07:21.412735 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.412736 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c6c c6dd 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.412737 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.412738 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.412740 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.420974 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.420975 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.420981 LLDP, length 82 [|LLDP] 19:07:21.420988 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.420989 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c73 13a4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.420991 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.420992 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.420993 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.420997 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.431984 LLDP, length 82 [|LLDP] 19:07:21.431992 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.431993 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c7b 7a0a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.431995 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.431996 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.431998 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.432006 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.432007 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.432011 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.443021 LLDP, length 82 [|LLDP] 19:07:21.443038 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.443039 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c83 e070 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.443042 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.443043 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.443045 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.443046 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.443047 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.443048 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.443064 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.443067 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.443068 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.443075 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.443077 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:21.443078 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:21.451263 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.451265 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.451279 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.451280 LLDP, length 82 [|LLDP] 19:07:21.451289 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.451290 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c8a 2d42 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.451292 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.451293 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.451294 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.451295 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.451297 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.451298 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.451299 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.451300 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:21.451301 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:21.462278 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.462280 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.462298 LLDP, length 82 [|LLDP] 19:07:21.462309 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.462311 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c92 93a4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.462312 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.462314 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.462315 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.462316 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.462318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.462326 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.462328 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.462329 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.462331 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:21.462332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:21.473286 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.473288 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.473303 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.473304 LLDP, length 82 [|LLDP] 19:07:21.473320 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.473321 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0c9a fa0b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.473322 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.473324 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.473325 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.473326 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.473327 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.473328 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.473330 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.473330 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:21.473332 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:21.481546 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.481548 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.481571 LLDP, length 82 [|LLDP] 19:07:21.481583 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.481584 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ca1 46d7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.481585 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.481586 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.481588 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.481589 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.481590 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.481598 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.481600 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.481601 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.481602 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:21.481603 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:21.492554 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.492556 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.492573 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.492574 LLDP, length 82 [|LLDP] 19:07:21.492585 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.492586 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ca9 ad3d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.492587 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.492588 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.492589 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.492591 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.492592 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.492593 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.492594 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.492595 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:21.492596 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:21.500815 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.500816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.500824 LLDP, length 82 [|LLDP] 19:07:21.500834 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.500835 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0caf fa0b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.500837 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.500838 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.500843 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.500845 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.500846 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.500854 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.500855 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.500857 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.511816 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.511818 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.511826 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.511827 LLDP, length 82 [|LLDP] 19:07:21.511838 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.511839 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cb8 6071 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.511841 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.511843 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.511844 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.522821 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.522823 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.522831 LLDP, length 82 [|LLDP] 19:07:21.522842 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.522843 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cc0 c6d8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.522844 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.522846 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.522847 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.522851 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.531081 LLDP, length 82 [|LLDP] 19:07:21.531092 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.531093 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cc7 13ab 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.531096 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.531098 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.531099 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.531108 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.531109 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.531112 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.542100 LLDP, length 82 [|LLDP] 19:07:21.542114 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.542115 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ccf 7a0b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.542118 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.542119 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.542120 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.542121 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.542122 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.542123 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.542136 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.542138 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.542140 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.542153 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.542156 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:21.542157 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:21.553104 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.553106 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.553121 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.553122 LLDP, length 82 [|LLDP] 19:07:21.553132 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.553134 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cd7 e072 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.553135 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.553136 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.553138 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.553139 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.553140 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.553141 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.553142 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.553143 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:21.553144 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:21.561360 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.561362 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.561376 LLDP, length 82 [|LLDP] 19:07:21.561386 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.561387 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cde 2d3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.561389 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.561390 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.561391 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.561392 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.561393 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.561401 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.561403 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.561404 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.561405 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:21.561407 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:21.572373 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.572374 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.572389 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.572390 LLDP, length 82 [|LLDP] 19:07:21.572401 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.572402 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ce6 93a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.572404 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.572405 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.572406 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.572408 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.572410 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.572411 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.572412 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.572413 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:21.572414 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:21.580630 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.580632 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.580640 LLDP, length 82 [|LLDP] 19:07:21.580648 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.580649 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cec e071 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.580651 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.580652 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.580653 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.580654 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.580655 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.580662 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.580664 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.580665 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.580667 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:21.580668 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:21.591641 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.591643 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.591665 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.591667 LLDP, length 82 [|LLDP] 19:07:21.591677 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.591678 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cf5 46d8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.591679 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.591681 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.591682 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.591683 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.591685 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.591686 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.591686 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.591687 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:21.591688 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:21.602664 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.602666 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.602675 LLDP, length 82 [|LLDP] 19:07:21.602685 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.602685 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0cfd ad3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.602687 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.602688 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.602689 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.602690 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.602692 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.602699 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.602701 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.602702 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.610920 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.610922 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.610933 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.610933 LLDP, length 82 [|LLDP] 19:07:21.610947 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.610948 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d03 fa0b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.610949 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.610951 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.610952 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.621919 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.621922 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.621931 LLDP, length 82 [|LLDP] 19:07:21.621942 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.621943 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d0c 6072 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.621944 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.621946 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.621947 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.621951 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.632926 LLDP, length 82 [|LLDP] 19:07:21.632937 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.632937 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d14 c6d7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.632940 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.632941 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.632943 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.632954 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.632955 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.632958 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.641197 LLDP, length 82 [|LLDP] 19:07:21.641212 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.641213 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d1b 13a4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.641216 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.641217 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.641219 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.641220 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.641221 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.641222 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.641236 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.641239 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.641240 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.641248 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.641250 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:21.641251 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:21.652196 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.652198 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.652212 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.652213 LLDP, length 82 [|LLDP] 19:07:21.652222 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.652223 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d23 7a0b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.652225 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.652226 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.652227 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.652228 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.652230 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.652230 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.652231 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.652233 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:21.652233 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:21.663202 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.663204 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.663217 LLDP, length 82 [|LLDP] 19:07:21.663225 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.663226 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d2b e077 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.663227 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.663229 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.663230 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.663231 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.663232 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.663240 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.663242 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.663243 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.663244 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:21.663245 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:21.671458 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.671460 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.671473 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.671474 LLDP, length 82 [|LLDP] 19:07:21.671483 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.671484 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d32 2d3d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.671486 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.671487 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.671488 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.671490 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.671492 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.671493 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.671493 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.671495 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:21.671495 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:21.682503 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.682505 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.682515 LLDP, length 82 [|LLDP] 19:07:21.682530 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.682531 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d3a 93a4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.682533 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.682534 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.682535 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.682537 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.682538 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.682545 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.682547 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.682548 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.682550 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:21.682551 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:21.690735 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.690737 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.690751 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.690753 LLDP, length 82 [|LLDP] 19:07:21.690763 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.690764 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d40 e071 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.690766 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.690767 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.690768 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.690769 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.690771 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.690772 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.690773 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.690774 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:21.690775 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:21.701757 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.701760 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.701769 LLDP, length 82 [|LLDP] 19:07:21.701781 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.701782 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d49 46da 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.701784 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.701786 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.701787 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.701788 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.701790 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.701798 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.701800 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.701801 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.712748 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.712750 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.712760 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.712761 LLDP, length 82 [|LLDP] 19:07:21.712772 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.712773 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d51 ad3d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.712775 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.712777 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.712778 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.721003 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.721005 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.721014 LLDP, length 82 [|LLDP] 19:07:21.721025 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.721027 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d57 fa0a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.721029 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.721030 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.721031 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.721035 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.732019 LLDP, length 82 [|LLDP] 19:07:21.732030 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.732031 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d60 6070 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.732033 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.732034 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.732035 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.732044 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.732046 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.732049 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.743034 LLDP, length 82 [|LLDP] 19:07:21.743048 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.743049 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d68 c6d7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.743052 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.743053 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.743054 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.743056 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.743057 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.743058 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.743075 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.743077 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.743078 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.743085 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.743088 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:21.743089 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:21.751284 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.751287 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.751301 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.751302 LLDP, length 82 [|LLDP] 19:07:21.751318 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.751319 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d6f 13a4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.751321 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.751322 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.751323 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.751325 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.751326 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.751327 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.751328 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.751329 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:21.751330 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:21.762295 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.762297 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.762312 LLDP, length 82 [|LLDP] 19:07:21.762323 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.762324 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d77 7a0a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.762326 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.762327 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.762328 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.762329 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.762330 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.762337 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.762339 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.762340 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.762341 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:21.762342 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:21.773305 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.773307 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.773321 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.773322 LLDP, length 82 [|LLDP] 19:07:21.773334 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.773335 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d7f e070 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.773336 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.773338 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.773339 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.773341 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.773343 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.773344 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.773345 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.773346 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:21.773347 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:21.781567 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.781569 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.781583 LLDP, length 82 [|LLDP] 19:07:21.781592 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.781593 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d86 2d44 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.781594 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.781596 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.781597 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.781598 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.781599 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.781606 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.781608 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.781610 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.781611 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:21.781612 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:21.792576 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.792578 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.792592 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.792594 LLDP, length 82 [|LLDP] 19:07:21.792608 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.792609 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d8e 93a4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.792611 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.792612 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.792613 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.792615 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.792617 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.792617 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.792618 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.792619 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:21.792621 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:21.800849 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.800851 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.800864 LLDP, length 82 [|LLDP] 19:07:21.800875 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.800876 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d94 e071 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.800878 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.800879 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.800880 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.800881 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.800882 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.800890 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.800892 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.800893 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.811844 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.811846 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.811855 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.811856 LLDP, length 82 [|LLDP] 19:07:21.811867 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.811868 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0d9d 46d7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.811870 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.811871 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.811872 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.822853 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.822855 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.822864 LLDP, length 82 [|LLDP] 19:07:21.822875 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.822876 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0da5 ad3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.822878 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.822879 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.822880 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.822885 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.831108 LLDP, length 82 [|LLDP] 19:07:21.831119 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.831120 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dab fa0b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.831122 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.831123 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.831124 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.831134 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.831135 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.831138 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.842132 LLDP, length 82 [|LLDP] 19:07:21.842149 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.842150 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0db4 6071 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.842153 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.842154 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.842155 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.842156 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.842158 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.842159 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.842174 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.842176 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.842177 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.842184 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.842185 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:21.842186 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:21.853133 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.853135 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.853150 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.853151 LLDP, length 82 [|LLDP] 19:07:21.853162 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.853163 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dbc c6d8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.853165 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.853166 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.853166 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.853168 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.853170 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.853171 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.853172 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.853173 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:21.853174 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:21.861392 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.861394 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.861409 LLDP, length 82 [|LLDP] 19:07:21.861418 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.861419 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dc3 13a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.861421 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.861422 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.861423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.861425 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.861426 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.861438 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.861440 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.861441 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.861442 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:21.861443 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:21.872415 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.872423 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.872433 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.872434 LLDP, length 82 [|LLDP] 19:07:21.872449 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.872450 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dcb 7a0b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.872452 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.872453 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.872454 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.872456 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.872458 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.872458 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.872459 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.872460 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:21.872462 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:21.880660 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.880662 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.880677 LLDP, length 82 [|LLDP] 19:07:21.880689 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.880690 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dd1 c6d8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.880691 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.880692 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.880693 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.880695 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.880696 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.880704 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.880706 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.880707 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.880708 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:21.880710 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:21.891672 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.891673 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.891688 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.891689 LLDP, length 82 [|LLDP] 19:07:21.891699 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.891699 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dda 2d3f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.891701 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.891702 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.891704 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.891705 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.891706 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.891708 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.891709 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.891709 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:21.891710 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:21.902681 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.902683 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.902691 LLDP, length 82 [|LLDP] 19:07:21.902701 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.902702 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0de2 93a4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.902704 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.902705 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.902706 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.902707 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.902709 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.902717 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.902718 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.902720 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.910922 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.910923 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.910931 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.910932 LLDP, length 82 [|LLDP] 19:07:21.910942 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.910942 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0de8 e071 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.910944 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.910945 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.910947 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.921934 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.921935 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.921943 LLDP, length 82 [|LLDP] 19:07:21.921951 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.921952 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0df1 46d7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.921954 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.921955 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.921956 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.921961 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.932942 LLDP, length 82 [|LLDP] 19:07:21.932949 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.932950 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0df9 ad3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.932952 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.932954 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.932955 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.932963 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.932964 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.932967 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.941209 LLDP, length 82 [|LLDP] 19:07:21.941221 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.941222 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0dff fa0a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.941225 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.941226 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.941227 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.941228 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.941229 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.941230 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.941242 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.941244 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.941245 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.941250 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.941252 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:21.941253 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:21.952215 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.952217 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.952230 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.952232 LLDP, length 82 [|LLDP] 19:07:21.952240 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.952241 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e08 6072 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.952243 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.952244 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.952245 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.952247 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.952249 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.952250 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.952251 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.952252 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:21.952253 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:21.963224 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.963225 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.963240 LLDP, length 82 [|LLDP] 19:07:21.963248 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.963249 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e10 c6d7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.963251 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.963252 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.963254 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.963255 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.963256 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.963263 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.963265 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.963266 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.963267 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:21.963268 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:21.971481 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.971483 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.971496 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.971497 LLDP, length 82 [|LLDP] 19:07:21.971507 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.971508 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e17 13a4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.971510 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.971511 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.971512 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.971514 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.971515 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.971516 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.971517 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.971518 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:21.971519 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:21.982490 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.982491 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.982505 LLDP, length 82 [|LLDP] 19:07:21.982514 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.982514 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e1f 7a09 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.982516 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.982518 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.982519 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.982520 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.982521 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.982529 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.982531 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.982532 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.982533 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:21.982534 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:21.990750 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:21.990752 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.990766 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:21.990767 LLDP, length 82 [|LLDP] 19:07:21.990777 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:21.990778 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e25 c6d7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:21.990780 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:21.990781 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:21.990782 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:21.990784 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:21.990785 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:21.990786 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.990787 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:21.990788 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:21.990789 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:22.001768 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.001770 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.001777 LLDP, length 82 [|LLDP] 19:07:22.001787 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.001788 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e2e 2d3d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.001790 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.001791 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.001792 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.001793 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.001794 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.001802 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.001804 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.001805 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.012765 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.012767 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.012774 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.012774 LLDP, length 82 [|LLDP] 19:07:22.012784 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.012785 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e36 93a4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.012786 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.012788 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.012789 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.021024 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.021025 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.021034 LLDP, length 82 [|LLDP] 19:07:22.021041 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.021042 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e3c e070 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.021044 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.021045 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.021046 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.021050 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.032090 LLDP, length 82 [|LLDP] 19:07:22.032108 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.032109 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e45 46de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.032113 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.032114 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.032116 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.032146 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.032148 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.032152 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.043123 LLDP, length 82 [|LLDP] 19:07:22.043144 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.043146 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e4d ad3d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.043149 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.043150 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.043151 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.043153 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.043155 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.043157 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.043193 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.043197 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.043198 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.043209 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.043212 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:22.043213 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:22.051372 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.051376 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.051396 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.051398 LLDP, length 82 [|LLDP] 19:07:22.051420 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.051421 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e53 fa0a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.051422 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.051423 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.051424 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.051426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.051427 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.051429 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.051430 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.051431 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:22.051431 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:22.062386 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.062389 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.062411 LLDP, length 82 [|LLDP] 19:07:22.062433 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.062434 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e5c 6071 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.062436 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.062437 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.062439 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.062441 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.062442 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.062452 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.062455 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.062456 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.062457 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:22.062458 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:22.070639 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.070642 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.070662 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.070664 LLDP, length 82 [|LLDP] 19:07:22.070684 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.070685 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e62 ad3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.070687 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.070688 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.070689 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.070691 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.070692 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.070693 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.070695 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.070696 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:22.070697 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:22.081657 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.081661 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.081682 LLDP, length 82 [|LLDP] 19:07:22.081701 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.081702 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e6b 13a4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.081704 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.081705 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.081706 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.081708 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.081710 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.081720 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.081722 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.081724 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.081725 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:22.081726 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:22.092658 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.092662 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.092683 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.092684 LLDP, length 82 [|LLDP] 19:07:22.092703 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.092704 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e73 7a0b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.092705 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.092707 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.092708 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.092710 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.092712 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.092713 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.092714 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.092715 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:22.092716 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:22.100942 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.100947 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.100975 LLDP, length 82 [|LLDP] 19:07:22.101003 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.101004 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e79 c6d7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.101006 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.101008 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.101009 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.101011 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.101012 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.101022 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.101025 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.101026 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.111895 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.111898 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.111914 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.111915 LLDP, length 82 [|LLDP] 19:07:22.111932 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.111933 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e82 2d3f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.111935 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.111936 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.111938 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.122874 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.122876 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.122885 LLDP, length 82 [|LLDP] 19:07:22.122896 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.122897 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e8a 93a4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.122898 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.122899 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.122901 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.122905 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.131120 LLDP, length 82 [|LLDP] 19:07:22.131130 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.131130 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e90 e072 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.131133 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.131134 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.131135 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.131144 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.131145 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.131148 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.142148 LLDP, length 82 [|LLDP] 19:07:22.142164 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.142166 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0e99 46d9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.142168 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.142170 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.142171 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.142172 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.142173 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.142174 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.142188 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.142190 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.142191 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.142199 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.142202 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:22.142203 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:22.153170 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.153173 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.153184 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.153185 LLDP, length 82 [|LLDP] 19:07:22.153202 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.153203 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ea1 ad3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.153205 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.153206 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.153207 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.153209 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.153211 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.153212 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.153213 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.153214 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:22.153215 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:22.161416 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.161424 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.161436 LLDP, length 82 [|LLDP] 19:07:22.161448 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.161449 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ea7 fa0b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.161450 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.161451 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.161452 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.161453 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.161455 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.161462 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.161464 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.161466 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.161467 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:22.161468 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:22.172423 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.172425 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.172447 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.172448 LLDP, length 82 [|LLDP] 19:07:22.172458 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.172459 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0eb0 6072 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.172461 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.172462 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.172463 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.172465 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.172467 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.172468 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.172469 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.172470 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:22.172471 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:22.180683 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.180684 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.180700 LLDP, length 82 [|LLDP] 19:07:22.180712 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.180713 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0eb6 ad3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.180715 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.180716 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.180717 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.180718 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.180719 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.180727 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.180729 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.180730 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.180731 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:22.180732 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:22.191701 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.191703 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.191718 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.191719 LLDP, length 82 [|LLDP] 19:07:22.191730 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.191732 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ebf 13a4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.191733 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.191734 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.191736 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.191737 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.191739 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.191740 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.191740 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.191742 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:22.191743 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:22.202709 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.202711 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.202720 LLDP, length 82 [|LLDP] 19:07:22.202732 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.202733 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ec7 7a0b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.202734 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.202736 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.202737 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.202738 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.202739 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.202746 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.202748 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.202749 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.210952 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.210955 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.210964 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.210966 LLDP, length 82 [|LLDP] 19:07:22.210977 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.210978 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ecd c6d8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.210980 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.210981 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.210983 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.221962 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.221965 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.221974 LLDP, length 82 [|LLDP] 19:07:22.221985 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.221986 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ed6 2d3d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.221988 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.221989 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.221990 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.221994 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.232972 LLDP, length 82 [|LLDP] 19:07:22.232984 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.232985 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ede 93a4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.232987 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.232988 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.232989 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.233000 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.233001 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.233004 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.241234 LLDP, length 82 [|LLDP] 19:07:22.241249 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.241250 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ee4 e070 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.241252 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.241253 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.241254 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.241256 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.241257 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.241258 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.241270 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.241272 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.241273 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.241279 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.241281 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:22.241282 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:22.252241 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.252242 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.252257 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.252258 LLDP, length 82 [|LLDP] 19:07:22.252270 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.252271 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0eed 46d7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.252273 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.252274 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.252276 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.252277 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.252279 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.252280 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.252281 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.252282 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:22.252283 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:22.263250 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.263252 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.263266 LLDP, length 82 [|LLDP] 19:07:22.263276 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.263277 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ef5 ad3d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.263278 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.263279 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.263280 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.263281 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.263283 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.263290 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.263292 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.263293 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.263294 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:22.263295 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:22.271505 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.271506 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.271521 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.271522 LLDP, length 82 [|LLDP] 19:07:22.271532 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.271533 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0efb fa0a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.271535 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.271536 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.271537 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.271539 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.271540 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.271541 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.271542 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.271543 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:22.271544 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:22.282530 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.282532 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.282548 LLDP, length 82 [|LLDP] 19:07:22.282559 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.282560 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f04 6077 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.282561 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.282563 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.282564 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.282565 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.282566 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.282574 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.282576 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.282577 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.282578 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:22.282579 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:22.290775 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.290777 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.290792 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.290793 LLDP, length 82 [|LLDP] 19:07:22.290804 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.290804 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f0a ad3d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.290806 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.290807 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.290808 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.290810 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.290811 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.290812 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.290813 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.290814 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:22.290815 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:22.301793 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.301794 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.301802 LLDP, length 82 [|LLDP] 19:07:22.301811 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.301813 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f13 13a3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.301814 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.301815 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.301816 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.301817 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.301819 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.301825 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.301827 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.301828 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.312784 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.312785 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.312792 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.312793 LLDP, length 82 [|LLDP] 19:07:22.312803 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.312804 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f1b 7a0a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.312806 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.312807 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.312808 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.321045 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.321047 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.321055 LLDP, length 82 [|LLDP] 19:07:22.321064 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.321065 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f21 c6d7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.321079 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.321081 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.321082 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.321086 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.332077 LLDP, length 82 [|LLDP] 19:07:22.332093 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.332101 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f2a 2d3d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.332104 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.332105 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.332107 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.332127 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.332129 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.332133 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.343083 LLDP, length 82 [|LLDP] 19:07:22.343094 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.343094 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f32 93a4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.343097 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.343098 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.343099 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.343100 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.343102 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.343103 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.343116 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.343118 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.343120 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.343127 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.343130 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:22.343131 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:22.351330 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.351332 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.351345 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.351346 LLDP, length 82 [|LLDP] 19:07:22.351356 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.351357 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f38 e071 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.351359 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.351360 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.351361 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.351363 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.351364 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.351365 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.351367 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.351368 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:22.351369 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:22.362337 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.362339 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.362352 LLDP, length 82 [|LLDP] 19:07:22.362362 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.362364 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f41 46d7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.362365 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.362366 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.362368 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.362369 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.362370 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.362377 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.362379 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.362380 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.362381 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:22.362382 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:22.370595 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.370597 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.370610 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.370611 LLDP, length 82 [|LLDP] 19:07:22.370622 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.370623 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f47 93a4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.370625 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.370626 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.370628 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.370629 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.370630 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.370632 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.370633 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.370633 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:22.370634 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:22.381603 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.381604 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.381618 LLDP, length 82 [|LLDP] 19:07:22.381628 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.381629 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f4f fa0b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.381631 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.381632 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.381633 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.381634 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.381635 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.381642 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.381644 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.381645 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.381646 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:22.381647 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:22.392613 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.392615 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.392629 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.392630 LLDP, length 82 [|LLDP] 19:07:22.392640 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.392641 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f58 6072 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.392643 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.392644 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.392645 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.392646 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.392648 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.392649 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.392650 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.392651 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:22.392652 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:22.400879 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.400881 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.400888 LLDP, length 82 [|LLDP] 19:07:22.400897 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.400898 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f5e ad45 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.400900 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.400901 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.400902 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.400904 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.400905 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.400912 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.400914 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.400915 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.411874 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.411875 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.411882 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.411883 LLDP, length 82 [|LLDP] 19:07:22.411894 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.411895 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f67 13a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.411896 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.411898 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.411899 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.422884 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.422886 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.422893 LLDP, length 82 [|LLDP] 19:07:22.422902 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.422903 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f6f 7a0b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.422904 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.422905 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.422906 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.422910 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.431141 LLDP, length 82 [|LLDP] 19:07:22.431151 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.431152 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f75 c6d8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.431154 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.431155 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.431157 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.431164 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.431165 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.431168 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.442162 LLDP, length 82 [|LLDP] 19:07:22.442171 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.442171 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f7e 2d3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.442174 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.442175 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.442176 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.442178 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.442179 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.442180 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.442192 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.442194 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.442195 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.442202 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.442204 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:22.442205 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:22.453172 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.453174 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.453181 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.453183 LLDP, length 82 [|LLDP] 19:07:22.453193 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.453194 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f86 93a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.453196 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.453197 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.453198 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.453200 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.453201 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.453202 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.453203 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.453204 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:22.453204 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:22.461421 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.461422 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.461439 LLDP, length 82 [|LLDP] 19:07:22.461450 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.461451 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f8c e071 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.461453 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.461454 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.461455 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.461456 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.461457 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.461464 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.461467 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.461467 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.461468 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:22.461469 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:22.472438 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.472440 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.472455 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.472456 LLDP, length 82 [|LLDP] 19:07:22.472466 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.472467 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f95 46d8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.472468 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.472470 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.472471 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.472473 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.472474 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.472475 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.472476 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.472477 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:22.472478 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:22.480691 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.480692 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.480706 LLDP, length 82 [|LLDP] 19:07:22.480715 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.480716 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0f9b 93a4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.480718 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.480719 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.480721 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.480722 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.480723 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.480730 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.480731 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.480732 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.480733 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:22.480734 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:22.491708 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.491710 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.491725 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.491726 LLDP, length 82 [|LLDP] 19:07:22.491736 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.491737 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fa3 fa0a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.491739 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.491740 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.491741 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.491743 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.491744 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.491745 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.491746 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.491747 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:22.491748 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:22.502723 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.502725 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.502732 LLDP, length 82 [|LLDP] 19:07:22.502743 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.502743 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fac 6070 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.502745 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.502746 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.502748 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.502749 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.502750 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.502757 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.502759 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.502760 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.510966 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.510968 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.510975 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.510976 LLDP, length 82 [|LLDP] 19:07:22.510986 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.510987 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fb2 ad3d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.510989 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.510991 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.510992 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.521977 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.521979 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.521986 LLDP, length 82 [|LLDP] 19:07:22.521996 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.521997 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fbb 13a4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.521999 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.522000 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.522001 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.522004 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.532990 LLDP, length 82 [|LLDP] 19:07:22.532999 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.533000 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fc3 7a11 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.533003 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.533004 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.533005 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.533013 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.533014 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.533017 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.541249 LLDP, length 82 [|LLDP] 19:07:22.541262 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.541263 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fc9 c6d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.541265 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.541266 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.541267 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.541268 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.541269 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.541270 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.541281 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.541282 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.541284 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.541290 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.541292 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:22.541293 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:22.552256 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.552257 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.552271 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.552272 LLDP, length 82 [|LLDP] 19:07:22.552282 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.552283 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fd2 2d3d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.552284 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.552286 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.552287 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.552288 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.552289 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.552291 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.552292 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.552293 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:22.552295 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:22.563269 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.563271 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.563284 LLDP, length 82 [|LLDP] 19:07:22.563293 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.563294 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fda 93a4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.563296 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.563297 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.563298 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.563300 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.563301 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.563308 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.563310 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.563311 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.563312 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:22.563313 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:22.571525 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.571527 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.571540 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.571541 LLDP, length 82 [|LLDP] 19:07:22.571552 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.571553 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fe0 e071 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.571554 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.571555 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.571556 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.571558 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.571560 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.571561 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.571561 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.571562 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:22.571563 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:22.582534 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.582536 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.582552 LLDP, length 82 [|LLDP] 19:07:22.582561 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.582562 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fe9 46d7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.582563 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.582564 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.582566 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.582567 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.582568 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.582575 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.582576 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.582578 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.582579 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:22.582580 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:22.590796 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.590797 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.590811 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.590812 LLDP, length 82 [|LLDP] 19:07:22.590822 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.590823 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0fef 93a3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.590825 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.590826 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.590827 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.590829 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.590830 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.590832 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.590833 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.590834 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:22.590835 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:22.601811 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.601813 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.601820 LLDP, length 82 [|LLDP] 19:07:22.601829 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.601830 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 0ff7 fa0b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.601831 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.601832 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.601834 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.601835 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.601836 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.601843 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.601845 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.601846 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.612808 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.612809 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.612816 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.612818 LLDP, length 82 [|LLDP] 19:07:22.612826 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.612827 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1000 6071 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.612829 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.612831 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.612832 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.621064 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.621066 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.621073 LLDP, length 82 [|LLDP] 19:07:22.621082 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.621083 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1006 ad3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.621085 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.621086 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.621087 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.621091 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.632074 LLDP, length 82 [|LLDP] 19:07:22.632083 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.632084 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 100f 13a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.632086 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.632088 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.632089 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.632096 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.632098 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.632100 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.643090 LLDP, length 82 [|LLDP] 19:07:22.643102 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.643103 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1017 7a0b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.643105 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.643106 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.643107 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.643108 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.643110 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.643111 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.643121 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.643123 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.643125 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.643130 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.643132 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:22.643133 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:22.651346 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.651347 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.651360 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.651362 LLDP, length 82 [|LLDP] 19:07:22.651372 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.651373 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 101d c6de 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.651375 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.651376 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.651377 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.651379 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.651380 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.651381 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.651382 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.651383 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:22.651384 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:22.662362 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.662371 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.662382 LLDP, length 82 [|LLDP] 19:07:22.662393 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.662394 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1026 2d3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.662395 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.662396 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.662398 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.662399 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.662400 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.662408 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.662409 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.662411 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.662412 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:22.662412 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:22.670618 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.670620 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.670633 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.670634 LLDP, length 82 [|LLDP] 19:07:22.670643 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.670644 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 102c 7a0b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.670646 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.670647 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.670648 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.670650 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.670651 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.670652 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.670653 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.670654 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:22.670656 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:22.681623 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.681625 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.681638 LLDP, length 82 [|LLDP] 19:07:22.681647 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.681648 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1034 e072 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.681650 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.681651 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.681653 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.681654 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.681655 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.681661 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.681663 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.681664 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.681665 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:22.681666 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:22.692635 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.692637 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.692651 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.692652 LLDP, length 82 [|LLDP] 19:07:22.692662 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.692663 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 103d 46d8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.692665 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.692666 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.692667 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.692668 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.692670 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.692671 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.692672 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.692673 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:22.692674 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:22.700902 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.700903 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.700910 LLDP, length 82 [|LLDP] 19:07:22.700921 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.700921 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1043 93a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.700923 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.700924 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.700925 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.700927 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.700928 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.700935 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.700937 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.700938 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.711899 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.711901 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.711907 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.711908 LLDP, length 82 [|LLDP] 19:07:22.711918 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.711919 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 104b fa0b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.711921 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.711922 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.711924 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.722909 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.722911 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.722919 LLDP, length 82 [|LLDP] 19:07:22.722928 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.722929 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1054 6072 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.722931 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.722932 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.722933 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.722937 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.731168 LLDP, length 82 [|LLDP] 19:07:22.731178 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.731179 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 105a ad3f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.731181 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.731182 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.731183 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.731191 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.731192 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.731195 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.742183 LLDP, length 82 [|LLDP] 19:07:22.742195 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.742196 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1063 13a4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.742199 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.742200 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.742202 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.742202 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.742203 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.742204 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.742216 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.742218 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.742220 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.742226 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.742228 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:22.742229 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:22.753189 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.753191 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.753204 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.753205 LLDP, length 82 [|LLDP] 19:07:22.753215 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.753216 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 106b 7a0b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.753218 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.753219 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.753220 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.753222 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.753223 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.753224 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.753225 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.753226 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:22.753227 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:22.761444 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.761445 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.761459 LLDP, length 82 [|LLDP] 19:07:22.761468 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.761469 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1071 c6d8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.761471 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.761472 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.761473 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.761475 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.761476 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.761483 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.761485 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.761486 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.761487 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:22.761488 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:22.772455 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.772456 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.772469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.772470 LLDP, length 82 [|LLDP] 19:07:22.772480 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.772481 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 107a 2d3d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.772482 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.772484 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.772485 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.772486 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.772488 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.772488 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.772489 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.772490 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:22.772491 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:22.780713 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.780715 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.780727 LLDP, length 82 [|LLDP] 19:07:22.780737 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.780738 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1080 7a0a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.780739 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.780741 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.780742 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.780743 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.780744 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.780751 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.780753 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.780754 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.780756 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:22.780756 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:22.791722 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.791724 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.791737 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.791739 LLDP, length 82 [|LLDP] 19:07:22.791749 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.791750 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1088 e071 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.791751 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.791753 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.791754 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.791755 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.791757 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.791758 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.791759 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.791760 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:22.791762 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:22.802745 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.802747 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.802753 LLDP, length 82 [|LLDP] 19:07:22.802762 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.802763 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1091 46d7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.802765 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.802766 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.802767 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.802768 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.802769 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.802776 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.802778 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.802779 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.810986 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.810988 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.810994 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.810996 LLDP, length 82 [|LLDP] 19:07:22.811006 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.811007 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1097 93a3 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.811008 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.811010 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.811012 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.822010 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.822012 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.822021 LLDP, length 82 [|LLDP] 19:07:22.822032 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.822034 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 109f fa09 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.822035 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.822036 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.822037 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.822042 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.833005 LLDP, length 82 [|LLDP] 19:07:22.833014 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.833015 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10a8 6070 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.833017 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.833019 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:22.833020 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.833021 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.833032 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.833033 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.833036 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.841270 LLDP, length 82 [|LLDP] 19:07:22.841284 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.841285 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10ae ad3d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.841287 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.841288 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.841290 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.841291 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.841292 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.841301 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.841303 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.841304 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.841309 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.841311 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.841313 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:22.841313 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:22.852278 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.852279 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.852293 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.852294 LLDP, length 82 [|LLDP] 19:07:22.852305 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.852306 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10b7 13a4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.852308 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.852309 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.852311 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.852312 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.852313 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.852314 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.852315 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.852316 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:22.852317 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:22.860540 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.860542 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.860556 LLDP, length 82 [|LLDP] 19:07:22.860564 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.860566 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10bd 6070 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.860567 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.860568 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.860569 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.860570 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.860576 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.860579 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.860580 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.860581 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.860582 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:22.860583 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:22.871568 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.871571 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.871581 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.871583 LLDP, length 82 [|LLDP] 19:07:22.871597 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.871598 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10c5 c6d7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.871600 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.871601 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.871603 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.871604 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.871605 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.871607 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.871607 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.871608 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:22.871609 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:22.882562 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.882564 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.882573 LLDP, length 82 [|LLDP] 19:07:22.882584 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.882585 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10ce 2d3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.882586 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.882588 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.882589 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.882590 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.882597 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.882599 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.882600 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.882601 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.882602 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:22.882603 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:22.890821 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.890823 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.890836 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.890838 LLDP, length 82 [|LLDP] 19:07:22.890847 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.890849 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10d4 7a0a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.890850 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.890851 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.890853 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.890854 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.890855 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.890856 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.890857 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.890858 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:22.890859 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:22.901838 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.901841 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.901849 LLDP, length 82 [|LLDP] 19:07:22.901859 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.901860 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10dc e077 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.901862 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.901863 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.901864 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.901865 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.901871 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.901872 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.901873 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.912836 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.912838 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.912846 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.912847 LLDP, length 82 [|LLDP] 19:07:22.912857 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.912858 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10e5 46d7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.912859 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.912861 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.912862 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.921084 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.921086 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.921094 LLDP, length 82 [|LLDP] 19:07:22.921104 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.921106 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10eb 93a4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.921107 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.921108 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.921110 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.921114 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.932106 LLDP, length 82 [|LLDP] 19:07:22.932115 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.932115 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10f3 fa0b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.932117 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.932119 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.932120 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.932129 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.932131 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.932133 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.943127 LLDP, length 82 [|LLDP] 19:07:22.943142 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.943143 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 10fc 6071 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.943146 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.943147 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.943148 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.943149 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.943150 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.943151 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.943165 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.943166 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.943168 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.943174 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.943177 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:22.943178 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:22.951373 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.951374 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.951388 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.951389 LLDP, length 82 [|LLDP] 19:07:22.951401 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.951401 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1102 ad3f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.951403 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.951404 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.951405 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.951407 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.951408 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.951409 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.951410 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.951411 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:22.951412 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:22.962384 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.962386 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.962400 LLDP, length 82 [|LLDP] 19:07:22.962411 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.962412 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 110b 13a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.962414 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.962415 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.962416 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.962418 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.962419 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.962426 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.962428 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.962429 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.962430 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:22.962432 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:22.970636 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.970637 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.970651 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.970652 LLDP, length 82 [|LLDP] 19:07:22.970663 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.970664 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1111 6071 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.970665 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.970667 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.970668 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.970669 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.970671 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.970672 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.970672 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.970673 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:22.970674 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:22.981646 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.981648 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.981662 LLDP, length 82 [|LLDP] 19:07:22.981672 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.981673 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1119 c6d8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.981674 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.981675 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.981677 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.981678 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.981679 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.981686 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.981688 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.981689 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.981690 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:22.981691 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:22.992654 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:22.992656 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.992669 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:22.992671 LLDP, length 82 [|LLDP] 19:07:22.992681 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:22.992682 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1122 2d3f 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:22.992683 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:22.992684 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:22.992685 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:22.992687 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:22.992688 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:22.992689 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.992690 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:22.992691 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:22.992692 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:23.000921 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:23.000923 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.000929 LLDP, length 82 [|LLDP] 19:07:23.000938 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:23.000939 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1128 7a0b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:23.000941 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:23.000942 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:23.000943 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:23.000945 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:23.000946 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.000953 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:23.000955 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:23.000956 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:23.011920 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:23.011922 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.011930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.011931 LLDP, length 82 [|LLDP] 19:07:23.011940 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:23.011941 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1130 e071 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:23.011943 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:23.011945 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:23.011946 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:23.022929 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:23.022930 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.022938 LLDP, length 82 [|LLDP] 19:07:23.022947 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:23.022948 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1139 46d7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:23.022950 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:23.022951 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:23.022952 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.022956 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:23.031188 LLDP, length 82 [|LLDP] 19:07:23.031196 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:23.031197 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 113f 93a4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:23.031200 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:23.031201 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:23.031202 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.031210 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.031211 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:23.031214 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:23.042206 LLDP, length 82 [|LLDP] 19:07:23.042220 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:23.042221 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1147 fa0b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:23.042223 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:23.042224 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:23.042225 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:23.042226 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:23.042228 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:23.042229 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.042240 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:23.042241 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:23.042243 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.042249 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:23.042251 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:23.042252 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:23.053210 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:23.053212 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.053225 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.053226 LLDP, length 82 [|LLDP] 19:07:23.053236 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:23.053237 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1150 6071 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:23.053239 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:23.053240 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:23.053241 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:23.053243 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:23.053244 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:23.053245 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:23.053246 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:23.053247 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:23.053248 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:23.061467 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:23.061469 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.061482 LLDP, length 82 [|LLDP] 19:07:23.061491 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:23.061492 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1156 ad3d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:23.061494 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:23.061495 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:23.061496 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:23.061498 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:23.061499 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.061506 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:23.061507 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:23.061508 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:23.061509 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:23.061510 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:23.072476 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:23.072478 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.072491 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.072492 LLDP, length 82 [|LLDP] 19:07:23.072501 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:23.072502 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 115f 13a9 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:23.072504 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:23.072505 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:23.072507 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:23.072508 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:23.072510 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:23.072511 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:23.072512 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:23.072513 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:23.072519 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:23.080736 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:23.080737 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.080752 LLDP, length 82 [|LLDP] 19:07:23.080761 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:23.080762 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1165 6070 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:23.080764 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:23.080765 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:23.080766 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:23.080767 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:23.080769 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.080776 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:23.080777 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:23.080779 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:23.080780 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:23.080781 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:23.091747 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:23.091748 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.091763 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.091764 LLDP, length 82 [|LLDP] 19:07:23.091774 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:23.091775 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 116d c6d7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:23.091777 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:23.091778 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:23.091779 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:23.091781 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:23.091782 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:23.091783 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:23.091784 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:23.091785 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:23.091786 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:23.102757 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:23.102759 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.102766 LLDP, length 82 [|LLDP] 19:07:23.102775 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:23.102775 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1176 2d3d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:23.102777 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:23.102779 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:23.102780 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:23.102781 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:23.102782 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.102789 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:23.102791 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:23.102792 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:23.111070 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:23.111073 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.111095 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.111096 LLDP, length 82 [|LLDP] 19:07:23.111114 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:23.111115 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 117c 7a09 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:23.111117 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:23.111119 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:23.111120 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:23.122073 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:23.122076 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.122097 LLDP, length 82 [|LLDP] 19:07:23.122114 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:23.122115 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1184 e071 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:23.122117 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:23.122118 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:23.122120 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.122125 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:23.133049 LLDP, length 82 [|LLDP] 19:07:23.133060 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:23.133061 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 118d 46d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:23.133064 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:23.133065 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:23.133066 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:23.133067 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:23.133068 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.133080 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.133081 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:23.133084 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:23.133085 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:23.133086 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:23.133088 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:23.133089 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:23.141294 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:23.141295 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.141309 LLDP, length 82 [|LLDP] 19:07:23.141320 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:23.141321 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1193 93a4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:23.141322 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:23.141324 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:23.141324 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:23.141326 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:23.141327 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.141334 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:23.141336 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:23.141338 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:23.141339 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:23.141340 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:23.152303 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:23.152304 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.152318 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.152319 LLDP, length 82 [|LLDP] 19:07:23.152331 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:23.152332 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 119b fa11 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:23.152334 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:23.152335 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:23.152337 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:23.152339 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:23.152340 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:23.152341 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:23.152342 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:23.152343 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:23.152344 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:23.160558 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:23.160560 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.160576 LLDP, length 82 [|LLDP] 19:07:23.160586 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:23.160586 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11a2 46d7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:23.160588 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:23.160589 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:23.160590 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:23.160591 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:23.160593 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.160600 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:23.160602 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:23.160603 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:23.160604 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:23.160605 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:23.171567 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:23.171569 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.171585 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.171586 LLDP, length 82 [|LLDP] 19:07:23.171596 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:23.171597 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11aa ad3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:23.171599 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:23.171600 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:23.171602 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:23.171604 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:23.171605 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:23.171606 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:23.171607 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:23.171609 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:23.171610 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:23.182578 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:23.182579 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.182594 LLDP, length 82 [|LLDP] 19:07:23.182604 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:23.182605 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11b3 13a4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:23.182606 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:23.182607 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:23.182609 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:23.182610 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:23.182611 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.182618 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:23.182620 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:23.182621 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:23.182622 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:23.182623 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:23.190843 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:23.190845 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.190852 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.190854 LLDP, length 82 [|LLDP] 19:07:23.190865 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:23.190866 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11b9 6071 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:23.190867 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:23.190869 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:23.190870 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:23.190871 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:23.190873 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:23.190874 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:23.190875 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:23.201841 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:23.201842 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.201849 LLDP, length 82 [|LLDP] 19:07:23.201859 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:23.201860 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11c1 c6d8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:23.201862 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:23.201863 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:23.201864 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.201868 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:23.212853 LLDP, length 82 [|LLDP] 19:07:23.212861 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:23.212862 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11ca 2d3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:23.212864 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:23.212865 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:23.212867 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.212875 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.212876 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:23.212879 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:23.221114 LLDP, length 82 [|LLDP] 19:07:23.221124 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:23.221125 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11d0 7a0b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:23.221127 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:23.221128 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:23.221129 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:23.221130 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.221141 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.221142 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:23.232127 LLDP, length 82 [|LLDP] 19:07:23.232141 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:23.232142 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11d8 e072 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:23.232144 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:23.232146 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:23.232147 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:23.232148 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:23.232149 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.232161 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.232162 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:23.232165 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:23.232166 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:23.232168 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:23.232170 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:23.232171 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:23.243133 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:23.243135 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.243147 LLDP, length 82 [|LLDP] 19:07:23.243157 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:23.243158 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11e1 46d8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:23.243160 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:23.243161 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:23.243162 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:23.243164 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:23.243165 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.243172 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:23.243174 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:23.243175 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:23.243176 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:23.243177 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:23.251399 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:23.251407 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.251418 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.251419 LLDP, length 82 [|LLDP] 19:07:23.251430 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:23.251431 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11e7 93a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:23.251433 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:23.251434 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:23.251435 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:23.251436 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:23.251437 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:23.251439 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:23.251440 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:23.251441 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:23.251443 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:23.262403 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:23.262404 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.262419 LLDP, length 82 [|LLDP] 19:07:23.262429 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:23.262430 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11ef fa0b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:23.262432 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:23.262433 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:23.262434 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:23.262435 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:23.262437 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.262444 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:23.262446 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:23.262447 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:23.262449 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:23.262450 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:23.270661 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:23.270663 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.270676 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.270677 LLDP, length 82 [|LLDP] 19:07:23.270688 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:23.270689 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11f6 46df 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:23.270690 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:23.270691 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:23.270692 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:23.270694 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:23.270695 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:23.270696 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:23.270697 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:23.270698 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:23.270699 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:23.281666 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:23.281668 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.281682 LLDP, length 82 [|LLDP] 19:07:23.281691 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:23.281692 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 11fe ad3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:23.281693 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:23.281694 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:23.281696 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:23.281697 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:23.281698 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.281705 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:23.281708 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:23.281709 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:23.281709 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:23.281711 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:23.292690 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:23.292692 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.292699 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.292700 LLDP, length 82 [|LLDP] 19:07:23.292710 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:23.292711 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1207 13a5 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:23.292713 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:23.292713 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:23.292714 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:23.292716 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:23.292717 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:23.292731 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:23.292733 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:23.300955 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:23.300957 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.300966 LLDP, length 82 [|LLDP] 19:07:23.300981 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:23.300982 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 120d 6071 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:23.300983 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:23.300985 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:23.300986 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.300991 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:23.311947 LLDP, length 82 [|LLDP] 19:07:23.311957 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:23.311958 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1215 c6d8 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:23.311961 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:23.311962 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:23.311963 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.311972 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.311973 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:23.311976 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:23.322957 LLDP, length 82 [|LLDP] 19:07:23.322965 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:23.322966 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 121e 2d41 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:23.322968 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:23.322969 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:23.322970 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:23.322971 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.322981 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.322982 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:23.331200 LLDP, length 82 [|LLDP] 19:07:23.331209 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:23.331210 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1224 7a0b 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:23.331212 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:23.331214 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.342230 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:23.342232 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:23.342233 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:23.342240 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.342252 LLDP, length 82 [|LLDP] 19:07:23.342262 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:23.342263 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 122c e070 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:23.342265 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:23.342266 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:23.342267 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:23.342268 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:23.342269 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.342279 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:23.342281 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:23.342282 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:23.350480 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:23.350482 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.350495 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.350496 LLDP, length 82 [|LLDP] 19:07:23.350506 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:23.350507 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1233 2d41 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:23.350508 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:23.350509 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:23.350510 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:23.350512 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:23.350513 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:23.350514 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:23.350515 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:23.350516 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:23.350517 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:23.361491 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:23.361493 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.361506 LLDP, length 82 [|LLDP] 19:07:23.361517 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:23.361517 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 123b 93a4 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:23.361519 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:23.361521 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:23.361522 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:23.361523 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:23.361524 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.361531 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:23.361533 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:23.361534 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:23.361535 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:23.361536 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:23.372501 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:23.372503 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.372516 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.372517 LLDP, length 82 [|LLDP] 19:07:23.372527 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:23.372528 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1243 fa0a 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:23.372529 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:23.372530 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:23.372531 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:23.372532 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:23.372534 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:23.372536 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:23.372537 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:23.372538 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:23.372539 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:23.380754 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:23.380756 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.380769 LLDP, length 82 [|LLDP] 19:07:23.380779 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:23.380780 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 124a 46d6 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:23.380781 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:23.380782 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:23.380784 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:23.380785 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:23.380785 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.380792 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:23.380794 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:23.380795 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:23.380796 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:23.380797 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:23.391767 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:23.391769 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.391782 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.391783 LLDP, length 82 [|LLDP] 19:07:23.391793 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:23.391794 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1252 ad3d 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:23.391795 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:23.391796 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:23.391797 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:23.391798 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:23.391800 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:23.391802 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:23.391803 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:23.391804 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:23.391805 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:23.402785 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:23.402787 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.402794 LLDP, length 82 [|LLDP] 19:07:23.402804 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:23.402805 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 125b 13aa 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:23.402806 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:23.402807 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:23.402808 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:23.402810 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:23.402811 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.402818 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:23.402819 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:23.402820 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:23.411030 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:23.411032 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.411039 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.411040 LLDP, length 82 [|LLDP] 19:07:23.411050 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:23.411050 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1261 6071 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:23.411052 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:23.411053 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:23.411055 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:23.422039 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:23.422040 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.422047 LLDP, length 82 [|LLDP] 19:07:23.422056 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:23.422057 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1269 c6d7 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:23.422059 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:23.422060 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:23.422061 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.422065 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:23.433062 LLDP, length 82 [|LLDP] 19:07:23.433076 IP 1.1.1.2 > 224.0.0.2: ip-proto-61 58 19:07:23.433076 unknown (69), length 116 0x0000: 4500 0070 0000 0000 403d 7a52 0000 0000 0x0010: 0000 0000 ecc0 d680 6f76 8300 4978 6960 0x0020: 0000 0002 1011 1213 1272 2d3e 0040 1a1b 0x0030: 1c1d 1e1f 2021 2223 2425 2627 2829 2a2b 0x0040: 2c2d 2e2f 3031 3233 3435 3637 3839 3a3b 0x0050: 3c3d 3e3f 4041 4243 4445 4647 4849 4a4b 0x0060: 4c4d 4e4f 5051 5253 5455 5657 5859 9cdd 0x0070: 5555 5555 19:07:23.433079 IP 1.1.1.2 > 224.0.0.5: ip-proto-61 58 19:07:23.433080 IP 1.1.1.2 > 224.0.0.18: ip-proto-61 58 19:07:23.433081 IP 1.1.1.2 > 100.1.1.253: ip-proto-61 58 19:07:23.433082 IP 1.1.1.2.51708 > 100.1.1.253.22: Flags [none], seq 0:38, win 0, length 38 19:07:23.433083 IP 1.1.1.2 > 100.1.1.255: ip-proto-61 58 19:07:23.433084 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.433096 ARP, Unknown Hardware (17664) (len 0), Unknown Protocol (0x004e) (len 0), length 82 19:07:23.433097 IP 1.1.1.2.16009 > 100.1.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:23.433099 IP 192.168.1.1.48529 > 192.168.1.253.23: Flags [none], seq 0:38, win 0, length 38 19:07:23.433101 IP 0.0.0.0.67 > 255.255.255.255.68: BOOTP/DHCP, unknown (0xec), length 300 19:07:23.433102 IP 1.1.1.2 > 100.1.1.253: ICMP net 16.17.18.19 unreachable, length 58 19:07:23.433103 IP 1.1.1.2.179 > 100.1.1.253.179: Flags [none], seq 0:38, win 0, length 38: BGP 19:07:26.999848 LLDP, length 230: dentlab-infra2 tcpdump: verbose output suppressed, use -v or -vv for full protocol decode listening on swp33, link-type EN10MB (Ethernet), capture size 262144 bytes 7805 packets captured 7805 packets received by filter 0 packets dropped by kernel -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_bum_traffic_port_without_rif from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_bum_traffic_port.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=45, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=45, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=7] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=45, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=45, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=8] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 19:07:32 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=45, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=45, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 INFO asyncssh:logging.py:92 [conn=45, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=10] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 INFO asyncssh:logging.py:92 [conn=45, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=45, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=45, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=11] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=45, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=12] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=45, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=12] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"b2:b2:ed:f9:e0:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"f6:33:41:29:6d:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=45, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=45, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=45, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=14] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=45, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=45, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=45, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=15] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=45, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=45, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=16] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 19:07:32 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=45, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=45, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=17] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=45, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=45, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=18] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 19:07:32 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=45, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=45, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=45, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=45, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=45, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=45, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=45, chan=20] Channel closed DEBUG infra2:Logger.py:156 [] | |||
| Passed | functional/bridging/test_bridging_forwarding.py::test_bridging_backward_forwarding | 142.49 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_backward_forwarding">Starting testcase:test_bridging_backward_forwarding from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-2590' coro=<test_bridging_backward_forwarding() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py:50> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=45, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=46] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=46] Local address: 172.17.0.3, port 58004 INFO asyncssh:logging.py:92 [conn=46] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=46] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=46] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=46, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=46, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 19:07:32 UTC 2023 INFO asyncssh:logging.py:92 [conn=46, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=46, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=46, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=46, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=46, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=46, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=46, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=46, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=46, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=46, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=46, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=46, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=46, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=46, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=7] Channel closed DEBUG infra2:Logger.py:156 bridge link set dev swp33 learning on flood off && bridge link set dev swp34 learning on flood off && bridge link set dev swp35 learning on flood off && bridge link set dev swp36 learning on flood off INFO asyncssh:logging.py:92 [conn=46, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=8] Command: bridge link set dev swp33 learning on flood off && bridge link set dev swp34 learning on flood off && bridge link set dev swp35 learning on flood off && bridge link set dev swp36 learning on flood off INFO asyncssh:logging.py:92 [conn=46, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:2:6' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for streamA INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for streamB INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f75ba500>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:5 TI streamA SIP-DIP N/A Tx 218 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:5 TI streamB SIP-DIP N/A Tx 218 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=46, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=46, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=9] Channel closed DEBUG infra2:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=46, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=10] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=46, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=10] Channel closed DEBUG infra2:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:82","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:12","ifname":"swp33","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"aa:bb:cc:dd:ee:11","ifname":"swp33","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:12:01:00:00:01","ifname":"swp33","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:11:01:00:00:01","ifname":"swp33","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"18:be:92:13:64:a5","ifname":"swp33","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a5","ifname":"swp33","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a5","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"18:be:92:13:64:a6","ifname":"swp34","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a6","ifname":"swp34","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a6","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"18:be:92:13:64:a7","ifname":"swp35","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a7","ifname":"swp35","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a7","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"18:be:92:13:64:a8","ifname":"swp36","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a8","ifname":"swp36","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a8","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:48:84:96","ifname":"br0","flags":["self"],"state":"permanent"}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_backward_forwarding from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=46, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=46, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=11] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=46, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=46, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=12] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 19:09:54 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=46, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=46, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=46, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=46, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=14] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 19:09:54 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=46, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=46, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=46, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=46, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":97,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=46, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=46, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=46, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=46, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=46, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=46, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=46, chan=18] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/bridging/test_bridging_forwarding.py::test_bridging_forward_block_different_packets | 185.08 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_forward_block_different_packets">Starting testcase:test_bridging_forward_block_different_packets from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-2618' coro=<test_bridging_forward_block_different_packets() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py:152> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=46, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=47] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=47] Local address: 172.17.0.3, port 39680 INFO asyncssh:logging.py:92 [conn=47] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=47] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=47] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=47, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=47, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=47, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=47, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=47, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 19:09:55 UTC 2023 INFO asyncssh:logging.py:92 [conn=47, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=47, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=47, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=47, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=47, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=47, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=47, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=47, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=47, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=47, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=47, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=47, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=47, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=47, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=47, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=47, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=47, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=47, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=47, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=47, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=47, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=47, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=47, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=47, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=47, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=47, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=47, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=47, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=47, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=47, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:2:7' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_Broadcast INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_Reserved_MC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_All_Systems_on_this_Subnet INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_All_Routers_on_this_Subnet INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_OSPFIGP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_RIP2_Routers INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_EIGRP_Routers INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_DHCP_Server/Relay_Agent INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_VRRP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for IPv4_IGMP INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f75bb370>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPv4_Broadcast SIP-DIP N/A Tx 599 Rx 599 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPv4_Reserved_MC SIP-DIP N/A Tx 599 Rx 599 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPv4_All_Systems_on_this_Subnet SIP-DIP N/A Tx 599 Rx 599 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPv4_All_Routers_on_this_Subnet SIP-DIP N/A Tx 599 Rx 599 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPv4_OSPFIGP SIP-DIP N/A Tx 599 Rx 599 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPv4_RIP2_Routers SIP-DIP N/A Tx 599 Rx 599 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPv4_EIGRP_Routers SIP-DIP N/A Tx 599 Rx 599 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPv4_DHCP_Server/Relay_Agent SIP-DIP N/A Tx 599 Rx 599 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPv4_VRRP SIP-DIP N/A Tx 599 Rx 599 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI IPv4_IGMP SIP-DIP N/A Tx 599 Rx 599 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_forward_block_different_packets from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=47, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=47, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=47, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=47, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=47, chan=7] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=47, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=47, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=47, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=47, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=47, chan=8] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 19:12:59 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=47, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=47, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=47, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=47, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=47, chan=9] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=47, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=47, chan=10] Command: date INFO asyncssh:logging.py:92 [conn=47, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=47, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=47, chan=10] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 19:12:59 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=47, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=47, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=47, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=47, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=47, chan=11] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=47, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=47, chan=12] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=47, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=47, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=47, chan=12] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":98,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=47, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=47, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=47, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=47, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=47, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=47, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=47, chan=14] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=47, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=47, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=47, chan=14] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/bridging/test_bridging_forwarding.py::test_bridging_fdb_flush_on_down | 119.98 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_fdb_flush_on_down">Starting testcase:test_bridging_fdb_flush_on_down from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-2642' coro=<test_bridging_fdb_flush_on_down() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py:345> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=47, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=48] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=48] Local address: 172.17.0.3, port 40928 INFO asyncssh:logging.py:92 [conn=48] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=48] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=48] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=48, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=48, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 19:13:00 UTC 2023 INFO asyncssh:logging.py:92 [conn=48, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=48, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=48, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=48, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=48, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=48, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=48, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=48, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=48, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=48, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=48, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=48, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=48, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=48, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=7] Channel closed DEBUG infra2:Logger.py:156 bridge link set dev swp33 learning on flood off && bridge link set dev swp34 learning on flood off && bridge link set dev swp35 learning on flood off && bridge link set dev swp36 learning on flood off INFO asyncssh:logging.py:92 [conn=48, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=8] Command: bridge link set dev swp33 learning on flood off && bridge link set dev swp34 learning on flood off && bridge link set dev swp35 learning on flood off && bridge link set dev swp36 learning on flood off INFO asyncssh:logging.py:92 [conn=48, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_11.0.0.1/24', 'count': 1, 'ip': '11.0.0.1', 'gw': '11.0.0.2', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_11.0.0.2/24', 'count': 1, 'ip': '11.0.0.2', 'gw': '11.0.0.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:2:7' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_11.0.0.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_11.0.0.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f75b8ac0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI bridge SIP-DIP N/A Tx 200 Rx 200 Loss 0.000 INFO asyncssh:logging.py:92 [conn=48, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=48, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=9] Channel closed DEBUG infra2:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=48, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=10] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=48, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=10] Channel closed DEBUG infra2:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:82","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"00:11:01:00:00:01","ifname":"swp33","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"18:be:92:13:64:a5","ifname":"swp33","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a5","ifname":"swp33","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a5","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:11","ifname":"swp34","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:12:01:00:00:01","ifname":"swp34","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"18:be:92:13:64:a6","ifname":"swp34","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a6","ifname":"swp34","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a6","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"18:be:92:13:64:a7","ifname":"swp35","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a7","ifname":"swp35","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a7","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"18:be:92:13:64:a8","ifname":"swp36","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a8","ifname":"swp36","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a8","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:fd:17:ce","ifname":"br0","flags":["self"],"state":"permanent"}] INFO asyncssh:logging.py:92 [conn=48, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=48, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=11] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp34 down INFO asyncssh:logging.py:92 [conn=48, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=12] Command: ip link set dev swp34 down INFO asyncssh:logging.py:92 [conn=48, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=48, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=48, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=13] Channel closed DEBUG infra2:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=48, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=14] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=48, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=14] Channel closed DEBUG infra2:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:82","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"00:11:01:00:00:01","ifname":"swp33","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"18:be:92:13:64:a5","ifname":"swp33","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a5","ifname":"swp33","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a5","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"18:be:92:13:64:a6","ifname":"swp34","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a6","ifname":"swp34","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"18:be:92:13:64:a7","ifname":"swp35","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a7","ifname":"swp35","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a7","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"18:be:92:13:64:a8","ifname":"swp36","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a8","ifname":"swp36","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a8","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:fd:17:ce","ifname":"br0","flags":["self"],"state":"permanent"}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_fdb_flush_on_down from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=48, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=48, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=15] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=48, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=48, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=16] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 19:14:59 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=48, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=48, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=17] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=48, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=48, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=18] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 19:14:59 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=48, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=48, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=48, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=48, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=20] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":99,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=48, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=48, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=48, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=48, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=48, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=48, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=48, chan=22] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/bridging/test_bridging_forwarding.py::test_bridging_traffic_from_nomaster | 194.89 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_traffic_from_nomaster">Starting testcase:test_bridging_traffic_from_nomaster from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-2674' coro=<test_bridging_traffic_from_nomaster() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py:456> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=48, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=49] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=49] Local address: 172.17.0.3, port 53936 INFO asyncssh:logging.py:92 [conn=49] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=49] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=49] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=49, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=49, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 19:15:00 UTC 2023 INFO asyncssh:logging.py:92 [conn=49, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=49, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=49, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=49, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=49, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=49, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=49, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=49, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=49, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=49, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=49, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=49, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=49, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=49, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=7] Channel closed DEBUG infra2:Logger.py:156 bridge link set dev swp33 learning off flood off && bridge link set dev swp34 learning off flood off && bridge link set dev swp35 learning off flood off && bridge link set dev swp36 learning off flood off INFO asyncssh:logging.py:92 [conn=49, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=8] Command: bridge link set dev swp33 learning off flood off && bridge link set dev swp34 learning off flood off && bridge link set dev swp35 learning off flood off && bridge link set dev swp36 learning off flood off INFO asyncssh:logging.py:92 [conn=49, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=49, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=49, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=9] Channel closed DEBUG infra2:Logger.py:156 bridge fdb add aa:bb:cc:dd:ee:11 dev swp33 static master && bridge fdb add aa:bb:cc:dd:ee:12 dev swp34 static master && bridge fdb add aa:bb:cc:dd:ee:13 dev swp35 static master && bridge fdb add aa:bb:cc:dd:ee:14 dev swp36 static master INFO asyncssh:logging.py:92 [conn=49, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=10] Command: bridge fdb add aa:bb:cc:dd:ee:11 dev swp33 static master && bridge fdb add aa:bb:cc:dd:ee:12 dev swp34 static master && bridge fdb add aa:bb:cc:dd:ee:13 dev swp35 static master && bridge fdb add aa:bb:cc:dd:ee:14 dev swp36 static master INFO asyncssh:logging.py:92 [conn=49, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=49, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=49, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=11] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 nomaster INFO asyncssh:logging.py:92 [conn=49, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=12] Command: ip link set dev swp33 nomaster INFO asyncssh:logging.py:92 [conn=49, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f75edb10>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:8 Rx 10.36.118.199:2:5 TI bridge_1 SIP-DIP N/A Tx 211 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:6 TI bridge_2 SIP-DIP N/A Tx 211 Rx 211 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:7 TI bridge_3 SIP-DIP N/A Tx 211 Rx 211 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI bridge_4 SIP-DIP N/A Tx 211 Rx 0 Loss 100.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_traffic_from_nomaster from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=49, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=49, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=49, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=49, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=14] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 19:18:14 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=49, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=49, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=15] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=49, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=49, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=16] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 19:18:14 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=49, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=49, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=49, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=49, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=18] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":100,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=49, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=49, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=49, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=49, chan=20] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=49, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=49, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=49, chan=20] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/bridging/test_bridging_forwarding.py::test_bridging_unregistered_traffic | 219.34 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_unregistered_traffic">Starting testcase:test_bridging_unregistered_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-2704' coro=<test_bridging_unregistered_traffic() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py:570> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=49, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=50] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=50] Local address: 172.17.0.3, port 54568 INFO asyncssh:logging.py:92 [conn=50] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=50] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=50] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=50, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=50, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 19:18:15 UTC 2023 INFO asyncssh:logging.py:92 [conn=50, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=50, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=50, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=50, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=50, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=50, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=50, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=50, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=50, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=50, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=50, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=50, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for streamA INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for streamB INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for streamC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f75edf60>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI streamA SIP-DIP N/A Tx 5277 Rx 5277 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI streamB SIP-DIP N/A Tx 5277 Rx 5277 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI streamC SIP-DIP N/A Tx 5277 Rx 5277 Loss 0.000 INFO asyncssh:logging.py:92 [conn=50, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=50, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=7] Channel closed DEBUG infra2:Logger.py:156 bridge link set dev swp33 flood off && bridge link set dev swp34 flood off && bridge link set dev swp35 flood off && bridge link set dev swp36 flood off INFO asyncssh:logging.py:92 [conn=50, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=8] Command: bridge link set dev swp33 flood off && bridge link set dev swp34 flood off && bridge link set dev swp35 flood off && bridge link set dev swp36 flood off INFO asyncssh:logging.py:92 [conn=50, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f75ef0a0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI streamA SIP-DIP N/A Tx 8975 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI streamB SIP-DIP N/A Tx 8975 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI streamC SIP-DIP N/A Tx 8975 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=50, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=50, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=9] Channel closed DEBUG infra2:Logger.py:156 bridge link set dev swp33 flood on && bridge link set dev swp34 flood on && bridge link set dev swp35 flood on && bridge link set dev swp36 flood on INFO asyncssh:logging.py:92 [conn=50, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=10] Command: bridge link set dev swp33 flood on && bridge link set dev swp34 flood on && bridge link set dev swp35 flood on && bridge link set dev swp36 flood on INFO asyncssh:logging.py:92 [conn=50, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f75ec850>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI streamA SIP-DIP N/A Tx 8940 Rx 8940 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI streamB SIP-DIP N/A Tx 8940 Rx 8940 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI streamC SIP-DIP N/A Tx 8940 Rx 8940 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_unregistered_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=50, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=50, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=11] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=50, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=50, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=12] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 19:21:53 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=50, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=50, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=50, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=50, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=14] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 19:21:54 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=50, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=50, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=50, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=50, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":101,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=50, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=50, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=50, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=50, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=50, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=50, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=50, chan=18] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/bridging/test_bridging_forwarding.py::test_bridging_wrong_fcs | 144.48 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_wrong_fcs">Starting testcase:test_bridging_wrong_fcs from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-2732' coro=<test_bridging_wrong_fcs() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py:717> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=50, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=51] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=51] Local address: 172.17.0.3, port 52644 INFO asyncssh:logging.py:92 [conn=51] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=51] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=51] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=51, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=51, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 19:21:54 UTC 2023 INFO asyncssh:logging.py:92 [conn=51, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=51, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=51, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=51, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=51, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=51, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=51, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=51, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=51, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=51, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=51, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=51, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=51, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=51, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=7] Channel closed DEBUG infra2:Logger.py:156 bridge link set dev swp33 learning on flood on && bridge link set dev swp34 learning on flood on && bridge link set dev swp35 learning on flood on && bridge link set dev swp36 learning on flood on INFO asyncssh:logging.py:92 [conn=51, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=8] Command: bridge link set dev swp33 learning on flood on && bridge link set dev swp34 learning on flood on && bridge link set dev swp35 learning on flood on && bridge link set dev swp36 learning on flood on INFO asyncssh:logging.py:92 [conn=51, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:2:7' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f75eee30>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI bridge SIP-DIP N/A Tx 200 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=51, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=51, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=9] Channel closed DEBUG infra2:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=51, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=10] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=51, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=10] Channel closed DEBUG infra2:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:82","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"00:11:01:00:00:01","ifname":"swp33","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"18:be:92:13:64:a5","ifname":"swp33","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a5","ifname":"swp33","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a5","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"00:12:01:00:00:01","ifname":"swp34","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"18:be:92:13:64:a6","ifname":"swp34","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a6","ifname":"swp34","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a6","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"18:be:92:13:64:a7","ifname":"swp35","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a7","ifname":"swp35","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a7","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"18:be:92:13:64:a8","ifname":"swp36","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a8","ifname":"swp36","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a8","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:e9:1f:02","ifname":"br0","flags":["self"],"state":"permanent"}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_wrong_fcs from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_forwarding.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=51, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=51, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=11] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=51, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=51, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=12] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 19:24:18 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=51, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=51, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=51, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=51, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=14] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 19:24:18 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=51, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=51, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=51, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=51, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":102,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=51, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=51, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=51, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=51, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=51, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=51, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=51, chan=18] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/bridging/test_bridging_full_fdb_traffic.py::test_bridging_full_fdb_traffic | 210.07 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_full_fdb_traffic">Starting testcase:test_bridging_full_fdb_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_full_fdb_traffic.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-2760' coro=<test_bridging_full_fdb_traffic() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_full_fdb_traffic.py:46> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=51, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=52] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=52] Local address: 172.17.0.3, port 49726 INFO asyncssh:logging.py:92 [conn=52] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=52] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=52] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=52, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=52, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 19:24:19 UTC 2023 INFO asyncssh:logging.py:92 [conn=52, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=52, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=52, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=52, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=52, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=52, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=52, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=52, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=52, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=52, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=52, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=52, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:2:7' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f759b7c0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_1 Tx 89853 Rx 89853 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=52, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=52, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=7] Channel closed DEBUG infra2:Logger.py:156 bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=52, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=8] Command: bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=52, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=8] Channel closed DEBUG infra2:Logger.py:156 16002 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f75ed0f0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_2 Tx 90606 Rx 90606 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=52, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=52, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=9] Channel closed DEBUG infra2:Logger.py:156 bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=52, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=10] Command: bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=52, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=10] Channel closed DEBUG infra2:Logger.py:156 16002 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_full_fdb_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_full_fdb_traffic.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=52, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=52, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=11] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=52, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=52, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=12] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 19:27:48 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=52, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=52, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=52, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=52, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=14] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 19:27:48 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=52, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=52, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=52, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=52, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":103,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=52, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=52, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=52, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=52, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=52, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=52, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=52, chan=18] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/bridging/test_bridging_jumbo_frame.py::test_bridging_frame_max_size | 186.03 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-2788' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_frame_max_size">Starting testcase:test_bridging_frame_max_size from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_jumbo_frame.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=52, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=53] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=53] Local address: 172.17.0.3, port 44154 INFO asyncssh:logging.py:92 [conn=53] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=53] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=53] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=53, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=53, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 19:27:49 UTC 2023 INFO asyncssh:logging.py:92 [conn=53, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=53, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=53, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=53, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=2] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"b2:b2:ed:f9:e0:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"f6:33:41:29:6d:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=53, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=53, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=3] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=53, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=4] Command: date INFO asyncssh:logging.py:92 [conn=53, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=4] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 19:27:49 UTC 2023 INFO asyncssh:logging.py:92 [conn=53, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=53, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=53, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=6] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=53, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=53, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=53, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=53, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=8] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=53, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=53, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=53, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=53, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=10] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=53, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=53, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=53, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=11] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 mtu 9000 master br0 && ip link set dev swp34 mtu 9000 master br0 && ip link set dev swp35 mtu 9000 master br0 && ip link set dev swp36 mtu 9000 master br0 INFO asyncssh:logging.py:92 [conn=53, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=12] Command: ip link set dev swp33 mtu 9000 master br0 && ip link set dev swp34 mtu 9000 master br0 && ip link set dev swp35 mtu 9000 master br0 && ip link set dev swp36 mtu 9000 master br0 INFO asyncssh:logging.py:92 [conn=53, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=53, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=53, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=13] Channel closed DEBUG infra2:Logger.py:156 bridge link set dev swp33 learning on flood off && bridge link set dev swp34 learning on flood off && bridge link set dev swp35 learning on flood off && bridge link set dev swp36 learning on flood off INFO asyncssh:logging.py:92 [conn=53, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=14] Command: bridge link set dev swp33 learning on flood off && bridge link set dev swp34 learning on flood off && bridge link set dev swp35 learning on flood off && bridge link set dev swp36 learning on flood off INFO asyncssh:logging.py:92 [conn=53, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=53, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=53, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=15] Channel closed DEBUG infra2:Logger.py:156 bridge fdb add aa:bb:cc:dd:ee:11 dev swp33 static master && bridge fdb add aa:bb:cc:dd:ee:12 dev swp34 static master && bridge fdb add aa:bb:cc:dd:ee:13 dev swp35 static master && bridge fdb add aa:bb:cc:dd:ee:14 dev swp36 static master INFO asyncssh:logging.py:92 [conn=53, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=16] Command: bridge fdb add aa:bb:cc:dd:ee:11 dev swp33 static master && bridge fdb add aa:bb:cc:dd:ee:12 dev swp34 static master && bridge fdb add aa:bb:cc:dd:ee:13 dev swp35 static master && bridge fdb add aa:bb:cc:dd:ee:14 dev swp36 static master INFO asyncssh:logging.py:92 [conn=53, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f75ba200>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:8 Rx 10.36.118.199:2:5 TI bridge_1 SIP-DIP N/A Tx 306 Rx 306 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:6 TI bridge_2 SIP-DIP N/A Tx 306 Rx 306 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:7 TI bridge_3 SIP-DIP N/A Tx 306 Rx 306 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI bridge_4 SIP-DIP N/A Tx 306 Rx 306 Loss 0.000 INFO asyncssh:logging.py:92 [conn=53, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=53, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=17] Channel closed DEBUG infra2:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=53, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=18] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=53, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=18] Channel closed DEBUG infra2:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:82","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"00:11:01:00:00:01","ifname":"swp33","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"aa:bb:cc:dd:ee:11","ifname":"swp33","vlan":1,"flags":["offload"],"master":"br0","state":"static"},{"mac":"aa:bb:cc:dd:ee:11","ifname":"swp33","flags":["offload"],"master":"br0","state":"static"},{"mac":"18:be:92:13:64:a5","ifname":"swp33","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a5","ifname":"swp33","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a5","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"00:12:01:00:00:01","ifname":"swp34","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"aa:bb:cc:dd:ee:12","ifname":"swp34","vlan":1,"flags":["offload"],"master":"br0","state":"static"},{"mac":"aa:bb:cc:dd:ee:12","ifname":"swp34","flags":["offload"],"master":"br0","state":"static"},{"mac":"18:be:92:13:64:a6","ifname":"swp34","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a6","ifname":"swp34","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a6","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"00:13:01:00:00:01","ifname":"swp35","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"aa:bb:cc:dd:ee:13","ifname":"swp35","vlan":1,"flags":["offload"],"master":"br0","state":"static"},{"mac":"aa:bb:cc:dd:ee:13","ifname":"swp35","flags":["offload"],"master":"br0","state":"static"},{"mac":"18:be:92:13:64:a7","ifname":"swp35","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a7","ifname":"swp35","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a7","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"00:14:01:00:00:01","ifname":"swp36","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"aa:bb:cc:dd:ee:14","ifname":"swp36","vlan":1,"flags":["offload"],"master":"br0","state":"static"},{"mac":"aa:bb:cc:dd:ee:14","ifname":"swp36","flags":["offload"],"master":"br0","state":"static"},{"mac":"18:be:92:13:64:a8","ifname":"swp36","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a8","ifname":"swp36","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a8","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:43:91:44","ifname":"br0","flags":["self"],"state":"permanent"}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_frame_max_size from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_jumbo_frame.py INFO asyncssh:logging.py:92 [conn=53, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=53, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 mtu 1500 && ip link set dev swp34 mtu 1500 && ip link set dev swp35 mtu 1500 && ip link set dev swp36 mtu 1500 INFO asyncssh:logging.py:92 [conn=53, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=20] Command: ip link set dev swp33 mtu 1500 && ip link set dev swp34 mtu 1500 && ip link set dev swp35 mtu 1500 && ip link set dev swp36 mtu 1500 INFO asyncssh:logging.py:92 [conn=53, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=53, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=53, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=21] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=53, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=53, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=22] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 19:30:54 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=53, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=53, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=23] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=53, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=53, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=24] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 19:30:54 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=53, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=53, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=25] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=53, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=26] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=53, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=26] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":104,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=53, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=53, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=27] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=53, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=53, chan=28] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=53, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=53, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=53, chan=28] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/bridging/test_bridging_jumbo_frame.py::test_bridging_jumbo_frame_min_size | 187.31 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-2828' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_jumbo_frame_min_size">Starting testcase:test_bridging_jumbo_frame_min_size from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_jumbo_frame.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=53, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=54] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=54] Local address: 172.17.0.3, port 53960 INFO asyncssh:logging.py:92 [conn=54] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=54] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=54] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=54, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=54, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 19:30:55 UTC 2023 INFO asyncssh:logging.py:92 [conn=54, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=54, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=54, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=54, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=2] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"b2:b2:ed:f9:e0:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"f6:33:41:29:6d:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=54, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=54, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=3] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=54, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=4] Command: date INFO asyncssh:logging.py:92 [conn=54, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=4] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 19:30:55 UTC 2023 INFO asyncssh:logging.py:92 [conn=54, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=54, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=54, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=6] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=54, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=54, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=54, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=54, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=8] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=54, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=54, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=54, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=54, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=10] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=54, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=54, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=54, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=11] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 mtu 1510 master br0 && ip link set dev swp34 mtu 1510 master br0 && ip link set dev swp35 mtu 1510 master br0 && ip link set dev swp36 mtu 1510 master br0 INFO asyncssh:logging.py:92 [conn=54, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=12] Command: ip link set dev swp33 mtu 1510 master br0 && ip link set dev swp34 mtu 1510 master br0 && ip link set dev swp35 mtu 1510 master br0 && ip link set dev swp36 mtu 1510 master br0 INFO asyncssh:logging.py:92 [conn=54, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=54, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=54, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=13] Channel closed DEBUG infra2:Logger.py:156 bridge link set dev swp33 learning on flood off && bridge link set dev swp34 learning on flood off && bridge link set dev swp35 learning on flood off && bridge link set dev swp36 learning on flood off INFO asyncssh:logging.py:92 [conn=54, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=14] Command: bridge link set dev swp33 learning on flood off && bridge link set dev swp34 learning on flood off && bridge link set dev swp35 learning on flood off && bridge link set dev swp36 learning on flood off INFO asyncssh:logging.py:92 [conn=54, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f75b82b0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_1 Tx 308 Rx 307 Frames Delta 1 Loss 0.325 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_2 Tx 308 Rx 307 Frames Delta 1 Loss 0.325 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 Tx 308 Rx 307 Frames Delta 1 Loss 0.325 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_4 Tx 308 Rx 307 Frames Delta 1 Loss 0.325 INFO asyncssh:logging.py:92 [conn=54, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=54, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=15] Channel closed DEBUG infra2:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=54, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=16] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=54, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:82","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:11","ifname":"swp33","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:11:01:00:00:01","ifname":"swp33","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"18:be:92:13:64:a5","ifname":"swp33","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a5","ifname":"swp33","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a5","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:12","ifname":"swp34","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:12:01:00:00:01","ifname":"swp34","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"18:be:92:13:64:a6","ifname":"swp34","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a6","ifname":"swp34","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a6","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:13","ifname":"swp35","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:13:01:00:00:01","ifname":"swp35","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"18:be:92:13:64:a7","ifname":"swp35","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a7","ifname":"swp35","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a7","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:14","ifname":"swp36","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:14:01:00:00:01","ifname":"swp36","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"18:be:92:13:64:a8","ifname":"swp36","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a8","ifname":"swp36","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a8","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:e6:80:7d","ifname":"br0","flags":["self"],"state":"permanent"}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_jumbo_frame_min_size from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_jumbo_frame.py INFO asyncssh:logging.py:92 [conn=54, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=54, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 mtu 1500 && ip link set dev swp34 mtu 1500 && ip link set dev swp35 mtu 1500 && ip link set dev swp36 mtu 1500 INFO asyncssh:logging.py:92 [conn=54, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=18] Command: ip link set dev swp33 mtu 1500 && ip link set dev swp34 mtu 1500 && ip link set dev swp35 mtu 1500 && ip link set dev swp36 mtu 1500 INFO asyncssh:logging.py:92 [conn=54, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=54, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=54, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=19] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=54, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=54, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=20] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 19:34:01 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=54, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=54, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=21] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=54, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=54, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=22] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 19:34:02 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=54, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=54, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=23] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=54, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=24] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=54, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=24] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":105,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=54, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=54, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=25] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=54, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=54, chan=26] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=54, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=54, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=54, chan=26] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/bridging/test_bridging_jumbo_frame.py::test_bridging_jumbo_frame_value_out_of_bounds | 198.30 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-2866' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_jumbo_frame_value_out_of_bounds">Starting testcase:test_bridging_jumbo_frame_value_out_of_bounds from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_jumbo_frame.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=54, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=55] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=55] Local address: 172.17.0.3, port 37110 INFO asyncssh:logging.py:92 [conn=55] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=55] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=55] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=55, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=55, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 19:34:02 UTC 2023 INFO asyncssh:logging.py:92 [conn=55, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=55, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=55, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=55, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=2] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"b2:b2:ed:f9:e0:51","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"f6:33:41:29:6d:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=55, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=55, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=3] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=55, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=4] Command: date INFO asyncssh:logging.py:92 [conn=55, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=4] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 19:34:02 UTC 2023 INFO asyncssh:logging.py:92 [conn=55, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=55, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=55, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=6] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=55, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=55, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=55, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=55, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=8] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=55, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=55, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=55, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=55, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=10] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=55, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=55, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=55, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=11] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 mtu 9001 master br0 && ip link set dev swp34 mtu 9001 master br0 && ip link set dev swp35 mtu 9001 master br0 && ip link set dev swp36 mtu 9001 master br0 INFO asyncssh:logging.py:92 [conn=55, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=12] Command: ip link set dev swp33 mtu 9001 master br0 && ip link set dev swp34 mtu 9001 master br0 && ip link set dev swp35 mtu 9001 master br0 && ip link set dev swp36 mtu 9001 master br0 INFO asyncssh:logging.py:92 [conn=55, chan=12] Received exit status 2 INFO asyncssh:logging.py:92 [conn=55, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=12] Channel closed DEBUG infra2:Logger.py:156 Error: mtu greater than device maximum. INFO asyncssh:logging.py:92 [conn=55, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=55, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=13] Channel closed DEBUG infra2:Logger.py:156 bridge link set dev swp33 learning on flood off && bridge link set dev swp34 learning on flood off && bridge link set dev swp35 learning on flood off && bridge link set dev swp36 learning on flood off INFO asyncssh:logging.py:92 [conn=55, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=14] Command: bridge link set dev swp33 learning on flood off && bridge link set dev swp34 learning on flood off && bridge link set dev swp35 learning on flood off && bridge link set dev swp36 learning on flood off INFO asyncssh:logging.py:92 [conn=55, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f75ecd60>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:8 Rx 10.36.118.199:2:5 TI bridge_1 SIP-DIP N/A Tx 304 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:6 TI bridge_2 SIP-DIP N/A Tx 304 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:7 TI bridge_3 SIP-DIP N/A Tx 304 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI bridge_4 SIP-DIP N/A Tx 304 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=55, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=55, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=15] Channel closed DEBUG infra2:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=55, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=16] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=55, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:82","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"00:11:01:00:00:01","ifname":"swp33","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"18:be:92:13:64:a5","ifname":"swp33","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a5","ifname":"swp33","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a5","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"00:12:01:00:00:01","ifname":"swp34","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"18:be:92:13:64:a6","ifname":"swp34","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a6","ifname":"swp34","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a6","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"00:13:01:00:00:01","ifname":"swp35","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"18:be:92:13:64:a7","ifname":"swp35","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a7","ifname":"swp35","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a7","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"00:14:01:00:00:01","ifname":"swp36","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"18:be:92:13:64:a8","ifname":"swp36","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a8","ifname":"swp36","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a8","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:0d:69:7c","ifname":"br0","flags":["self"],"state":"permanent"}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_jumbo_frame_value_out_of_bounds from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_jumbo_frame.py INFO asyncssh:logging.py:92 [conn=55, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=55, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 mtu 1500 && ip link set dev swp34 mtu 1500 && ip link set dev swp35 mtu 1500 && ip link set dev swp36 mtu 1500 INFO asyncssh:logging.py:92 [conn=55, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=18] Command: ip link set dev swp33 mtu 1500 && ip link set dev swp34 mtu 1500 && ip link set dev swp35 mtu 1500 && ip link set dev swp36 mtu 1500 INFO asyncssh:logging.py:92 [conn=55, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=55, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=55, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=19] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=55, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=55, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=20] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 19:37:20 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=55, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=55, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=21] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=55, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=55, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=22] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 19:37:20 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=55, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=55, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=23] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=55, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=24] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=55, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=24] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":106,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=55, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=55, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=25] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=55, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=55, chan=26] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=55, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=55, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=55, chan=26] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/bridging/test_bridging_learning.py::test_bridging_learning_address | 187.35 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_learning_address">Starting testcase:test_bridging_learning_address from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_learning.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-2904' coro=<test_bridging_learning_address() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_learning.py:48> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=55, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=56] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=56] Local address: 172.17.0.3, port 41272 INFO asyncssh:logging.py:92 [conn=56] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=56] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=56] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=56, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=56, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 19:37:20 UTC 2023 INFO asyncssh:logging.py:92 [conn=56, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=56, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=56, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=56, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=56, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=56, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=56, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=56, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=56, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=56, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=56, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=56, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=56, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=56, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=7] Channel closed DEBUG infra2:Logger.py:156 bridge link set dev swp33 learning on flood off && bridge link set dev swp34 learning on flood off && bridge link set dev swp35 learning on flood off && bridge link set dev swp36 learning on flood off INFO asyncssh:logging.py:92 [conn=56, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=8] Command: bridge link set dev swp33 learning on flood off && bridge link set dev swp34 learning on flood off && bridge link set dev swp35 learning on flood off && bridge link set dev swp36 learning on flood off INFO asyncssh:logging.py:92 [conn=56, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f759b9a0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_1 Tx 307 Rx 306 Frames Delta 1 Loss 0.326 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_2 Tx 307 Rx 306 Frames Delta 1 Loss 0.326 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 Tx 307 Rx 306 Frames Delta 1 Loss 0.326 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_4 Tx 307 Rx 306 Frames Delta 1 Loss 0.326 INFO asyncssh:logging.py:92 [conn=56, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=56, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=9] Channel closed DEBUG infra2:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=56, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=10] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=56, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=10] Channel closed DEBUG infra2:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:82","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:11","ifname":"swp33","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:11:01:00:00:01","ifname":"swp33","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"18:be:92:13:64:a5","ifname":"swp33","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a5","ifname":"swp33","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a5","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:12","ifname":"swp34","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:12:01:00:00:01","ifname":"swp34","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"18:be:92:13:64:a6","ifname":"swp34","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a6","ifname":"swp34","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a6","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:13","ifname":"swp35","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:13:01:00:00:01","ifname":"swp35","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"18:be:92:13:64:a7","ifname":"swp35","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a7","ifname":"swp35","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a7","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:14","ifname":"swp36","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:14:01:00:00:01","ifname":"swp36","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"18:be:92:13:64:a8","ifname":"swp36","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a8","ifname":"swp36","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a8","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:01:c0:06","ifname":"br0","flags":["self"],"state":"permanent"}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_learning_address from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_learning.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=56, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=56, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=11] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=56, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=56, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=12] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 19:40:27 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=56, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=56, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=56, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=56, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=14] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 19:40:27 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=56, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=56, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=56, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=56, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":107,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=56, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=56, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=56, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=56, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=56, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=56, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=56, chan=18] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/bridging/test_bridging_learning.py::test_bridging_learning_address_rate | 165.10 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_learning_address_rate">Starting testcase:test_bridging_learning_address_rate from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_learning.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-2932' coro=<test_bridging_learning_address_rate() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_learning.py:148> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=56, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=57] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=57] Local address: 172.17.0.3, port 52338 INFO asyncssh:logging.py:92 [conn=57] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=57] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=57] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=57, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=57, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 19:40:28 UTC 2023 INFO asyncssh:logging.py:92 [conn=57, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=57, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=57, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=57, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=57, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=57, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=57, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=57, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=57, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=57, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=57, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=57, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:2:8' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for streamA INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for streamB INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f75efb20>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI streamA SIP-DIP N/A Tx 1812 Rx 1812 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI streamB SIP-DIP N/A Tx 1812 Rx 1812 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_learning_address_rate from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_learning.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=57, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=57, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=7] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=57, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=57, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=8] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 19:43:12 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=57, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=57, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=9] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=57, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=10] Command: date INFO asyncssh:logging.py:92 [conn=57, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=10] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 19:43:12 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=57, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=57, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=11] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=57, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=12] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=57, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=12] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":108,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=57, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=57, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=57, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=57, chan=14] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=57, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=57, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=57, chan=14] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/bridging/test_bridging_learning.py::test_bridging_learning_illegal_address | 191.04 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_learning_illegal_address">Starting testcase:test_bridging_learning_illegal_address from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_learning.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-2956' coro=<test_bridging_learning_illegal_address() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_learning.py:253> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=57, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=58] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=58] Local address: 172.17.0.3, port 44618 INFO asyncssh:logging.py:92 [conn=58] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=58] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=58] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=58, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=58, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=58, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=58, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=58, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 19:43:13 UTC 2023 INFO asyncssh:logging.py:92 [conn=58, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=58, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=58, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=58, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=58, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=58, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=58, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=58, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=58, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=58, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=58, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=58, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=58, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=58, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=58, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=58, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=58, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=58, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=58, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=58, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=58, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=58, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=58, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=58, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=58, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=58, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=58, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=58, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=58, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=58, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=58, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=58, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=58, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=58, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=58, chan=7] Channel closed DEBUG infra2:Logger.py:156 bridge link set dev swp33 learning on flood off && bridge link set dev swp34 learning on flood off && bridge link set dev swp35 learning on flood off && bridge link set dev swp36 learning on flood off INFO asyncssh:logging.py:92 [conn=58, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=58, chan=8] Command: bridge link set dev swp33 learning on flood off && bridge link set dev swp34 learning on flood off && bridge link set dev swp35 learning on flood off && bridge link set dev swp36 learning on flood off INFO asyncssh:logging.py:92 [conn=58, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=58, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=58, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for all_zeros INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for broadcast INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for multicast_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for multicast_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f74401c0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:8 Rx 10.36.118.199:2:5 TI all_zeros SIP-DIP N/A Tx 308 Rx 308 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:7 TI broadcast SIP-DIP N/A Tx 308 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:6 TI multicast_1 SIP-DIP N/A Tx 308 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI multicast_2 SIP-DIP N/A Tx 308 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=58, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=58, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=58, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=58, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=58, chan=9] Channel closed DEBUG infra2:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=58, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=58, chan=10] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=58, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=58, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=58, chan=10] Channel closed DEBUG infra2:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:82","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"00:11:01:00:00:01","ifname":"swp33","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"18:be:92:13:64:a5","ifname":"swp33","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a5","ifname":"swp33","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a5","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"00:12:01:00:00:01","ifname":"swp34","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"18:be:92:13:64:a6","ifname":"swp34","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a6","ifname":"swp34","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a6","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"00:13:01:00:00:01","ifname":"swp35","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"18:be:92:13:64:a7","ifname":"swp35","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a7","ifname":"swp35","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a7","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"00:14:01:00:00:01","ifname":"swp36","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"18:be:92:13:64:a8","ifname":"swp36","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a8","ifname":"swp36","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a8","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:e8:e5:57","ifname":"br0","flags":["self"],"state":"permanent"}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_learning_illegal_address from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_learning.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=58, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=58, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=58, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=58, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=58, chan=11] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=58, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=58, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=58, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=58, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=58, chan=12] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 19:46:23 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=58, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=58, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=58, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=58, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=58, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=58, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=58, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=58, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=58, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=58, chan=14] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 19:46:23 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=58, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=58, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=58, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=58, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=58, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=58, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=58, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=58, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=58, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=58, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":109,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=58, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=58, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=58, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=58, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=58, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=58, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=58, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=58, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=58, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=58, chan=18] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/bridging/test_bridging_learning.py::test_bridging_relearning_on_different_vlans | 397.20 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_relearning_on_different_vlans">Starting testcase:test_bridging_relearning_on_different_vlans from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_learning.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-2984' coro=<test_bridging_relearning_on_different_vlans() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_learning.py:385> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=58, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=59] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=59] Local address: 172.17.0.3, port 57242 INFO asyncssh:logging.py:92 [conn=59] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=59] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=59] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=59, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=59, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 19:46:24 UTC 2023 INFO asyncssh:logging.py:92 [conn=59, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=59, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=59, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=59, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=59, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=59, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=59, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=59, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=59, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=59, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 type bridge ageing_time 60000 INFO asyncssh:logging.py:92 [conn=59, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=6] Command: ip link set dev br0 type bridge ageing_time 60000 INFO asyncssh:logging.py:92 [conn=59, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=59, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=59, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=59, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=8] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=59, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=59, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=59, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=9] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp33 vid 2 && bridge vlan add dev swp33 vid 3 INFO asyncssh:logging.py:92 [conn=59, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=10] Command: bridge vlan add dev swp33 vid 2 && bridge vlan add dev swp33 vid 3 INFO asyncssh:logging.py:92 [conn=59, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=59, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=59, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=11] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp34 vid 2 && bridge vlan add dev swp34 vid 3 INFO asyncssh:logging.py:92 [conn=59, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=12] Command: bridge vlan add dev swp34 vid 2 && bridge vlan add dev swp34 vid 3 INFO asyncssh:logging.py:92 [conn=59, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=59, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=59, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=13] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp35 vid 2 && bridge vlan add dev swp35 vid 3 INFO asyncssh:logging.py:92 [conn=59, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=14] Command: bridge vlan add dev swp35 vid 2 && bridge vlan add dev swp35 vid 3 INFO asyncssh:logging.py:92 [conn=59, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f75ed4b0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_1 Tx 201 Rx 201 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_2 Tx 201 Rx 201 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=59, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=59, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=15] Channel closed DEBUG infra2:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=59, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=16] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=59, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:82","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:12","ifname":"swp33","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"aa:bb:cc:dd:ee:11","ifname":"swp33","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:11:01:00:00:01","ifname":"swp33","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"18:be:92:13:64:a5","ifname":"swp33","vlan":3,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a5","ifname":"swp33","vlan":2,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a5","ifname":"swp33","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a5","ifname":"swp33","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a5","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"00:12:01:00:00:01","ifname":"swp34","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"18:be:92:13:64:a6","ifname":"swp34","vlan":3,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a6","ifname":"swp34","vlan":2,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a6","ifname":"swp34","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a6","ifname":"swp34","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a6","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"00:13:01:00:00:01","ifname":"swp35","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"18:be:92:13:64:a7","ifname":"swp35","vlan":3,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a7","ifname":"swp35","vlan":2,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a7","ifname":"swp35","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a7","ifname":"swp35","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a7","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"00:14:01:00:00:01","ifname":"swp36","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"18:be:92:13:64:a8","ifname":"swp36","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a8","ifname":"swp36","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a8","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:09:bc:92","ifname":"br0","flags":["self"],"state":"permanent"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f7598880>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_1 Tx 201 Rx 201 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_2 Tx 201 Rx 201 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=59, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=59, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=17] Channel closed DEBUG infra2:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=59, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=18] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=59, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=18] Channel closed DEBUG infra2:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:82","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"00:11:01:00:00:01","ifname":"swp33","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"18:be:92:13:64:a5","ifname":"swp33","vlan":3,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a5","ifname":"swp33","vlan":2,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a5","ifname":"swp33","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a5","ifname":"swp33","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a5","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:12","ifname":"swp34","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"aa:bb:cc:dd:ee:11","ifname":"swp34","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:12:01:00:00:01","ifname":"swp34","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"18:be:92:13:64:a6","ifname":"swp34","vlan":3,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a6","ifname":"swp34","vlan":2,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a6","ifname":"swp34","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a6","ifname":"swp34","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a6","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"00:13:01:00:00:01","ifname":"swp35","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"18:be:92:13:64:a7","ifname":"swp35","vlan":3,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a7","ifname":"swp35","vlan":2,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a7","ifname":"swp35","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a7","ifname":"swp35","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a7","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"00:14:01:00:00:01","ifname":"swp36","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"18:be:92:13:64:a8","ifname":"swp36","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a8","ifname":"swp36","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a8","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:09:bc:92","ifname":"br0","flags":["self"],"state":"permanent"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f75ba650>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_1 Tx 198 Rx 198 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_2 Tx 198 Rx 198 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=59, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=59, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=19] Channel closed DEBUG infra2:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=59, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=20] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=59, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=20] Channel closed DEBUG infra2:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:82","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"00:11:01:00:00:01","ifname":"swp33","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"18:be:92:13:64:a5","ifname":"swp33","vlan":3,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a5","ifname":"swp33","vlan":2,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a5","ifname":"swp33","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a5","ifname":"swp33","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a5","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"00:12:01:00:00:01","ifname":"swp34","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"18:be:92:13:64:a6","ifname":"swp34","vlan":3,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a6","ifname":"swp34","vlan":2,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a6","ifname":"swp34","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a6","ifname":"swp34","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a6","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:12","ifname":"swp35","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"aa:bb:cc:dd:ee:11","ifname":"swp35","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"00:13:01:00:00:01","ifname":"swp35","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"18:be:92:13:64:a7","ifname":"swp35","vlan":3,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a7","ifname":"swp35","vlan":2,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a7","ifname":"swp35","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a7","ifname":"swp35","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a7","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"00:14:01:00:00:01","ifname":"swp36","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"18:be:92:13:64:a8","ifname":"swp36","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a8","ifname":"swp36","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a8","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:09:bc:92","ifname":"br0","flags":["self"],"state":"permanent"}] INFO asyncssh:logging.py:92 [conn=59, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=59, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=21] Channel closed DEBUG infra2:Logger.py:156 bridge -j fdb show dev swp33 INFO asyncssh:logging.py:92 [conn=59, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=22] Command: bridge -j fdb show dev swp33 INFO asyncssh:logging.py:92 [conn=59, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=22] Channel closed DEBUG infra2:Logger.py:156 [{"mac":"00:11:01:00:00:01","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"18:be:92:13:64:a5","vlan":3,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a5","vlan":2,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a5","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a5","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a5","flags":["self"],"state":"permanent"}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_relearning_on_different_vlans from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_learning.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=59, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=59, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=23] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=59, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=59, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=24] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 19:53:00 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=59, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=59, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=25] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=59, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=59, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=26] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 19:53:01 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=59, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=59, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=27] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=59, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=28] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=59, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=28] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":110,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=59, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=59, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=29] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=59, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=59, chan=30] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=59, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=59, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=59, chan=30] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/bridging/test_bridging_mac_table_size.py::test_bridging_mac_table_size | 139.81 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_mac_table_size">Starting testcase:test_bridging_mac_table_size from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_mac_table_size.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-3024' coro=<test_bridging_mac_table_size() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_mac_table_size.py:42> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=59, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=60] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=60] Local address: 172.17.0.3, port 50072 INFO asyncssh:logging.py:92 [conn=60] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=60] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=60] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=60, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 19:53:01 UTC 2023 INFO asyncssh:logging.py:92 [conn=60, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=60, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=60, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=60, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=60, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=60, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=60, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=60, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=60, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=60, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=7] Channel closed DEBUG infra2:Logger.py:156 bridge link set dev swp33 learning on && bridge link set dev swp34 learning on && bridge link set dev swp35 learning on && bridge link set dev swp36 learning on INFO asyncssh:logging.py:92 [conn=60, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=8] Command: bridge link set dev swp33 learning on && bridge link set dev swp34 learning on && bridge link set dev swp35 learning on && bridge link set dev swp36 learning on INFO asyncssh:logging.py:92 [conn=60, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:2:7' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for streamA INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f7443dc0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item streamA Tx 6006 Rx 6006 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=60, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=9] Channel closed DEBUG infra2:Logger.py:156 bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=60, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=10] Command: bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=60, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=10] Channel closed DEBUG infra2:Logger.py:156 4002 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_mac_table_size from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_mac_table_size.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=60, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=11] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=60, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=12] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 19:55:20 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=60, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=60, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=14] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 19:55:20 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=60, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=60, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=60, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":111,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=60, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=60, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=60, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=60, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=60, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=60, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=60, chan=18] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/bridging/test_bridging_packets.py::test_bridging_packets_oversize | 203.10 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_packets_oversize">Starting testcase:test_bridging_packets_oversize from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_packets.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-3052' coro=<test_bridging_packets_oversize() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_packets.py:47> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=60, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=61] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=61] Local address: 172.17.0.3, port 54692 INFO asyncssh:logging.py:92 [conn=61] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=61] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=61] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=61, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 19:55:21 UTC 2023 INFO asyncssh:logging.py:92 [conn=61, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=61, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=61, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=61, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=61, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=61, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=61, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=61, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=61, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=61, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=7] Channel closed DEBUG infra2:Logger.py:156 bridge link set dev swp33 learning on flood off && bridge link set dev swp34 learning on flood off && bridge link set dev swp35 learning on flood off && bridge link set dev swp36 learning on flood off INFO asyncssh:logging.py:92 [conn=61, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=8] Command: bridge link set dev swp33 learning on flood off && bridge link set dev swp34 learning on flood off && bridge link set dev swp35 learning on flood off && bridge link set dev swp36 learning on flood off INFO asyncssh:logging.py:92 [conn=61, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=61, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=9] Channel closed DEBUG infra2:Logger.py:156 ethtool -S swp33 INFO asyncssh:logging.py:92 [conn=61, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=10] Command: ethtool -S swp33 INFO asyncssh:logging.py:92 [conn=61, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=10] Channel closed DEBUG infra2:Logger.py:156 NIC statistics: good_octets_received: 2450546044 bad_octets_received: 1367517 mac_trans_error: 0 broadcast_frames_received: 16476 multicast_frames_received: 31736 frames_64_octets: 1257 frames_65_to_127_octets: 61433 frames_128_to_255_octets: 2798 frames_256_to_511_octets: 5850552 frames_512_to_1023_octets: 3531792 frames_1024_to_max_octets: 1227 excessive_collision: 0 multicast_frames_sent: 1777 broadcast_frames_sent: 844 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 0 fragments: 12036 oversize: 304 jabber: 0 rx_error_frame_received: 0 bad_crc: 6809 collisions: 1 late_collision: 0 unicast_frames_received: 7703208 unicast_frames_sent: 1688209 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 867776681 INFO asyncssh:logging.py:92 [conn=61, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=11] Channel closed DEBUG infra2:Logger.py:156 ethtool -S swp34 INFO asyncssh:logging.py:92 [conn=61, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=12] Command: ethtool -S swp34 INFO asyncssh:logging.py:92 [conn=61, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=12] Channel closed DEBUG infra2:Logger.py:156 NIC statistics: good_octets_received: 867626888 bad_octets_received: 1271238 mac_trans_error: 0 broadcast_frames_received: 723 multicast_frames_received: 308 frames_64_octets: 1267 frames_65_to_127_octets: 27814 frames_128_to_255_octets: 394 frames_256_to_511_octets: 4957541 frames_512_to_1023_octets: 3478913 frames_1024_to_max_octets: 1227 excessive_collision: 0 multicast_frames_sent: 17850 broadcast_frames_sent: 10167 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 0 fragments: 13562 oversize: 304 jabber: 0 rx_error_frame_received: 0 bad_crc: 6611 collisions: 0 late_collision: 0 unicast_frames_received: 1688338 unicast_frames_sent: 6743159 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 2191656516 INFO asyncssh:logging.py:92 [conn=61, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=13] Channel closed DEBUG infra2:Logger.py:156 ethtool -S swp35 INFO asyncssh:logging.py:92 [conn=61, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=14] Command: ethtool -S swp35 INFO asyncssh:logging.py:92 [conn=61, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=14] Channel closed DEBUG infra2:Logger.py:156 NIC statistics: good_octets_received: 5593928 bad_octets_received: 462688 mac_trans_error: 0 broadcast_frames_received: 115 multicast_frames_received: 308 frames_64_octets: 596 frames_65_to_127_octets: 20813 frames_128_to_255_octets: 375 frames_256_to_511_octets: 1212 frames_512_to_1023_octets: 257765 frames_1024_to_max_octets: 1227 excessive_collision: 0 multicast_frames_sent: 17335 broadcast_frames_sent: 5076 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 0 fragments: 0 oversize: 304 jabber: 0 rx_error_frame_received: 0 bad_crc: 0 collisions: 0 late_collision: 0 unicast_frames_received: 4930 unicast_frames_sent: 254224 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 135364004 INFO asyncssh:logging.py:92 [conn=61, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=15] Channel closed DEBUG infra2:Logger.py:156 ethtool -S swp36 INFO asyncssh:logging.py:92 [conn=61, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=16] Command: ethtool -S swp36 INFO asyncssh:logging.py:92 [conn=61, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=16] Channel closed DEBUG infra2:Logger.py:156 NIC statistics: good_octets_received: 5390664 bad_octets_received: 462688 mac_trans_error: 0 broadcast_frames_received: 107 multicast_frames_received: 308 frames_64_octets: 597 frames_65_to_127_octets: 20797 frames_128_to_255_octets: 383 frames_256_to_511_octets: 1196 frames_512_to_1023_octets: 257246 frames_1024_to_max_octets: 1227 excessive_collision: 0 multicast_frames_sent: 17003 broadcast_frames_sent: 5085 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 0 fragments: 0 oversize: 304 jabber: 0 rx_error_frame_received: 0 bad_crc: 0 collisions: 0 late_collision: 0 unicast_frames_received: 4534 unicast_frames_sent: 254409 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 135297160 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=61, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=17] Channel closed DEBUG infra2:Logger.py:156 ethtool -S swp33 INFO asyncssh:logging.py:92 [conn=61, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=18] Command: ethtool -S swp33 INFO asyncssh:logging.py:92 [conn=61, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=18] Channel closed DEBUG infra2:Logger.py:156 NIC statistics: good_octets_received: 2450546044 bad_octets_received: 22196087 mac_trans_error: 0 broadcast_frames_received: 16476 multicast_frames_received: 31736 frames_64_octets: 1257 frames_65_to_127_octets: 61433 frames_128_to_255_octets: 2799 frames_256_to_511_octets: 5850552 frames_512_to_1023_octets: 3531792 frames_1024_to_max_octets: 1227 excessive_collision: 0 multicast_frames_sent: 1778 broadcast_frames_sent: 844 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 0 fragments: 12036 oversize: 13989 jabber: 0 rx_error_frame_received: 0 bad_crc: 6809 collisions: 1 late_collision: 0 unicast_frames_received: 7703208 unicast_frames_sent: 1688209 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 867776929 INFO asyncssh:logging.py:92 [conn=61, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=19] Channel closed DEBUG infra2:Logger.py:156 ethtool -S swp34 INFO asyncssh:logging.py:92 [conn=61, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=20] Command: ethtool -S swp34 INFO asyncssh:logging.py:92 [conn=61, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=20] Channel closed DEBUG infra2:Logger.py:156 NIC statistics: good_octets_received: 867626888 bad_octets_received: 22099808 mac_trans_error: 0 broadcast_frames_received: 723 multicast_frames_received: 308 frames_64_octets: 1267 frames_65_to_127_octets: 27814 frames_128_to_255_octets: 395 frames_256_to_511_octets: 4957541 frames_512_to_1023_octets: 3478913 frames_1024_to_max_octets: 1227 excessive_collision: 0 multicast_frames_sent: 17851 broadcast_frames_sent: 10167 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 0 fragments: 13562 oversize: 13989 jabber: 0 rx_error_frame_received: 0 bad_crc: 6611 collisions: 0 late_collision: 0 unicast_frames_received: 1688338 unicast_frames_sent: 6743159 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 2191656764 INFO asyncssh:logging.py:92 [conn=61, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=21] Channel closed DEBUG infra2:Logger.py:156 ethtool -S swp35 INFO asyncssh:logging.py:92 [conn=61, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=22] Command: ethtool -S swp35 INFO asyncssh:logging.py:92 [conn=61, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=22] Channel closed DEBUG infra2:Logger.py:156 NIC statistics: good_octets_received: 5593928 bad_octets_received: 21291258 mac_trans_error: 0 broadcast_frames_received: 115 multicast_frames_received: 308 frames_64_octets: 596 frames_65_to_127_octets: 20813 frames_128_to_255_octets: 376 frames_256_to_511_octets: 1212 frames_512_to_1023_octets: 257765 frames_1024_to_max_octets: 1227 excessive_collision: 0 multicast_frames_sent: 17336 broadcast_frames_sent: 5076 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 0 fragments: 0 oversize: 13989 jabber: 0 rx_error_frame_received: 0 bad_crc: 0 collisions: 0 late_collision: 0 unicast_frames_received: 4930 unicast_frames_sent: 254224 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 135364252 INFO asyncssh:logging.py:92 [conn=61, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=23] Channel closed DEBUG infra2:Logger.py:156 ethtool -S swp36 INFO asyncssh:logging.py:92 [conn=61, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=24] Command: ethtool -S swp36 INFO asyncssh:logging.py:92 [conn=61, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=24] Channel closed DEBUG infra2:Logger.py:156 NIC statistics: good_octets_received: 5390664 bad_octets_received: 21291258 mac_trans_error: 0 broadcast_frames_received: 107 multicast_frames_received: 308 frames_64_octets: 597 frames_65_to_127_octets: 20797 frames_128_to_255_octets: 383 frames_256_to_511_octets: 1196 frames_512_to_1023_octets: 257246 frames_1024_to_max_octets: 1227 excessive_collision: 0 multicast_frames_sent: 17003 broadcast_frames_sent: 5085 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 0 fragments: 0 oversize: 13989 jabber: 0 rx_error_frame_received: 0 bad_crc: 0 collisions: 0 late_collision: 0 unicast_frames_received: 4534 unicast_frames_sent: 254409 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 135297160 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f75efa30>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_1 Tx 13685 Rx 0 Frames Delta 13685 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_2 Tx 13685 Rx 0 Frames Delta 13685 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 Tx 13685 Rx 0 Frames Delta 13685 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_4 Tx 13685 Rx 0 Frames Delta 13685 Loss 100.000 INFO asyncssh:logging.py:92 [conn=61, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=25] Channel closed DEBUG infra2:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=61, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=26] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=61, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=26] Channel closed DEBUG infra2:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:82","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"00:11:01:00:00:01","ifname":"swp33","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"18:be:92:13:64:a5","ifname":"swp33","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a5","ifname":"swp33","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a5","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"00:12:01:00:00:01","ifname":"swp34","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"18:be:92:13:64:a6","ifname":"swp34","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a6","ifname":"swp34","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a6","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"00:13:01:00:00:01","ifname":"swp35","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"18:be:92:13:64:a7","ifname":"swp35","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a7","ifname":"swp35","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a7","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"00:14:01:00:00:01","ifname":"swp36","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"18:be:92:13:64:a8","ifname":"swp36","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a8","ifname":"swp36","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a8","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:f3:f9:68","ifname":"br0","flags":["self"],"state":"permanent"}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_packets_oversize from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_packets.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=61, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=27] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=61, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=28] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 19:58:43 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=61, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=29] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=61, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=30] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 19:58:43 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=61, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=31] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=61, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=32] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=61, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=32] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":112,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=61, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=61, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=33] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=61, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=61, chan=34] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=61, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=61, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=61, chan=34] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/bridging/test_bridging_packets.py::test_bridging_packets_undersize | 205.37 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_packets_undersize">Starting testcase:test_bridging_packets_undersize from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_packets.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-3096' coro=<test_bridging_packets_undersize() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_packets.py:161> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=61, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=62] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=62] Local address: 172.17.0.3, port 48258 INFO asyncssh:logging.py:92 [conn=62] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=62] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=62] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=62, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 19:58:44 UTC 2023 INFO asyncssh:logging.py:92 [conn=62, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=62, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=62, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=62, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=62, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=62, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=62, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=62, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=62, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=62, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=7] Channel closed DEBUG infra2:Logger.py:156 bridge link set dev swp33 learning on flood off && bridge link set dev swp34 learning on flood off && bridge link set dev swp35 learning on flood off && bridge link set dev swp36 learning on flood off INFO asyncssh:logging.py:92 [conn=62, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=8] Command: bridge link set dev swp33 learning on flood off && bridge link set dev swp34 learning on flood off && bridge link set dev swp35 learning on flood off && bridge link set dev swp36 learning on flood off INFO asyncssh:logging.py:92 [conn=62, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Enabling smaller frame size (4 Byte Signature) INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'switch_min_frame_size', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=62, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=9] Channel closed DEBUG infra2:Logger.py:156 ethtool -S swp33 INFO asyncssh:logging.py:92 [conn=62, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=10] Command: ethtool -S swp33 INFO asyncssh:logging.py:92 [conn=62, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=10] Channel closed DEBUG infra2:Logger.py:156 NIC statistics: good_octets_received: 2450546556 bad_octets_received: 22196087 mac_trans_error: 0 broadcast_frames_received: 16484 multicast_frames_received: 31736 frames_64_octets: 1290 frames_65_to_127_octets: 61453 frames_128_to_255_octets: 2808 frames_256_to_511_octets: 5850552 frames_512_to_1023_octets: 3531792 frames_1024_to_max_octets: 1227 excessive_collision: 0 multicast_frames_sent: 1808 broadcast_frames_sent: 868 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 0 fragments: 12036 oversize: 13989 jabber: 0 rx_error_frame_received: 0 bad_crc: 6809 collisions: 1 late_collision: 0 unicast_frames_received: 7703208 unicast_frames_sent: 1688209 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 867782657 INFO asyncssh:logging.py:92 [conn=62, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=11] Channel closed DEBUG infra2:Logger.py:156 ethtool -S swp34 INFO asyncssh:logging.py:92 [conn=62, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=12] Command: ethtool -S swp34 INFO asyncssh:logging.py:92 [conn=62, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=12] Channel closed DEBUG infra2:Logger.py:156 NIC statistics: good_octets_received: 867627400 bad_octets_received: 22099808 mac_trans_error: 0 broadcast_frames_received: 731 multicast_frames_received: 308 frames_64_octets: 1300 frames_65_to_127_octets: 27831 frames_128_to_255_octets: 401 frames_256_to_511_octets: 4957541 frames_512_to_1023_octets: 3478913 frames_1024_to_max_octets: 1227 excessive_collision: 0 multicast_frames_sent: 17875 broadcast_frames_sent: 10191 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 0 fragments: 13562 oversize: 13989 jabber: 0 rx_error_frame_received: 0 bad_crc: 6611 collisions: 0 late_collision: 0 unicast_frames_received: 1688338 unicast_frames_sent: 6743159 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 2191661446 INFO asyncssh:logging.py:92 [conn=62, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=13] Channel closed DEBUG infra2:Logger.py:156 ethtool -S swp35 INFO asyncssh:logging.py:92 [conn=62, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=14] Command: ethtool -S swp35 INFO asyncssh:logging.py:92 [conn=62, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=14] Channel closed DEBUG infra2:Logger.py:156 NIC statistics: good_octets_received: 5594440 bad_octets_received: 21291258 mac_trans_error: 0 broadcast_frames_received: 123 multicast_frames_received: 308 frames_64_octets: 629 frames_65_to_127_octets: 20830 frames_128_to_255_octets: 382 frames_256_to_511_octets: 1212 frames_512_to_1023_octets: 257765 frames_1024_to_max_octets: 1227 excessive_collision: 0 multicast_frames_sent: 17360 broadcast_frames_sent: 5100 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 0 fragments: 0 oversize: 13989 jabber: 0 rx_error_frame_received: 0 bad_crc: 0 collisions: 0 late_collision: 0 unicast_frames_received: 4930 unicast_frames_sent: 254224 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 135368934 INFO asyncssh:logging.py:92 [conn=62, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=15] Channel closed DEBUG infra2:Logger.py:156 ethtool -S swp36 INFO asyncssh:logging.py:92 [conn=62, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=16] Command: ethtool -S swp36 INFO asyncssh:logging.py:92 [conn=62, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=16] Channel closed DEBUG infra2:Logger.py:156 NIC statistics: good_octets_received: 5391176 bad_octets_received: 21291258 mac_trans_error: 0 broadcast_frames_received: 115 multicast_frames_received: 308 frames_64_octets: 629 frames_65_to_127_octets: 20814 frames_128_to_255_octets: 390 frames_256_to_511_octets: 1196 frames_512_to_1023_octets: 257246 frames_1024_to_max_octets: 1227 excessive_collision: 0 multicast_frames_sent: 17027 broadcast_frames_sent: 5109 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 0 fragments: 0 oversize: 13989 jabber: 0 rx_error_frame_received: 0 bad_crc: 0 collisions: 0 late_collision: 0 unicast_frames_received: 4534 unicast_frames_sent: 254409 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 135302006 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=62, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=17] Channel closed DEBUG infra2:Logger.py:156 ethtool -S swp33 INFO asyncssh:logging.py:92 [conn=62, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=18] Command: ethtool -S swp33 INFO asyncssh:logging.py:92 [conn=62, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=18] Channel closed DEBUG infra2:Logger.py:156 NIC statistics: good_octets_received: 2450546556 bad_octets_received: 22992021 mac_trans_error: 0 broadcast_frames_received: 16484 multicast_frames_received: 31736 frames_64_octets: 1290 frames_65_to_127_octets: 61453 frames_128_to_255_octets: 2808 frames_256_to_511_octets: 5850552 frames_512_to_1023_octets: 3531792 frames_1024_to_max_octets: 1227 excessive_collision: 0 multicast_frames_sent: 1808 broadcast_frames_sent: 868 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 13723 fragments: 12036 oversize: 13989 jabber: 0 rx_error_frame_received: 0 bad_crc: 6809 collisions: 1 late_collision: 0 unicast_frames_received: 7703208 unicast_frames_sent: 1688209 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 867782657 INFO asyncssh:logging.py:92 [conn=62, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=19] Channel closed DEBUG infra2:Logger.py:156 ethtool -S swp34 INFO asyncssh:logging.py:92 [conn=62, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=20] Command: ethtool -S swp34 INFO asyncssh:logging.py:92 [conn=62, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=20] Channel closed DEBUG infra2:Logger.py:156 NIC statistics: good_octets_received: 867627400 bad_octets_received: 22895742 mac_trans_error: 0 broadcast_frames_received: 731 multicast_frames_received: 308 frames_64_octets: 1300 frames_65_to_127_octets: 27831 frames_128_to_255_octets: 402 frames_256_to_511_octets: 4957541 frames_512_to_1023_octets: 3478913 frames_1024_to_max_octets: 1227 excessive_collision: 0 multicast_frames_sent: 17876 broadcast_frames_sent: 10191 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 13723 fragments: 13562 oversize: 13989 jabber: 0 rx_error_frame_received: 0 bad_crc: 6611 collisions: 0 late_collision: 0 unicast_frames_received: 1688338 unicast_frames_sent: 6743159 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 2191661694 INFO asyncssh:logging.py:92 [conn=62, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=21] Channel closed DEBUG infra2:Logger.py:156 ethtool -S swp35 INFO asyncssh:logging.py:92 [conn=62, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=22] Command: ethtool -S swp35 INFO asyncssh:logging.py:92 [conn=62, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=22] Channel closed DEBUG infra2:Logger.py:156 NIC statistics: good_octets_received: 5594440 bad_octets_received: 22087192 mac_trans_error: 0 broadcast_frames_received: 123 multicast_frames_received: 308 frames_64_octets: 629 frames_65_to_127_octets: 20830 frames_128_to_255_octets: 383 frames_256_to_511_octets: 1212 frames_512_to_1023_octets: 257765 frames_1024_to_max_octets: 1227 excessive_collision: 0 multicast_frames_sent: 17361 broadcast_frames_sent: 5100 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 13723 fragments: 0 oversize: 13989 jabber: 0 rx_error_frame_received: 0 bad_crc: 0 collisions: 0 late_collision: 0 unicast_frames_received: 4930 unicast_frames_sent: 254224 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 135369182 INFO asyncssh:logging.py:92 [conn=62, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=23] Channel closed DEBUG infra2:Logger.py:156 ethtool -S swp36 INFO asyncssh:logging.py:92 [conn=62, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=24] Command: ethtool -S swp36 INFO asyncssh:logging.py:92 [conn=62, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=24] Channel closed DEBUG infra2:Logger.py:156 NIC statistics: good_octets_received: 5391176 bad_octets_received: 22087192 mac_trans_error: 0 broadcast_frames_received: 115 multicast_frames_received: 308 frames_64_octets: 629 frames_65_to_127_octets: 20814 frames_128_to_255_octets: 391 frames_256_to_511_octets: 1196 frames_512_to_1023_octets: 257246 frames_1024_to_max_octets: 1227 excessive_collision: 0 multicast_frames_sent: 17028 broadcast_frames_sent: 5109 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 13723 fragments: 0 oversize: 13989 jabber: 0 rx_error_frame_received: 0 bad_crc: 0 collisions: 0 late_collision: 0 unicast_frames_received: 4534 unicast_frames_sent: 254409 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 135302254 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f75b9120>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_1 Tx 13723 Rx 0 Frames Delta 13723 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_2 Tx 13723 Rx 0 Frames Delta 13723 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 Tx 13723 Rx 0 Frames Delta 13723 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_4 Tx 13723 Rx 0 Frames Delta 13723 Loss 100.000 INFO asyncssh:logging.py:92 [conn=62, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=25] Channel closed DEBUG infra2:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=62, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=26] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=62, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=26] Channel closed DEBUG infra2:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:82","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"00:11:01:00:00:01","ifname":"swp33","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"18:be:92:13:64:a5","ifname":"swp33","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a5","ifname":"swp33","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a5","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"00:12:01:00:00:01","ifname":"swp34","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"18:be:92:13:64:a6","ifname":"swp34","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a6","ifname":"swp34","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a6","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"00:13:01:00:00:01","ifname":"swp35","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"18:be:92:13:64:a7","ifname":"swp35","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a7","ifname":"swp35","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a7","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"00:14:01:00:00:01","ifname":"swp36","flags":["extern_learn","offload"],"master":"br0","state":""},{"mac":"18:be:92:13:64:a8","ifname":"swp36","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a8","ifname":"swp36","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a8","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:69:07:be","ifname":"br0","flags":["self"],"state":"permanent"}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_packets_undersize from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_packets.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=62, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=27] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=62, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=28] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 20:02:09 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=62, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=29] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=62, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=30] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 20:02:09 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=62, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=31] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=62, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=32] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=62, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=32] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":113,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=62, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=62, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=33] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=62, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=62, chan=34] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=62, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=62, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=62, chan=34] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/bridging/test_bridging_remove_restore_from_vlan.py::test_bridging_remove_restore_from_vlan | 161.67 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_remove_restore_from_vlan">Starting testcase:test_bridging_remove_restore_from_vlan from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_remove_restore_from_vlan.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-3140' coro=<test_bridging_remove_restore_from_vlan() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_remove_restore_from_vlan.py:50> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=62, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=63] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=63] Local address: 172.17.0.3, port 40442 INFO asyncssh:logging.py:92 [conn=63] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=63] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=63] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=63, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=63, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 20:02:09 UTC 2023 INFO asyncssh:logging.py:92 [conn=63, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=63, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=63, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=63, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=63, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=63, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=63, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=63, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=63, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=63, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=63, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=63, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=63, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=63, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=7] Channel closed DEBUG infra2:Logger.py:156 bridge link set dev swp33 learning off flood off && bridge link set dev swp34 learning off flood off && bridge link set dev swp35 learning off flood off && bridge link set dev swp36 learning off flood off INFO asyncssh:logging.py:92 [conn=63, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=8] Command: bridge link set dev swp33 learning off flood off && bridge link set dev swp34 learning off flood off && bridge link set dev swp35 learning off flood off && bridge link set dev swp36 learning off flood off INFO asyncssh:logging.py:92 [conn=63, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=63, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=63, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=9] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp33 vid 2 && bridge vlan add dev swp34 vid 2 && bridge vlan add dev swp35 vid 2 && bridge vlan add dev swp36 vid 2 INFO asyncssh:logging.py:92 [conn=63, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=10] Command: bridge vlan add dev swp33 vid 2 && bridge vlan add dev swp34 vid 2 && bridge vlan add dev swp35 vid 2 && bridge vlan add dev swp36 vid 2 INFO asyncssh:logging.py:92 [conn=63, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=63, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=63, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=11] Channel closed DEBUG infra2:Logger.py:156 bridge fdb add aa:bb:cc:dd:ee:11 dev swp33 static master vlan 2 INFO asyncssh:logging.py:92 [conn=63, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=12] Command: bridge fdb add aa:bb:cc:dd:ee:11 dev swp33 static master vlan 2 INFO asyncssh:logging.py:92 [conn=63, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=63, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=63, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=13] Channel closed DEBUG infra2:Logger.py:156 bridge vlan delete dev swp33 vid 2 INFO asyncssh:logging.py:92 [conn=63, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=14] Command: bridge vlan delete dev swp33 vid 2 INFO asyncssh:logging.py:92 [conn=63, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=63, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=63, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=15] Channel closed DEBUG infra2:Logger.py:156 bridge -j fdb show INFO asyncssh:logging.py:92 [conn=63, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=16] Command: bridge -j fdb show INFO asyncssh:logging.py:92 [conn=63, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"mac":"33:33:00:00:00:01","ifname":"bond0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"dummy0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:82","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:02:02","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"ma1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp1","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp2","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp3","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp4","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp5","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp6","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp7","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp8","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp9","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp10","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp11","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp12","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp13","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp14","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp15","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp16","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp17","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp18","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp19","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp20","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp21","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp22","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp23","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp24","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp25","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp26","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp27","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp28","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp29","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp30","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp31","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp32","flags":["self"],"state":"permanent"},{"mac":"aa:bb:cc:dd:ee:11","ifname":"swp33","vlan":2,"flags":["offload"],"master":"br0","state":"static"},{"mac":"18:be:92:13:64:a5","ifname":"swp33","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a5","ifname":"swp33","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a5","ifname":"swp33","flags":["self"],"state":"permanent"},{"mac":"18:be:92:13:64:a6","ifname":"swp34","vlan":2,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a6","ifname":"swp34","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a6","ifname":"swp34","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a6","ifname":"swp34","flags":["self"],"state":"permanent"},{"mac":"18:be:92:13:64:a7","ifname":"swp35","vlan":2,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a7","ifname":"swp35","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a7","ifname":"swp35","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a7","ifname":"swp35","flags":["self"],"state":"permanent"},{"mac":"18:be:92:13:64:a8","ifname":"swp36","vlan":2,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a8","ifname":"swp36","vlan":1,"flags":[],"master":"br0","state":"permanent"},{"mac":"18:be:92:13:64:a8","ifname":"swp36","flags":[],"master":"br0","state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:13:64:a8","ifname":"swp36","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp37","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp38","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp39","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp40","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp41","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp42","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp43","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp44","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp45","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp46","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp47","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp48","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp49","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp50","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp51","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:0e","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:03","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"01:80:c2:00:00:00","ifname":"swp52","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:00:00:00:6a","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"01:00:5e:00:00:01","ifname":"br0","flags":["self"],"state":"permanent"},{"mac":"33:33:ff:bf:3c:aa","ifname":"br0","flags":["self"],"state":"permanent"}] INFO asyncssh:logging.py:92 [conn=63, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=63, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=17] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp33 vid 2 INFO asyncssh:logging.py:92 [conn=63, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=18] Command: bridge vlan add dev swp33 vid 2 INFO asyncssh:logging.py:92 [conn=63, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:2:8' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f75eef80>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:5 TI bridge_1 SIP-DIP N/A Tx 206 Rx 206 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_remove_restore_from_vlan from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_remove_restore_from_vlan.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=63, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=63, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=19] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=63, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=63, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=20] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 20:04:50 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=63, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=63, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=21] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=63, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=63, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=22] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 20:04:50 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=63, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=63, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=23] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=63, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=24] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=63, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=24] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":114,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=63, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=63, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=25] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=63, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=63, chan=26] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=63, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=63, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=63, chan=26] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/bridging/test_bridging_robustness_macs.py::test_bridging_robustness_macs | 778.48 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_robustness_macs">Starting testcase:test_bridging_robustness_macs from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_robustness_macs.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-3176' coro=<test_bridging_robustness_macs() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_robustness_macs.py:43> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=63, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=64] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=64] Local address: 172.17.0.3, port 38814 INFO asyncssh:logging.py:92 [conn=64] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=64] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=64] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=64, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 20:04:51 UTC 2023 INFO asyncssh:logging.py:92 [conn=64, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=64, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=64, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=64, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=64, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=64, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=64, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=64, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=64, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f74436d0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 Tx 90205 Rx 90205 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=64, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=7] Channel closed DEBUG infra2:Logger.py:156 bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=64, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=8] Command: bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=64, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=8] Channel closed DEBUG infra2:Logger.py:156 16004 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f75eca30>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 Tx 87656 Rx 87656 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #1 Tx 87656 Rx 87656 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=64, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=9] Channel closed DEBUG infra2:Logger.py:156 bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=64, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=10] Command: bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=64, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=10] Channel closed DEBUG infra2:Logger.py:156 16004 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f75ee230>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 Tx 87521 Rx 87521 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #1 Tx 87521 Rx 87521 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #2 Tx 87521 Rx 87521 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=64, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=11] Channel closed DEBUG infra2:Logger.py:156 bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=64, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=12] Command: bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=64, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=12] Channel closed DEBUG infra2:Logger.py:156 16004 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f7443b80>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 Tx 87220 Rx 87220 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #1 Tx 87220 Rx 87220 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #2 Tx 87220 Rx 87220 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #3 Tx 87220 Rx 87220 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=64, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=13] Channel closed DEBUG infra2:Logger.py:156 bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=64, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=14] Command: bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=64, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=14] Channel closed DEBUG infra2:Logger.py:156 16004 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f75baf50>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 Tx 87914 Rx 87914 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #1 Tx 87914 Rx 87914 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #2 Tx 87914 Rx 87914 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #3 Tx 87914 Rx 87914 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #4 Tx 87914 Rx 87914 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=64, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=15] Channel closed DEBUG infra2:Logger.py:156 bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=64, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=16] Command: bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=64, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=16] Channel closed DEBUG infra2:Logger.py:156 16004 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f7454c70>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 Tx 87339 Rx 87339 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #1 Tx 87339 Rx 87339 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #2 Tx 87339 Rx 87339 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #3 Tx 87339 Rx 87339 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #4 Tx 87339 Rx 87339 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #5 Tx 87339 Rx 87339 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=64, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=17] Channel closed DEBUG infra2:Logger.py:156 bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=64, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=18] Command: bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=64, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=18] Channel closed DEBUG infra2:Logger.py:156 16004 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f7599390>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 Tx 86940 Rx 86940 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #1 Tx 86940 Rx 86940 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #2 Tx 86940 Rx 86940 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #3 Tx 86940 Rx 86940 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #4 Tx 86940 Rx 86940 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #5 Tx 86940 Rx 86940 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridge_3 #6 Tx 86940 Rx 86940 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=64, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=19] Channel closed DEBUG infra2:Logger.py:156 bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=64, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=20] Command: bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=64, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=20] Channel closed DEBUG infra2:Logger.py:156 16004 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_robustness_macs from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_robustness_macs.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=64, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=21] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=64, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=22] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 20:17:48 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=64, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=23] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=64, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=24] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 20:17:49 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=64, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=25] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=64, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=26] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=64, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=26] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":115,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=64, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=64, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=27] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=64, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=64, chan=28] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=64, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=64, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=64, chan=28] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/bridging/test_bridging_static_entries.py::test_bridging_static_entries | 188.92 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_static_entries">Starting testcase:test_bridging_static_entries from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_static_entries.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-3214' coro=<test_bridging_static_entries() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_static_entries.py:45> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=64, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=65] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=65] Local address: 172.17.0.3, port 50280 INFO asyncssh:logging.py:92 [conn=65] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=65] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=65] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=65, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=65, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 20:17:50 UTC 2023 INFO asyncssh:logging.py:92 [conn=65, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=65, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=65, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=65, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=65, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=65, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=65, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=65, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=65, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=65, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=65, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=65, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=65, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=65, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=7] Channel closed DEBUG infra2:Logger.py:156 bridge link set dev swp33 learning off flood off && bridge link set dev swp34 learning off flood off && bridge link set dev swp35 learning off flood off && bridge link set dev swp36 learning off flood off INFO asyncssh:logging.py:92 [conn=65, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=8] Command: bridge link set dev swp33 learning off flood off && bridge link set dev swp34 learning off flood off && bridge link set dev swp35 learning off flood off && bridge link set dev swp36 learning off flood off INFO asyncssh:logging.py:92 [conn=65, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=65, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=65, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=9] Channel closed DEBUG infra2:Logger.py:156 bridge fdb add aa:bb:cc:dd:ee:11 dev swp33 static master && bridge fdb add aa:bb:cc:dd:ee:12 dev swp34 static master && bridge fdb add aa:bb:cc:dd:ee:13 dev swp35 static master && bridge fdb add aa:bb:cc:dd:ee:14 dev swp36 static master INFO asyncssh:logging.py:92 [conn=65, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=10] Command: bridge fdb add aa:bb:cc:dd:ee:11 dev swp33 static master && bridge fdb add aa:bb:cc:dd:ee:12 dev swp34 static master && bridge fdb add aa:bb:cc:dd:ee:13 dev swp35 static master && bridge fdb add aa:bb:cc:dd:ee:14 dev swp36 static master INFO asyncssh:logging.py:92 [conn=65, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridge_4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f7440ac0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:8 Rx 10.36.118.199:2:5 TI bridge_1 SIP-DIP N/A Tx 310 Rx 310 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:6 TI bridge_2 SIP-DIP N/A Tx 310 Rx 310 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:7 TI bridge_3 SIP-DIP N/A Tx 310 Rx 310 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI bridge_4 SIP-DIP N/A Tx 310 Rx 310 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_static_entries from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_static_entries.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=65, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=65, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=11] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=65, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=65, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=12] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 20:20:58 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=65, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=65, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=65, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=65, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=14] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 20:20:58 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=65, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=65, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=65, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=65, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":116,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=65, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=65, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=65, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=65, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=65, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=65, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=65, chan=18] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/bridging/test_bridging_unreg_traffic_ipv6.py::test_bridging_unreg_traffic_ipv6 | 180.79 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_bridging_unreg_traffic_ipv6">Starting testcase:test_bridging_unreg_traffic_ipv6 from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_unreg_traffic_ipv6.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-3242' coro=<test_bridging_unreg_traffic_ipv6() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_unreg_traffic_ipv6.py:47> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=65, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=66] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=66] Local address: 172.17.0.3, port 36980 INFO asyncssh:logging.py:92 [conn=66] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=66] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=66] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=66, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=66, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 20:20:58 UTC 2023 INFO asyncssh:logging.py:92 [conn=66, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=66, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=66, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=2] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=66, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=66, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=66, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=66, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=66, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=66, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=66, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=66, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=66, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_2001:1::2/64', 'count': 1, 'ip': '2001:1::2', 'gw': '2001:1::1', 'plen': 64, 'vlan': None, 'version': 'ipv6'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2001:2::2/64', 'count': 1, 'ip': '2001:2::2', 'gw': '2001:2::1', 'plen': 64, 'vlan': None, 'version': 'ipv6'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_2001:3::2/64', 'count': 1, 'ip': '2001:3::2', 'gw': '2001:3::1', 'plen': 64, 'vlan': None, 'version': 'ipv6'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_2001:4::2/64', 'count': 1, 'ip': '2001:4::2', 'gw': '2001:4::1', 'plen': 64, 'vlan': None, 'version': 'ipv6'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for streamA INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for streamB INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for streamC INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_2001:1::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2001:2::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_2001:3::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_2001:4::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f7443d60>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI streamA SIP-DIP N/A Tx 158676 Rx 158676 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI streamB SIP-DIP N/A Tx 158676 Rx 158676 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI streamC SIP-DIP N/A Tx 158676 Rx 158676 Loss 0.000 INFO asyncssh:logging.py:92 [conn=66, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=66, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=7] Channel closed DEBUG infra2:Logger.py:156 bridge link set dev swp33 flood off && bridge link set dev swp34 flood off && bridge link set dev swp35 flood off && bridge link set dev swp36 flood off INFO asyncssh:logging.py:92 [conn=66, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=8] Command: bridge link set dev swp33 flood off && bridge link set dev swp34 flood off && bridge link set dev swp35 flood off && bridge link set dev swp36 flood off INFO asyncssh:logging.py:92 [conn=66, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f75bb310>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI streamA SIP-DIP N/A Tx 268162 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI streamB SIP-DIP N/A Tx 268161 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI streamC SIP-DIP N/A Tx 268161 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=66, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=66, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=9] Channel closed DEBUG infra2:Logger.py:156 bridge link set dev swp33 flood on && bridge link set dev swp34 flood on && bridge link set dev swp35 flood on && bridge link set dev swp36 flood on INFO asyncssh:logging.py:92 [conn=66, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=10] Command: bridge link set dev swp33 flood on && bridge link set dev swp34 flood on && bridge link set dev swp35 flood on && bridge link set dev swp36 flood on INFO asyncssh:logging.py:92 [conn=66, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f74407f0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI streamA SIP-DIP N/A Tx 269584 Rx 269584 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI streamB SIP-DIP N/A Tx 269584 Rx 269584 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI streamC SIP-DIP N/A Tx 269584 Rx 269584 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_bridging_unreg_traffic_ipv6 from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/bridging/test_bridging_unreg_traffic_ipv6.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=66, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=66, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=11] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=66, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=66, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=12] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 20:23:58 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=66, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=66, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=66, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=66, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=14] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 20:23:58 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=66, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=66, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=66, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=66, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":117,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=66, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=66, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=66, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=66, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=66, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=66, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=66, chan=18] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/devlink/test_devlink_interact.py::test_devlink_interact_acl_with_dyn_traps | 206.84 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-3268' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_interact_acl_with_dyn_traps">Starting testcase:test_devlink_interact_acl_with_dyn_traps from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_interact.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=66, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=67] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=67] Local address: 172.17.0.3, port 58056 INFO asyncssh:logging.py:92 [conn=67] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=67] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=67] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=67, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 20:23:59 UTC 2023 INFO asyncssh:logging.py:92 [conn=67, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=1] Channel closed DEBUG infra2:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=67, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=67, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=67, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 2] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=67, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=3] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=67, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=67, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=67, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=5] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=67, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=67, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=6] Channel closed DEBUG infra2:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=67, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=7] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=67, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=8] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 20:23:59 UTC 2023 INFO DENT:Logger.py:84 [DENT infrastructure 2] policer rate: 3830Kbps, traffic frame size: 464, expected trap rate: 4000pps INFO asyncssh:logging.py:92 [conn=67, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=67, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=10] Command: ip link add name br0 type bridge INFO asyncssh:logging.py:92 [conn=67, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=67, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=11] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=67, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=12] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=67, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=67, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=13] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=67, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=14] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=67, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=67, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=15] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol ip pref 3650 flower skip_sw src_mac 02:79:ee:f3:bd:6a dst_mac 02:f3:14:56:ea:a0 src_ip 126.116.74.39 dst_ip 59.122.189.250 ip_proto udp src_port 43053 dst_port 20235 action trap action police rate 3830938bps burst 3831938 && tc filter add dev swp33 ingress protocol ip pref 7300 flower skip_sw src_mac 02:79:ee:f3:bd:6a dst_mac 02:f3:14:56:ea:a0 src_ip 126.116.74.39 dst_ip 59.122.189.250 ip_proto udp src_port 43053 dst_port 20235 action drop INFO asyncssh:logging.py:92 [conn=67, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=16] Command: tc filter add dev swp33 ingress protocol ip pref 3650 flower skip_sw src_mac 02:79:ee:f3:bd:6a dst_mac 02:f3:14:56:ea:a0 src_ip 126.116.74.39 dst_ip 59.122.189.250 ip_proto udp src_port 43053 dst_port 20235 action trap action police rate 3830938bps burst 3831938 && tc filter add dev swp33 ingress protocol ip pref 7300 flower skip_sw src_mac 02:79:ee:f3:bd:6a dst_mac 02:f3:14:56:ea:a0 src_ip 126.116.74.39 dst_ip 59.122.189.250 ip_proto udp src_port 43053 dst_port 20235 action drop INFO asyncssh:logging.py:92 [conn=67, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '2.2.2.2', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=67, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=17] Channel closed DEBUG infra2:Logger.py:156 tc -j filter show dev swp33 ingress pref 3650 INFO asyncssh:logging.py:92 [conn=67, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=18] Command: tc -j filter show dev swp33 ingress pref 3650 INFO asyncssh:logging.py:92 [conn=67, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=18] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"ip","kind":"flower","chain":0},{"protocol":"ip","kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:f3:14:56:ea:a0","src_mac":"02:79:ee:f3:bd:6a","eth_type":"ipv4","ip_proto":"udp","dst_ip":"59.122.189.250","src_ip":"126.116.74.39","dst_port":20235,"src_port":43053},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]},{"order":2,"kind":"police","index":1,"control_action":{"type":"reclassify"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:f3:14:56:ea:a0_src_mac_02:79:ee:f3:bd:6a_eth_type_ipv4_ip_proto_udp_dst_ip_59.122.189.250_src_ip_126.116.74.39_dst_port_20235_src_port_43053 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=67, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=19] Channel closed INFO asyncssh:logging.py:92 [conn=67, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=20] Received channel close DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=67, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=20] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=67, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=21] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=67, chan=22] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=67, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=21] Channel closed DEBUG infra2:Logger.py:156 4042 INFO asyncssh:logging.py:92 [conn=67, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=22] Channel closed DEBUG infra2:Logger.py:156 4060 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f75b9390>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item swp33_dst_mac_02:f3:14:56:ea:a0_src_mac_02:79:ee:f3:bd:6a_eth_type_ipv4_ip_proto_udp_dst_ip_59.122.189.250_src_ip_126.116.74.39_dst_port_20235_src_port_43053 Tx 5676404 Rx 88160 Frames Delta 5588244 Loss 98.447 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=67, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=23] Channel closed DEBUG infra2:Logger.py:156 tc filter delete dev swp33 ingress pref 3650 INFO asyncssh:logging.py:92 [conn=67, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=24] Command: tc filter delete dev swp33 ingress pref 3650 INFO asyncssh:logging.py:92 [conn=67, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=24] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=67, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=25] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol ip pref 3650 flower skip_sw src_mac 02:79:ee:f3:bd:6a dst_mac 02:f3:14:56:ea:a0 src_ip 126.116.74.39 dst_ip 59.122.189.250 ip_proto udp src_port 43053 dst_port 20235 action trap action police rate 3830938bps burst 3831938 INFO asyncssh:logging.py:92 [conn=67, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=26] Command: tc filter add dev swp33 ingress protocol ip pref 3650 flower skip_sw src_mac 02:79:ee:f3:bd:6a dst_mac 02:f3:14:56:ea:a0 src_ip 126.116.74.39 dst_ip 59.122.189.250 ip_proto udp src_port 43053 dst_port 20235 action trap action police rate 3830938bps burst 3831938 INFO asyncssh:logging.py:92 [conn=67, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=26] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=67, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=27] Channel closed INFO asyncssh:logging.py:92 [conn=67, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=28] Received channel close DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=67, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=28] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=67, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=29] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=67, chan=30] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=67, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=29] Channel closed DEBUG infra2:Logger.py:156 4041 INFO asyncssh:logging.py:92 [conn=67, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=30] Channel closed DEBUG infra2:Logger.py:156 4056 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f74422c0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item swp33_dst_mac_02:f3:14:56:ea:a0_src_mac_02:79:ee:f3:bd:6a_eth_type_ipv4_ip_proto_udp_dst_ip_59.122.189.250_src_ip_126.116.74.39_dst_port_20235_src_port_43053 Tx 6705531 Rx 104160 Frames Delta 6601371 Loss 98.447 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=67, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=31] Channel closed DEBUG infra2:Logger.py:156 tc filter delete dev swp33 ingress pref 3650 INFO asyncssh:logging.py:92 [conn=67, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=32] Command: tc filter delete dev swp33 ingress pref 3650 INFO asyncssh:logging.py:92 [conn=67, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=32] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=67, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=33] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol ip pref 10950 flower skip_sw src_mac 02:79:ee:f3:bd:6a dst_mac 02:f3:14:56:ea:a0 src_ip 126.116.74.39 dst_ip 59.122.189.250 ip_proto udp src_port 43053 dst_port 20235 action trap action police rate 3830938bps burst 3831938 INFO asyncssh:logging.py:92 [conn=67, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=34] Command: tc filter add dev swp33 ingress protocol ip pref 10950 flower skip_sw src_mac 02:79:ee:f3:bd:6a dst_mac 02:f3:14:56:ea:a0 src_ip 126.116.74.39 dst_ip 59.122.189.250 ip_proto udp src_port 43053 dst_port 20235 action trap action police rate 3830938bps burst 3831938 INFO asyncssh:logging.py:92 [conn=67, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=34] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=67, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=35] Channel closed INFO asyncssh:logging.py:92 [conn=67, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=36] Received channel close DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=67, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=36] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=67, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=37] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=67, chan=38] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=67, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=37] Channel closed DEBUG infra2:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=67, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=38] Channel closed DEBUG infra2:Logger.py:156 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f7444d90>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item swp33_dst_mac_02:f3:14:56:ea:a0_src_mac_02:79:ee:f3:bd:6a_eth_type_ipv4_ip_proto_udp_dst_ip_59.122.189.250_src_ip_126.116.74.39_dst_port_20235_src_port_43053 Tx 6708614 Rx 0 Frames Delta 6708614 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_interact_acl_with_dyn_traps from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_interact.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=67, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=39] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=67, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=40] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=40] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 20:27:21 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=67, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=41] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=67, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=42] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=42] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 20:27:25 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=67, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=43] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=67, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=44] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=67, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=44] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":118,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=67, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=45] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=67, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=46] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=67, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=46] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=67, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=47] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=67, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=48] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=48] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 20:27:25 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=67, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=67, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=50] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=67, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=50] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=67, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=67, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=52] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=67, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=67, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=52] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=67, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=67, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=54] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=67, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=67, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=54] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=67, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=55] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=67, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=56] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=67, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=67, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=56] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=67, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=57] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=67, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=58] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=67, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=67, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=58] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=67, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=59] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=67, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=60] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=67, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=67, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=60] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=67, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=61] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=67, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=62] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=67, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=67, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=62] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=67, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=63] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=67, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=64] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=67, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=67, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=64] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=67, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=65] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=67, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=66] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=67, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=67, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=66] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=67, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=67] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=67, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=68] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=67, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=67, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=68] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=67, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=69] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=67, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=70] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=67, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=67, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=70] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=67, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=71] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=67, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=72] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=67, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=67, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=72] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=67, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=73] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=67, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=74] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=67, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=74] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=67, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=75] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=67, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=76] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=67, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=67, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=76] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=67, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=77] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=67, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=78] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=67, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=67, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=78] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=67, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=79] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=67, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=80] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=67, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=67, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=80] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=67, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=67, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=81] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=67, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=67, chan=82] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=67, chan=82] Received exit status 0 INFO asyncssh:logging.py:92 [conn=67, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=67, chan=82] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/devlink/test_devlink_interact.py::test_devlink_interact_dyn_traps_lag | 245.34 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-3372' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_interact_dyn_traps_lag">Starting testcase:test_devlink_interact_dyn_traps_lag from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_interact.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=67, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=68] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=68] Local address: 172.17.0.3, port 60868 INFO asyncssh:logging.py:92 [conn=68] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=68] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=68] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=68, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 20:27:26 UTC 2023 INFO asyncssh:logging.py:92 [conn=68, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=1] Channel closed DEBUG infra2:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=68, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=68, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=68, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 2] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=68, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=3] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=68, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=68, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=68, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=5] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=68, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=68, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=6] Channel closed DEBUG infra2:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=68, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=7] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=68, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=8] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 20:27:26 UTC 2023 INFO DENT:Logger.py:84 [DENT infrastructure 2] policer rate: 1219Kbps, traffic frame size: 1497, expected trap rate: 3257.0pps INFO asyncssh:logging.py:92 [conn=68, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip link add name lag type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=68, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=10] Command: ip link add name lag type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=68, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=68, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=11] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 master lag && ip link set dev swp34 master lag && ip link set dev swp35 master lag && ip link set dev swp36 master lag && ip link set dev lag up INFO asyncssh:logging.py:92 [conn=68, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=12] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 master lag && ip link set dev swp34 master lag && ip link set dev swp35 master lag && ip link set dev swp36 master lag && ip link set dev lag up INFO asyncssh:logging.py:92 [conn=68, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=68, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=13] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp33 ingress && tc qdisc add dev swp34 ingress && tc qdisc add dev swp35 ingress && tc qdisc add dev swp36 ingress INFO asyncssh:logging.py:92 [conn=68, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=14] Command: tc qdisc add dev swp33 ingress && tc qdisc add dev swp34 ingress && tc qdisc add dev swp35 ingress && tc qdisc add dev swp36 ingress INFO asyncssh:logging.py:92 [conn=68, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=68, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=15] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol 0x0800 flower skip_sw src_mac 02:d4:82:5f:1a:bd dst_mac 02:31:31:04:a1:20 src_ip 71.59.225.119 dst_ip 63.31.0.140 ip_proto tcp src_port 7801 dst_port 47978 action trap action police rate 1219037bps burst 1220037 && tc filter add dev swp34 ingress protocol 0x0800 flower skip_sw src_mac 02:d4:82:5f:1a:bd dst_mac 02:31:31:04:a1:20 src_ip 71.59.225.119 dst_ip 63.31.0.140 ip_proto tcp src_port 7801 dst_port 47978 action trap action police rate 1219037bps burst 1220037 && tc filter add dev swp35 ingress protocol 0x0800 flower skip_sw src_mac 02:d4:82:5f:1a:bd dst_mac 02:31:31:04:a1:20 src_ip 71.59.225.119 dst_ip 63.31.0.140 ip_proto tcp src_port 7801 dst_port 47978 action trap action police rate 1219037bps burst 1220037 && tc filter add dev swp36 ingress protocol 0x0800 flower skip_sw src_mac 02:d4:82:5f:1a:bd dst_mac 02:31:31:04:a1:20 src_ip 71.59.225.119 dst_ip 63.31.0.140 ip_proto tcp src_port 7801 dst_port 47978 action trap action police rate 1219037bps burst 1220037 INFO asyncssh:logging.py:92 [conn=68, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=16] Command: tc filter add dev swp33 ingress protocol 0x0800 flower skip_sw src_mac 02:d4:82:5f:1a:bd dst_mac 02:31:31:04:a1:20 src_ip 71.59.225.119 dst_ip 63.31.0.140 ip_proto tcp src_port 7801 dst_port 47978 action trap action police rate 1219037bps burst 1220037 && tc filter add dev swp34 ingress protocol 0x0800 flower skip_sw src_mac 02:d4:82:5f:1a:bd dst_mac 02:31:31:04:a1:20 src_ip 71.59.225.119 dst_ip 63.31.0.140 ip_proto tcp src_port 7801 dst_port 47978 action trap action police rate 1219037bps burst 1220037 && tc filter add dev swp35 ingress protocol 0x0800 flower skip_sw src_mac 02:d4:82:5f:1a:bd dst_mac 02:31:31:04:a1:20 src_ip 71.59.225.119 dst_ip 63.31.0.140 ip_proto tcp src_port 7801 dst_port 47978 action trap action police rate 1219037bps burst 1220037 && tc filter add dev swp36 ingress protocol 0x0800 flower skip_sw src_mac 02:d4:82:5f:1a:bd dst_mac 02:31:31:04:a1:20 src_ip 71.59.225.119 dst_ip 63.31.0.140 ip_proto tcp src_port 7801 dst_port 47978 action trap action police rate 1219037bps burst 1220037 INFO asyncssh:logging.py:92 [conn=68, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '2.2.2.2', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '2.2.2.2', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '2.2.2.2', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '2.2.2.2', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=68, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=17] Channel closed DEBUG infra2:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=68, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=18] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=68, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=18] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"ip","pref":49152,"kind":"flower","chain":0},{"protocol":"ip","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:31:31:04:a1:20","src_mac":"02:d4:82:5f:1a:bd","eth_type":"ipv4","ip_proto":"tcp","dst_ip":"63.31.0.140","src_ip":"71.59.225.119","dst_port":47978,"src_port":7801},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]},{"order":2,"kind":"police","index":1,"control_action":{"type":"reclassify"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:31:31:04:a1:20_src_mac_02:d4:82:5f:1a:bd_eth_type_ipv4_ip_proto_tcp_dst_ip_63.31.0.140_src_ip_71.59.225.119_dst_port_47978_src_port_7801 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp34_dst_mac_02:31:31:04:a1:20_src_mac_02:d4:82:5f:1a:bd_eth_type_ipv4_ip_proto_tcp_dst_ip_63.31.0.140_src_ip_71.59.225.119_dst_port_47978_src_port_7801 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp35_dst_mac_02:31:31:04:a1:20_src_mac_02:d4:82:5f:1a:bd_eth_type_ipv4_ip_proto_tcp_dst_ip_63.31.0.140_src_ip_71.59.225.119_dst_port_47978_src_port_7801 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp36_dst_mac_02:31:31:04:a1:20_src_mac_02:d4:82:5f:1a:bd_eth_type_ipv4_ip_proto_tcp_dst_ip_63.31.0.140_src_ip_71.59.225.119_dst_port_47978_src_port_7801 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=68, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=19] Channel closed INFO asyncssh:logging.py:92 [conn=68, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=20] Received channel close DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=68, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=20] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=68, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=21] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=68, chan=22] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=68, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=21] Channel closed DEBUG infra2:Logger.py:156 3261 INFO asyncssh:logging.py:92 [conn=68, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=22] Channel closed DEBUG infra2:Logger.py:156 3270 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_interact_dyn_traps_lag from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_interact.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=68, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=23] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=68, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=24] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 20:31:24 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=68, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=25] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=68, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=26] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 20:31:30 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=68, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=27] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=68, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=28] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=68, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=28] Channel closed DEBUG infra2:Logger.py:156 [] INFO asyncssh:logging.py:92 [conn=68, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=29] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=68, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=30] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 20:31:30 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=68, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=31] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=68, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=32] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=68, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=32] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp34","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp35","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp36","parent":"ffff:fff1","options":{}},{"kind":"noqueue","handle":"0:","dev":"lag","root":true,"refcnt":2,"options":{}}] INFO asyncssh:logging.py:92 [conn=68, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=33] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=68, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=34] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=68, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=68, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=34] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=68, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=35] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=68, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=36] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=68, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=68, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=36] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=68, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=37] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=68, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=68, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=68, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=38] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=68, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=68, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=68, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=68, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=40] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=68, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=68, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=68, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=68, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=42] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=68, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=68, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=68, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=68, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=68, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=68, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=68, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=68, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=46] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=68, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=68, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=68, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=68, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=48] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=68, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=68, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=68, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=68, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=50] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=68, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=68, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=52] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=68, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=68, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=52] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=68, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=68, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=54] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=68, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=68, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=54] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=68, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=55] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=68, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=56] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=68, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=56] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=68, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=57] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=68, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=58] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=68, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=68, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=58] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=68, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=59] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 ingress INFO asyncssh:logging.py:92 [conn=68, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=60] Command: tc qdisc delete dev swp34 ingress INFO asyncssh:logging.py:92 [conn=68, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=60] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=68, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=61] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=68, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=62] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=68, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=68, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=62] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=68, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=63] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 ingress INFO asyncssh:logging.py:92 [conn=68, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=64] Command: tc qdisc delete dev swp35 ingress INFO asyncssh:logging.py:92 [conn=68, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=64] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=68, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=65] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=68, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=66] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=68, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=68, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=66] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=68, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=67] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 ingress INFO asyncssh:logging.py:92 [conn=68, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=68] Command: tc qdisc delete dev swp36 ingress INFO asyncssh:logging.py:92 [conn=68, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=68] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=68, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=69] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lag root INFO asyncssh:logging.py:92 [conn=68, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=70] Command: tc qdisc delete dev lag root INFO asyncssh:logging.py:92 [conn=68, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=68, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=70] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=68, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=71] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=68, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=72] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=68, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=72] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=68, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=73] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=68, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=74] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=74] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 20:31:31 UTC 2023 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=68, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=75] Channel closed DEBUG infra2:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=68, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=76] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=68, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=76] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":2,"ifname":"bond0","flags":["BROADCAST","MULTICAST","MASTER"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"b2:b2:ed:f9:e0:51","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"balance-rr","miimon":0,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"f6:33:41:29:6d:87","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"lag","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"18:be:92:13:64:a5","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"lag","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"18:be:92:13:64:a6","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"18:be:92:13:64:a6","queue_id":0,"ad_aggregator_id":2,"ad_actor_oper_port_state":69,"ad_actor_oper_port_state_str":["active","aggregating","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"lag","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"18:be:92:13:64:a7","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"18:be:92:13:64:a7","queue_id":0,"ad_aggregator_id":3,"ad_actor_oper_port_state":69,"ad_actor_oper_port_state_str":["active","aggregating","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"lag","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"18:be:92:13:64:a8","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"18:be:92:13:64:a8","queue_id":0,"ad_aggregator_id":4,"ad_actor_oper_port_state":69,"ad_actor_oper_port_state_str":["active","aggregating","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":119,"ifname":"lag","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535}] INFO asyncssh:logging.py:92 [conn=68, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=77] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond0 INFO asyncssh:logging.py:92 [conn=68, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=78] Command: ip link delete bond0 INFO asyncssh:logging.py:92 [conn=68, chan=78] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=78] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=68, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=68, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=79] Channel closed DEBUG infra2:Logger.py:156 ip link delete lag INFO asyncssh:logging.py:92 [conn=68, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=68, chan=80] Command: ip link delete lag INFO asyncssh:logging.py:92 [conn=68, chan=80] Received exit status 0 INFO asyncssh:logging.py:92 [conn=68, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=68, chan=80] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/devlink/test_devlink_interact.py::test_devlink_interact_static_traps_disabled | 156.19 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-3471' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_interact_static_traps_disabled">Starting testcase:test_devlink_interact_static_traps_disabled from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_interact.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=68, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=69] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=69] Local address: 172.17.0.3, port 50216 INFO asyncssh:logging.py:92 [conn=69] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=69] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=69] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=69, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 20:31:31 UTC 2023 INFO asyncssh:logging.py:92 [conn=69, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=1] Channel closed DEBUG infra2:Logger.py:156 cat /sys/kernel/debug/prestera/sct/* INFO asyncssh:logging.py:92 [conn=69, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=2] Command: cat /sys/kernel/debug/prestera/sct/* INFO asyncssh:logging.py:92 [conn=69, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=2] Channel closed DEBUG infra2:Logger.py:156 all_unspecified_cpu_opcodes: 100 (pps) sct_acl_trap_queue_0: 4000 (pps) sct_acl_trap_queue_1: 4000 (pps) sct_acl_trap_queue_2: 4000 (pps) sct_acl_trap_queue_3: 4000 (pps) sct_acl_trap_queue_4: 4000 (pps) sct_acl_trap_queue_5: 4000 (pps) sct_acl_trap_queue_6: 4000 (pps) sct_acl_trap_queue_7: 4000 (pps) sct_arp_intervention: 100 (pps) sct_arp_to_me: 300 (pps) sct_bgp: 1000 (pps) sct_bgp_all_routers_mc: 100 (pps) sct_cdp: 200 (pps) sct_default_route: 400 (pps) sct_dhcp: 100 (pps) sct_icmp: 100 (pps) sct_igmp: 400 (pps) sct_ip_bc: 100 (pps) sct_ip_to_me: 10000 (pps) sct_isis: 1000 (pps) sct_lacp: 200 (pps) sct_lldp: 200 (pps) sct_nat: 10000 (pps) sct_ospf: 1000 (pps) sct_special_ip4_icmp_redirect: 100 (pps) sct_special_ip4_mtu_exceed: 100 (pps) sct_special_ip4_options_in_ip_hdr: 100 (pps) sct_special_ip4_zero_ttl: 100 (pps) sct_ssh: 1000 (pps) sct_stp: 200 (pps) sct_telnet: 200 (pps) sct_vrrp: 200 (pps) INFO asyncssh:logging.py:92 [conn=69, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=3] Channel closed DEBUG infra2:Logger.py:156 for sct in `find /sys/kernel/debug/prestera/sct/*`; do echo 0 > $sct; done INFO asyncssh:logging.py:92 [conn=69, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=4] Command: for sct in `find /sys/kernel/debug/prestera/sct/*`; do echo 0 > $sct; done INFO asyncssh:logging.py:92 [conn=69, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=69, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=69, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=6] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 20:31:32 UTC 2023 INFO asyncssh:logging.py:92 [conn=69, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=7] Channel closed DEBUG infra2:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=69, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=8] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=69, chan=8] Received exit status 1 INFO asyncssh:logging.py:92 [conn=69, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 2] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=69, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=9] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=69, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=10] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=69, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=69, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=11] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=69, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=12] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=69, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=12] Channel closed DEBUG infra2:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=69, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=69, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=14] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 20:31:32 UTC 2023 INFO DENT:Logger.py:84 [DENT infrastructure 2] policer rate: 2825Kbps, traffic frame size: 463, expected trap rate: 6103pps INFO asyncssh:logging.py:92 [conn=69, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=69, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=16] Command: ip link set dev swp33 up INFO asyncssh:logging.py:92 [conn=69, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=69, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=17] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=69, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=18] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=69, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=69, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=19] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol ip flower skip_sw src_mac 02:38:6b:ee:bc:38 dst_mac 02:45:a4:58:0d:aa src_ip 14.205.249.7 dst_ip 16.24.5.181 ip_proto udp src_port 41891 dst_port 5801 action trap action police rate 2825689bps burst 2826689 INFO asyncssh:logging.py:92 [conn=69, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=20] Command: tc filter add dev swp33 ingress protocol ip flower skip_sw src_mac 02:38:6b:ee:bc:38 dst_mac 02:45:a4:58:0d:aa src_ip 14.205.249.7 dst_ip 16.24.5.181 ip_proto udp src_port 41891 dst_port 5801 action trap action police rate 2825689bps burst 2826689 INFO asyncssh:logging.py:92 [conn=69, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '2.2.2.2', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=69, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=21] Channel closed DEBUG infra2:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=69, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=22] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=69, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=22] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"ip","pref":49152,"kind":"flower","chain":0},{"protocol":"ip","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:45:a4:58:0d:aa","src_mac":"02:38:6b:ee:bc:38","eth_type":"ipv4","ip_proto":"udp","dst_ip":"16.24.5.181","src_ip":"14.205.249.7","dst_port":5801,"src_port":41891},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]},{"order":2,"kind":"police","index":1,"control_action":{"type":"reclassify"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:45:a4:58:0d:aa_src_mac_02:38:6b:ee:bc:38_eth_type_ipv4_ip_proto_udp_dst_ip_16.24.5.181_src_ip_14.205.249.7_dst_port_5801_src_port_41891 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=69, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=23] Channel closed INFO asyncssh:logging.py:92 [conn=69, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=24] Received channel close DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=69, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=24] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=69, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=25] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=69, chan=26] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=69, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=25] Channel closed DEBUG infra2:Logger.py:156 6142 INFO asyncssh:logging.py:92 [conn=69, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=26] Channel closed DEBUG infra2:Logger.py:156 6163 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_interact_static_traps_disabled from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_interact.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=69, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=27] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=69, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=28] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 20:34:01 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=69, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=29] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=69, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=30] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 20:34:07 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=69, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=31] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=69, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=32] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=69, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=32] Channel closed DEBUG infra2:Logger.py:156 [] INFO asyncssh:logging.py:92 [conn=69, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=33] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=69, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=34] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 20:34:07 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=69, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=35] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=69, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=36] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=69, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=36] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=69, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=37] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=69, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=38] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=69, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=69, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=38] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=69, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=69, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=40] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=69, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=69, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=40] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=69, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=69, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=69, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=69, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=42] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=69, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=69, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=69, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=69, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=69, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=69, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=69, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=69, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=46] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=69, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=69, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=69, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=69, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=48] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=69, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=69, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=69, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=69, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=50] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=69, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=69, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=52] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=69, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=69, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=52] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=69, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=69, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=54] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=69, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=69, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=54] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=69, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=55] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=69, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=56] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=69, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=69, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=56] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=69, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=57] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=69, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=58] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=69, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=69, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=58] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=69, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=59] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=69, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=60] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=69, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=60] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=69, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=61] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=69, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=62] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=69, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=69, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=62] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=69, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=63] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=69, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=64] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=69, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=69, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=64] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=69, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=65] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=69, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=66] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=69, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=69, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=66] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=69, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=67] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=69, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=68] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=69, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=68] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=69, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=69, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=69] Channel closed DEBUG infra2:Logger.py:156 echo 100 > /sys/kernel/debug/prestera/sct/all_unspecified_cpu_opcodes && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_0 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_1 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_2 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_3 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_4 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_5 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_6 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_7 && echo 100 > /sys/kernel/debug/prestera/sct/sct_arp_intervention && echo 300 > /sys/kernel/debug/prestera/sct/sct_arp_to_me && echo 1000 > /sys/kernel/debug/prestera/sct/sct_bgp && echo 100 > /sys/kernel/debug/prestera/sct/sct_bgp_all_routers_mc && echo 200 > /sys/kernel/debug/prestera/sct/sct_cdp && echo 400 > /sys/kernel/debug/prestera/sct/sct_default_route && echo 100 > /sys/kernel/debug/prestera/sct/sct_dhcp && echo 100 > /sys/kernel/debug/prestera/sct/sct_icmp && echo 400 > /sys/kernel/debug/prestera/sct/sct_igmp && echo 100 > /sys/kernel/debug/prestera/sct/sct_ip_bc && echo 10000 > /sys/kernel/debug/prestera/sct/sct_ip_to_me && echo 1000 > /sys/kernel/debug/prestera/sct/sct_isis && echo 200 > /sys/kernel/debug/prestera/sct/sct_lacp && echo 200 > /sys/kernel/debug/prestera/sct/sct_lldp && echo 10000 > /sys/kernel/debug/prestera/sct/sct_nat && echo 1000 > /sys/kernel/debug/prestera/sct/sct_ospf && echo 100 > /sys/kernel/debug/prestera/sct/sct_special_ip4_icmp_redirect && echo 100 > /sys/kernel/debug/prestera/sct/sct_special_ip4_mtu_exceed && echo 100 > /sys/kernel/debug/prestera/sct/sct_special_ip4_options_in_ip_hdr && echo 100 > /sys/kernel/debug/prestera/sct/sct_special_ip4_zero_ttl && echo 1000 > /sys/kernel/debug/prestera/sct/sct_ssh && echo 200 > /sys/kernel/debug/prestera/sct/sct_stp && echo 200 > /sys/kernel/debug/prestera/sct/sct_telnet && echo 200 > /sys/kernel/debug/prestera/sct/sct_vrrp INFO asyncssh:logging.py:92 [conn=69, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=69, chan=70] Command: echo 100 > /sys/kernel/debug/prestera/sct/all_unspecified_cpu_opcodes && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_0 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_1 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_2 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_3 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_4 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_5 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_6 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_7 && echo 100 > /sys/kernel/debug/prestera/sct/sct_arp_intervention && echo 300 > /sys/kernel/debug/prestera/sct/sct_arp_to_me && echo 1000 > /sys/kernel/debug/prestera/sct/sct_bgp && echo 100 > /sys/kernel/debug/prestera/sct/sct_bgp_all_routers_mc && echo 200 > /sys/kernel/debug/prestera/sct/sct_cdp && echo 400 > /sys/kernel/debug/prestera/sct/sct_default_route && echo 100 > /sys/kernel/debug/prestera/sct/sct_dhcp && echo 100 > /sys/kernel/debug/prestera/sct/sct_icmp && echo 400 > /sys/kernel/debug/prestera/sct/sct_igmp && echo 100 > /sys/kernel/debug/prestera/sct/sct_ip_bc && echo 10000 > /sys/kernel/debug/prestera/sct/sct_ip_to_me && echo 1000 > /sys/kernel/debug/prestera/sct/sct_isis && echo 200 > /sys/kernel/debug/prestera/sct/sct_lacp && echo 200 > /sys/kernel/debug/prestera/sct/sct_lldp && echo 10000 > /sys/kernel/debug/prestera/sct/sct_nat && echo 1000 > /sys/kernel/debug/prestera/sct/sct_ospf && echo 100 > /sys/kernel/debug/prestera/sct/sct_special_ip4_icmp_redirect && echo 100 > /sys/kernel/debug/prestera/sct/sct_special_ip4_mtu_exceed && echo 100 > /sys/kernel/debug/prestera/sct/sct_special_ip4_options_in_ip_hdr && echo 100 > /sys/kernel/debug/prestera/sct/sct_special_ip4_zero_ttl && echo 1000 > /sys/kernel/debug/prestera/sct/sct_ssh && echo 200 > /sys/kernel/debug/prestera/sct/sct_stp && echo 200 > /sys/kernel/debug/prestera/sct/sct_telnet && echo 200 > /sys/kernel/debug/prestera/sct/sct_vrrp INFO asyncssh:logging.py:92 [conn=69, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=69, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=69, chan=70] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/devlink/test_devlink_interact.py::test_devlink_interact_sct_lag | 298.53 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-3562' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_interact_sct_lag">Starting testcase:test_devlink_interact_sct_lag from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_interact.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=69, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=70] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=70] Local address: 172.17.0.3, port 34916 INFO asyncssh:logging.py:92 [conn=70] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=70] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=70] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=70, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 20:34:08 UTC 2023 INFO asyncssh:logging.py:92 [conn=70, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=1] Channel closed DEBUG infra2:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=70, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=70, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=70, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 2] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=70, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=3] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=70, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=70, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=70, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=5] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=70, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=70, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=6] Channel closed DEBUG infra2:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=70, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=7] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=70, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=8] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 20:34:08 UTC 2023 INFO asyncssh:logging.py:92 [conn=70, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down INFO asyncssh:logging.py:92 [conn=70, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=10] Command: ip link set dev swp33 down INFO asyncssh:logging.py:92 [conn=70, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=70, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=11] Channel closed DEBUG infra2:Logger.py:156 ip link add name bond1 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=70, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=12] Command: ip link add name bond1 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=70, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=70, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip link set dev bond1 up INFO asyncssh:logging.py:92 [conn=70, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=14] Command: ip link set dev bond1 up INFO asyncssh:logging.py:92 [conn=70, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=70, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 master bond1 INFO asyncssh:logging.py:92 [conn=70, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=16] Command: ip link set dev swp33 master bond1 INFO asyncssh:logging.py:92 [conn=70, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=70, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip address add 192.168.1.4/24 broadcast 192.168.1.255 dev bond1 INFO asyncssh:logging.py:92 [conn=70, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=18] Command: ip address add 192.168.1.4/24 broadcast 192.168.1.255 dev bond1 INFO asyncssh:logging.py:92 [conn=70, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_192.168.1.5/24', 'count': 1, 'ip': '192.168.1.5', 'gw': '192.168.1.4', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2.2.2.5/24', 'count': 1, 'ip': '2.2.2.5', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:2:7' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=70, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=19] Channel closed DEBUG infra2:Logger.py:156 bridge -j vlan show dev bond1 INFO asyncssh:logging.py:92 [conn=70, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=20] Command: bridge -j vlan show dev bond1 INFO asyncssh:logging.py:92 [conn=70, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=20] Channel closed DEBUG infra2:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'bridge -j vlan show dev bond1 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=70, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip -j address show bond1 INFO asyncssh:logging.py:92 [conn=70, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=22] Command: ip -j address show bond1 INFO asyncssh:logging.py:92 [conn=70, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=22] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":120,"ifname":"bond1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.1.4","prefixlen":24,"broadcast":"192.168.1.255","scope":"global","label":"bond1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a5","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'ip -j address show bond1 ', 'rc': 0, 'result': '[{"ifindex":120,"ifname":"bond1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.1.4","prefixlen":24,"broadcast":"192.168.1.255","scope":"global","label":"bond1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a5","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stp_bond1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lacp_bond1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_bond1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for dhcp_bond1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_bc_bond1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_response_bond1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for router_mc_bond1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ssh_bond1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for telnet_bond1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bgp_bond1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for local_route_bond1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mac_to_me_bond1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for icmp_bond1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_bc_mac_bond1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for vrrp_bond1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for custom_stream_bond1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=70, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=23] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=24] Channel closed DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 26 sw INFO asyncssh:logging.py:92 [conn=70, chan=30] Requesting new SSH session DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 27 sw INFO asyncssh:logging.py:92 [conn=70, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=26] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=27] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=28] Received channel close DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 33 sw INFO asyncssh:logging.py:92 [conn=70, chan=32] Requesting new SSH session DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 5 sw INFO asyncssh:logging.py:92 [conn=70, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=25] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=30] Command: get_cpu_traps_rate_code_avg 26 sw INFO asyncssh:logging.py:92 [conn=70, chan=31] Command: get_cpu_traps_rate_code_avg 27 sw INFO asyncssh:logging.py:92 [conn=70, chan=28] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=29] Received channel close DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 28 sw INFO asyncssh:logging.py:92 [conn=70, chan=34] Requesting new SSH session DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 188 sw INFO asyncssh:logging.py:92 [conn=70, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=32] Command: get_cpu_traps_rate_code_avg 33 sw INFO asyncssh:logging.py:92 [conn=70, chan=33] Command: get_cpu_traps_rate_code_avg 5 sw INFO asyncssh:logging.py:92 [conn=70, chan=29] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=34] Command: get_cpu_traps_rate_code_avg 28 sw INFO asyncssh:logging.py:92 [conn=70, chan=35] Command: get_cpu_traps_rate_code_avg 188 sw DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 29 sw INFO asyncssh:logging.py:92 [conn=70, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=36] Command: get_cpu_traps_rate_code_avg 29 sw INFO asyncssh:logging.py:92 [conn=70, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=30] Channel closed DEBUG infra2:Logger.py:156 202 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 202 expected 200 for stat_code 26 INFO asyncssh:logging.py:92 [conn=70, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=31] Channel closed DEBUG infra2:Logger.py:156 202 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 202 expected 200 for stat_code 27 INFO asyncssh:logging.py:92 [conn=70, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=32] Channel closed DEBUG infra2:Logger.py:156 101 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 101 expected 100 for stat_code 33 INFO asyncssh:logging.py:92 [conn=70, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=35] Channel closed DEBUG infra2:Logger.py:156 300 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 300 expected 300 for stat_code 188 INFO asyncssh:logging.py:92 [conn=70, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=33] Channel closed DEBUG infra2:Logger.py:156 102 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 102 expected 100 for stat_code 5 INFO asyncssh:logging.py:92 [conn=70, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=34] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=36] Received channel close DEBUG infra2:Logger.py:156 203 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 203 expected 200 for stat_code 28 INFO asyncssh:logging.py:92 [conn=70, chan=36] Channel closed DEBUG infra2:Logger.py:156 101 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 101 expected 100 for stat_code 29 INFO asyncssh:logging.py:92 [conn=70, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=38] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=40] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=42] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=44] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=37] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=38] Channel closed DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 207 sw INFO asyncssh:logging.py:92 [conn=70, chan=45] Requesting new SSH session DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 208 sw INFO asyncssh:logging.py:92 [conn=70, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=43] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=40] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=42] Received channel close DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 209 sw INFO asyncssh:logging.py:92 [conn=70, chan=47] Requesting new SSH session DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 161 sw INFO asyncssh:logging.py:92 [conn=70, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=45] Command: get_cpu_traps_rate_code_avg 207 sw INFO asyncssh:logging.py:92 [conn=70, chan=41] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=46] Command: get_cpu_traps_rate_code_avg 208 sw INFO asyncssh:logging.py:92 [conn=70, chan=42] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=44] Received channel close DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 65 sw INFO asyncssh:logging.py:92 [conn=70, chan=49] Requesting new SSH session DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 19 sw INFO asyncssh:logging.py:92 [conn=70, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=39] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=47] Command: get_cpu_traps_rate_code_avg 209 sw INFO asyncssh:logging.py:92 [conn=70, chan=48] Command: get_cpu_traps_rate_code_avg 161 sw INFO asyncssh:logging.py:92 [conn=70, chan=44] Channel closed DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 206 sw INFO asyncssh:logging.py:92 [conn=70, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=49] Command: get_cpu_traps_rate_code_avg 65 sw INFO asyncssh:logging.py:92 [conn=70, chan=50] Command: get_cpu_traps_rate_code_avg 19 sw DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 30 sw INFO asyncssh:logging.py:92 [conn=70, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=51] Command: get_cpu_traps_rate_code_avg 206 sw INFO asyncssh:logging.py:92 [conn=70, chan=52] Command: get_cpu_traps_rate_code_avg 30 sw INFO asyncssh:logging.py:92 [conn=70, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=45] Channel closed DEBUG infra2:Logger.py:156 1006 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 1006 expected 1000 for stat_code 207 INFO asyncssh:logging.py:92 [conn=70, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=46] Channel closed DEBUG infra2:Logger.py:156 204 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 204 expected 200 for stat_code 208 INFO asyncssh:logging.py:92 [conn=70, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=52] Channel closed DEBUG infra2:Logger.py:156 202 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 202 expected 200 for stat_code 30 INFO asyncssh:logging.py:92 [conn=70, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=51] Channel closed DEBUG infra2:Logger.py:156 1009 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 1009 expected 1000 for stat_code 206 INFO asyncssh:logging.py:92 [conn=70, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=48] Channel closed DEBUG infra2:Logger.py:156 10164 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 10164 expected 10000 for stat_code 161 INFO asyncssh:logging.py:92 [conn=70, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=50] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=49] Received channel close DEBUG infra2:Logger.py:156 101 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 101 expected 100 for stat_code 19 INFO asyncssh:logging.py:92 [conn=70, chan=47] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=49] Channel closed DEBUG infra2:Logger.py:156 102 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 102 expected 100 for stat_code 209 DEBUG infra2:Logger.py:156 101 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 101 expected 100 for stat_code 65 INFO asyncssh:logging.py:92 [conn=70, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=54] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=56] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=58] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=53] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=54] Received channel close DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg stp INFO asyncssh:logging.py:92 [conn=70, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=54] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=55] Received channel close DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg lacp INFO asyncssh:logging.py:92 [conn=70, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=55] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=56] Received exit status 0 DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg lldp INFO asyncssh:logging.py:92 [conn=70, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=60] Command: get_devlink_cpu_traps_rate_avg stp INFO asyncssh:logging.py:92 [conn=70, chan=61] Command: get_devlink_cpu_traps_rate_avg lacp INFO asyncssh:logging.py:92 [conn=70, chan=56] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=57] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=59] Received channel close DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg dhcp INFO asyncssh:logging.py:92 [conn=70, chan=63] Requesting new SSH session DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg arp_bc INFO asyncssh:logging.py:92 [conn=70, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=62] Command: get_devlink_cpu_traps_rate_avg lldp INFO asyncssh:logging.py:92 [conn=70, chan=58] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=59] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg arp_response INFO asyncssh:logging.py:92 [conn=70, chan=65] Requesting new SSH session DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg router_mc INFO asyncssh:logging.py:92 [conn=70, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=63] Command: get_devlink_cpu_traps_rate_avg dhcp INFO asyncssh:logging.py:92 [conn=70, chan=64] Command: get_devlink_cpu_traps_rate_avg arp_bc INFO asyncssh:logging.py:92 [conn=70, chan=65] Command: get_devlink_cpu_traps_rate_avg arp_response INFO asyncssh:logging.py:92 [conn=70, chan=66] Command: get_devlink_cpu_traps_rate_avg router_mc INFO asyncssh:logging.py:92 [conn=70, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=61] Channel closed DEBUG infra2:Logger.py:156 205 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 205 expected 200 for trap_code lacp INFO asyncssh:logging.py:92 [conn=70, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=62] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=60] Received channel close DEBUG infra2:Logger.py:156 206 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 206 expected 200 for trap_code lldp INFO asyncssh:logging.py:92 [conn=70, chan=60] Channel closed DEBUG infra2:Logger.py:156 201 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 201 expected 200 for trap_code stp INFO asyncssh:logging.py:92 [conn=70, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=64] Channel closed DEBUG infra2:Logger.py:156 101 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 101 expected 100 for trap_code arp_bc INFO asyncssh:logging.py:92 [conn=70, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=63] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=66] Received channel close DEBUG infra2:Logger.py:156 103 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 103 expected 100 for trap_code dhcp INFO asyncssh:logging.py:92 [conn=70, chan=66] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=65] Received channel close DEBUG infra2:Logger.py:156 103 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 103 expected 100 for trap_code router_mc INFO asyncssh:logging.py:92 [conn=70, chan=65] Channel closed DEBUG infra2:Logger.py:156 307 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 307 expected 300 for trap_code arp_response INFO asyncssh:logging.py:92 [conn=70, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=68] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=70] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=72] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=74] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=67] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=68] Received channel close DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg ssh INFO asyncssh:logging.py:92 [conn=70, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=68] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=70] Received channel close DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg telnet INFO asyncssh:logging.py:92 [conn=70, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=70] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=69] Received exit status 0 DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg local_route INFO asyncssh:logging.py:92 [conn=70, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=75] Command: get_devlink_cpu_traps_rate_avg ssh INFO asyncssh:logging.py:92 [conn=70, chan=76] Command: get_devlink_cpu_traps_rate_avg telnet INFO asyncssh:logging.py:92 [conn=70, chan=69] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=74] Received channel close DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg bgp INFO asyncssh:logging.py:92 [conn=70, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=71] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=72] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=74] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg mac_to_me INFO asyncssh:logging.py:92 [conn=70, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=77] Command: get_devlink_cpu_traps_rate_avg local_route INFO asyncssh:logging.py:92 [conn=70, chan=73] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg ip_bc_mac INFO asyncssh:logging.py:92 [conn=70, chan=80] Requesting new SSH session DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg vrrp INFO asyncssh:logging.py:92 [conn=70, chan=81] Requesting new SSH session DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg icmp INFO asyncssh:logging.py:92 [conn=70, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=78] Command: get_devlink_cpu_traps_rate_avg bgp INFO asyncssh:logging.py:92 [conn=70, chan=79] Command: get_devlink_cpu_traps_rate_avg mac_to_me INFO asyncssh:logging.py:92 [conn=70, chan=80] Command: get_devlink_cpu_traps_rate_avg ip_bc_mac INFO asyncssh:logging.py:92 [conn=70, chan=81] Command: get_devlink_cpu_traps_rate_avg vrrp INFO asyncssh:logging.py:92 [conn=70, chan=82] Command: get_devlink_cpu_traps_rate_avg icmp INFO asyncssh:logging.py:92 [conn=70, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=76] Channel closed DEBUG infra2:Logger.py:156 201 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 201 expected 200 for trap_code telnet INFO asyncssh:logging.py:92 [conn=70, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=75] Channel closed DEBUG infra2:Logger.py:156 1016 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 1016 expected 1000 for trap_code ssh INFO asyncssh:logging.py:92 [conn=70, chan=78] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=78] Channel closed DEBUG infra2:Logger.py:156 1026 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 1026 expected 1000 for trap_code bgp INFO asyncssh:logging.py:92 [conn=70, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=77] Channel closed DEBUG infra2:Logger.py:156 10157 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 10157 expected 10000 for trap_code local_route INFO asyncssh:logging.py:92 [conn=70, chan=80] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=80] Channel closed DEBUG infra2:Logger.py:156 101 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 101 expected 100 for trap_code ip_bc_mac INFO asyncssh:logging.py:92 [conn=70, chan=82] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=82] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=81] Received channel close DEBUG infra2:Logger.py:156 100 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 100 expected 100 for trap_code icmp INFO asyncssh:logging.py:92 [conn=70, chan=81] Channel closed DEBUG infra2:Logger.py:156 206 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 206 expected 200 for trap_code vrrp INFO asyncssh:logging.py:92 [conn=70, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=79] Channel closed DEBUG infra2:Logger.py:156 101 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 101 expected 100 for trap_code mac_to_me INFO asyncssh:logging.py:92 [conn=70, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=83] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=70, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=84] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=70, chan=84] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=84] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=70, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=85] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol 0x8100 flower skip_sw src_mac 02:7c:25:fd:c2:5b dst_mac 02:bd:84:3c:02:f3 vlan_id 2002 vlan_ethtype ipv4 dst_ip 105.174.55.219 ip_proto udp src_port 30211 action trap INFO asyncssh:logging.py:92 [conn=70, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=86] Command: tc filter add dev swp33 ingress protocol 0x8100 flower skip_sw src_mac 02:7c:25:fd:c2:5b dst_mac 02:bd:84:3c:02:f3 vlan_id 2002 vlan_ethtype ipv4 dst_ip 105.174.55.219 ip_proto udp src_port 30211 action trap INFO asyncssh:logging.py:92 [conn=70, chan=86] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=86] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=70, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=88] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=87] Channel closed INFO asyncssh:logging.py:92 [conn=70, chan=88] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=88] Received channel close DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=70, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=88] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=70, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=89] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=70, chan=90] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=70, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=89] Channel closed DEBUG infra2:Logger.py:156 4042 INFO asyncssh:logging.py:92 [conn=70, chan=90] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=90] Channel closed DEBUG infra2:Logger.py:156 4053 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_interact_sct_lag from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_interact.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=70, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=91] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=70, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=92] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=92] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=92] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 20:39:01 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=70, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=93] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=70, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=94] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=94] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=94] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 20:39:05 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=70, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=95] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=70, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=96] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=70, chan=96] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=96] Channel closed DEBUG infra2:Logger.py:156 [] INFO asyncssh:logging.py:92 [conn=70, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=97] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=70, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=98] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=98] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=98] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 20:39:05 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=70, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=99] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=70, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=100] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=70, chan=100] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=100] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"bond1","root":true,"refcnt":2,"options":{}}] INFO asyncssh:logging.py:92 [conn=70, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=101] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=70, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=102] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=70, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=70, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=102] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=70, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=103] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=70, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=104] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=70, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=70, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=104] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=70, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=105] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=70, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=106] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=70, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=70, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=106] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=70, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=107] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=70, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=108] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=70, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=70, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=108] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=70, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=109] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=70, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=110] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=70, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=70, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=110] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=70, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=111] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=70, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=112] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=70, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=70, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=112] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=70, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=113] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=70, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=114] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=70, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=70, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=114] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=70, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=115] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=70, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=116] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=70, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=70, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=116] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=70, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=117] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=70, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=118] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=70, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=70, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=118] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=70, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=119] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=70, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=120] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=70, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=70, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=120] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=70, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=121] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=70, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=122] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=70, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=70, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=122] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=70, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=123] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=70, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=124] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=70, chan=124] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=124] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=70, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=125] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=70, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=126] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=70, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=70, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=126] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=70, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=127] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=70, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=128] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=70, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=70, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=128] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=70, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=129] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=70, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=130] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=70, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=70, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=130] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=70, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=131] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev bond1 root INFO asyncssh:logging.py:92 [conn=70, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=132] Command: tc qdisc delete dev bond1 root INFO asyncssh:logging.py:92 [conn=70, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=70, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=132] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=70, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=133] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=70, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=134] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=70, chan=134] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=134] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=70, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=135] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=70, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=136] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=136] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=136] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 20:39:06 UTC 2023 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=70, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=137] Channel closed DEBUG infra2:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=70, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=138] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=70, chan=138] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=138] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"f6:33:41:29:6d:87","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"18:be:92:13:64:a5","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":120,"ifname":"bond1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535}] INFO asyncssh:logging.py:92 [conn=70, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=139] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond1 INFO asyncssh:logging.py:92 [conn=70, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=140] Command: ip link delete bond1 INFO asyncssh:logging.py:92 [conn=70, chan=140] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=140] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=70, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=141] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=70, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=142] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=142] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=142] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 20:39:06 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=70, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=143] Channel closed DEBUG infra2:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 INFO asyncssh:logging.py:92 [conn=70, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=144] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 INFO asyncssh:logging.py:92 [conn=70, chan=144] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=144] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=70, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=145] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=70, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=146] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=70, chan=146] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=146] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"f6:33:41:29:6d:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=70, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=70, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=147] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=70, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=70, chan=148] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=70, chan=148] Received exit status 0 INFO asyncssh:logging.py:92 [conn=70, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=70, chan=148] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/devlink/test_devlink_sct.py::test_devlink_sct_basic_ports[1] | 292.58 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-3761' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_sct_basic_ports[1]">Starting testcase:test_devlink_sct_basic_ports[1] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_sct.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=70, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=71] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=71] Local address: 172.17.0.3, port 36904 INFO asyncssh:logging.py:92 [conn=71] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=71] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=71] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=71, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 20:39:06 UTC 2023 INFO asyncssh:logging.py:92 [conn=71, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=1] Channel closed DEBUG infra2:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=71, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=71, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=71, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 2] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=71, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=3] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=71, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=71, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=71, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=5] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=71, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=71, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=6] Channel closed DEBUG infra2:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=71, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=7] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=71, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=8] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 20:39:06 UTC 2023 INFO asyncssh:logging.py:92 [conn=71, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=71, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=71, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=71, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=11] Channel closed DEBUG infra2:Logger.py:156 ip address add 192.168.1.4/24 broadcast 192.168.1.255 dev swp33 INFO asyncssh:logging.py:92 [conn=71, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=12] Command: ip address add 192.168.1.4/24 broadcast 192.168.1.255 dev swp33 INFO asyncssh:logging.py:92 [conn=71, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_192.168.1.5/24', 'count': 1, 'ip': '192.168.1.5', 'gw': '192.168.1.4', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2.2.2.5/24', 'count': 1, 'ip': '2.2.2.5', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:2:7' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=71, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=13] Channel closed DEBUG infra2:Logger.py:156 bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=71, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=14] Command: bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=71, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=14] Channel closed DEBUG infra2:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'bridge -j vlan show dev swp33 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=71, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=71, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=16] Command: ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=71, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.1.4","prefixlen":24,"broadcast":"192.168.1.255","scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a5","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'ip -j address show swp33 ', 'rc': 0, 'result': '[{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.1.4","prefixlen":24,"broadcast":"192.168.1.255","scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a5","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lacp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for dhcp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_bc_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_response_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for router_mc_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ssh_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for telnet_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bgp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for local_route_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mac_to_me_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for icmp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_bc_mac_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for vrrp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for custome_stream_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=71, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=18] Received channel close DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 26 sw INFO asyncssh:logging.py:92 [conn=71, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=18] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=20] Received channel close DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 27 sw INFO asyncssh:logging.py:92 [conn=71, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=20] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=19] Received channel close DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 33 sw INFO asyncssh:logging.py:92 [conn=71, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=24] Command: get_cpu_traps_rate_code_avg 26 sw INFO asyncssh:logging.py:92 [conn=71, chan=19] Channel closed DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 28 sw INFO asyncssh:logging.py:92 [conn=71, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=25] Command: get_cpu_traps_rate_code_avg 27 sw INFO asyncssh:logging.py:92 [conn=71, chan=21] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=23] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=22] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=26] Command: get_cpu_traps_rate_code_avg 33 sw DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 5 sw INFO asyncssh:logging.py:92 [conn=71, chan=28] Requesting new SSH session DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 29 sw INFO asyncssh:logging.py:92 [conn=71, chan=29] Requesting new SSH session DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 188 sw INFO asyncssh:logging.py:92 [conn=71, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=27] Command: get_cpu_traps_rate_code_avg 28 sw INFO asyncssh:logging.py:92 [conn=71, chan=28] Command: get_cpu_traps_rate_code_avg 5 sw INFO asyncssh:logging.py:92 [conn=71, chan=29] Command: get_cpu_traps_rate_code_avg 29 sw INFO asyncssh:logging.py:92 [conn=71, chan=30] Command: get_cpu_traps_rate_code_avg 188 sw INFO asyncssh:logging.py:92 [conn=71, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=24] Channel closed DEBUG infra2:Logger.py:156 201 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 201 expected 200 for stat_code 26 INFO asyncssh:logging.py:92 [conn=71, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=28] Channel closed DEBUG infra2:Logger.py:156 101 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 101 expected 100 for stat_code 5 INFO asyncssh:logging.py:92 [conn=71, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=30] Channel closed DEBUG infra2:Logger.py:156 307 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 307 expected 300 for stat_code 188 INFO asyncssh:logging.py:92 [conn=71, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=29] Channel closed DEBUG infra2:Logger.py:156 101 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 101 expected 100 for stat_code 29 INFO asyncssh:logging.py:92 [conn=71, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=27] Channel closed DEBUG infra2:Logger.py:156 202 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 202 expected 200 for stat_code 28 INFO asyncssh:logging.py:92 [conn=71, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=25] Channel closed DEBUG infra2:Logger.py:156 200 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 200 expected 200 for stat_code 27 INFO asyncssh:logging.py:92 [conn=71, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=26] Channel closed DEBUG infra2:Logger.py:156 101 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 101 expected 100 for stat_code 33 INFO asyncssh:logging.py:92 [conn=71, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=38] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=31] Channel closed DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 207 sw INFO asyncssh:logging.py:92 [conn=71, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=32] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=39] Command: get_cpu_traps_rate_code_avg 207 sw INFO asyncssh:logging.py:92 [conn=71, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=34] Received channel close DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 208 sw INFO asyncssh:logging.py:92 [conn=71, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=37] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=35] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=36] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=34] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=38] Received channel close DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 209 sw INFO asyncssh:logging.py:92 [conn=71, chan=41] Requesting new SSH session DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 65 sw INFO asyncssh:logging.py:92 [conn=71, chan=42] Requesting new SSH session DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 19 sw INFO asyncssh:logging.py:92 [conn=71, chan=43] Requesting new SSH session DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 161 sw INFO asyncssh:logging.py:92 [conn=71, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=33] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=38] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=40] Command: get_cpu_traps_rate_code_avg 208 sw DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 206 sw INFO asyncssh:logging.py:92 [conn=71, chan=45] Requesting new SSH session DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 30 sw INFO asyncssh:logging.py:92 [conn=71, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=41] Command: get_cpu_traps_rate_code_avg 209 sw INFO asyncssh:logging.py:92 [conn=71, chan=42] Command: get_cpu_traps_rate_code_avg 65 sw INFO asyncssh:logging.py:92 [conn=71, chan=43] Command: get_cpu_traps_rate_code_avg 19 sw INFO asyncssh:logging.py:92 [conn=71, chan=44] Command: get_cpu_traps_rate_code_avg 161 sw INFO asyncssh:logging.py:92 [conn=71, chan=45] Command: get_cpu_traps_rate_code_avg 206 sw INFO asyncssh:logging.py:92 [conn=71, chan=46] Command: get_cpu_traps_rate_code_avg 30 sw INFO asyncssh:logging.py:92 [conn=71, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=39] Channel closed DEBUG infra2:Logger.py:156 1011 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 1011 expected 1000 for stat_code 207 INFO asyncssh:logging.py:92 [conn=71, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=40] Channel closed DEBUG infra2:Logger.py:156 200 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 200 expected 200 for stat_code 208 INFO asyncssh:logging.py:92 [conn=71, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=44] Channel closed DEBUG infra2:Logger.py:156 10100 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 10100 expected 10000 for stat_code 161 INFO asyncssh:logging.py:92 [conn=71, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=41] Channel closed DEBUG infra2:Logger.py:156 100 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 100 expected 100 for stat_code 209 INFO asyncssh:logging.py:92 [conn=71, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=45] Channel closed DEBUG infra2:Logger.py:156 1014 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 1014 expected 1000 for stat_code 206 INFO asyncssh:logging.py:92 [conn=71, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=42] Channel closed DEBUG infra2:Logger.py:156 101 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 101 expected 100 for stat_code 65 INFO asyncssh:logging.py:92 [conn=71, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=46] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=43] Received channel close DEBUG infra2:Logger.py:156 202 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 202 expected 200 for stat_code 30 INFO asyncssh:logging.py:92 [conn=71, chan=43] Channel closed DEBUG infra2:Logger.py:156 100 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 100 expected 100 for stat_code 19 INFO asyncssh:logging.py:92 [conn=71, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=48] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=50] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=52] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=47] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=48] Received channel close DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg stp INFO asyncssh:logging.py:92 [conn=71, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=48] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=49] Received channel close DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg lacp INFO asyncssh:logging.py:92 [conn=71, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=49] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg lldp INFO asyncssh:logging.py:92 [conn=71, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=54] Command: get_devlink_cpu_traps_rate_avg stp INFO asyncssh:logging.py:92 [conn=71, chan=50] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=53] Received channel close DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg dhcp INFO asyncssh:logging.py:92 [conn=71, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=55] Command: get_devlink_cpu_traps_rate_avg lacp INFO asyncssh:logging.py:92 [conn=71, chan=56] Command: get_devlink_cpu_traps_rate_avg lldp INFO asyncssh:logging.py:92 [conn=71, chan=51] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=52] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=53] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg arp_bc INFO asyncssh:logging.py:92 [conn=71, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=57] Command: get_devlink_cpu_traps_rate_avg dhcp DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg arp_response INFO asyncssh:logging.py:92 [conn=71, chan=59] Requesting new SSH session DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg router_mc INFO asyncssh:logging.py:92 [conn=71, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=58] Command: get_devlink_cpu_traps_rate_avg arp_bc INFO asyncssh:logging.py:92 [conn=71, chan=59] Command: get_devlink_cpu_traps_rate_avg arp_response INFO asyncssh:logging.py:92 [conn=71, chan=60] Command: get_devlink_cpu_traps_rate_avg router_mc INFO asyncssh:logging.py:92 [conn=71, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=54] Channel closed DEBUG infra2:Logger.py:156 204 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 204 expected 200 for trap_code stp INFO asyncssh:logging.py:92 [conn=71, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=56] Channel closed DEBUG infra2:Logger.py:156 204 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 204 expected 200 for trap_code lldp INFO asyncssh:logging.py:92 [conn=71, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=55] Channel closed DEBUG infra2:Logger.py:156 204 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 204 expected 200 for trap_code lacp INFO asyncssh:logging.py:92 [conn=71, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=57] Channel closed DEBUG infra2:Logger.py:156 101 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 101 expected 100 for trap_code dhcp INFO asyncssh:logging.py:92 [conn=71, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=58] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=60] Received channel close DEBUG infra2:Logger.py:156 103 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 103 expected 100 for trap_code arp_bc INFO asyncssh:logging.py:92 [conn=71, chan=60] Channel closed DEBUG infra2:Logger.py:156 103 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 103 expected 100 for trap_code router_mc INFO asyncssh:logging.py:92 [conn=71, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=59] Channel closed DEBUG infra2:Logger.py:156 308 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 308 expected 300 for trap_code arp_response INFO asyncssh:logging.py:92 [conn=71, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=62] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=64] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=66] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=68] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=61] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=62] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg ssh INFO asyncssh:logging.py:92 [conn=71, chan=69] Requesting new SSH session DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg telnet INFO asyncssh:logging.py:92 [conn=71, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=64] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=67] Received channel close DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg local_route INFO asyncssh:logging.py:92 [conn=71, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=65] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=67] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg mac_to_me INFO asyncssh:logging.py:92 [conn=71, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=69] Command: get_devlink_cpu_traps_rate_avg ssh INFO asyncssh:logging.py:92 [conn=71, chan=70] Command: get_devlink_cpu_traps_rate_avg telnet INFO asyncssh:logging.py:92 [conn=71, chan=63] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=66] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=68] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=71] Command: get_devlink_cpu_traps_rate_avg local_route DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg icmp INFO asyncssh:logging.py:92 [conn=71, chan=73] Requesting new SSH session DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg bgp INFO asyncssh:logging.py:92 [conn=71, chan=74] Requesting new SSH session DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg ip_bc_mac INFO asyncssh:logging.py:92 [conn=71, chan=75] Requesting new SSH session DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg vrrp INFO asyncssh:logging.py:92 [conn=71, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=72] Command: get_devlink_cpu_traps_rate_avg mac_to_me INFO asyncssh:logging.py:92 [conn=71, chan=73] Command: get_devlink_cpu_traps_rate_avg icmp INFO asyncssh:logging.py:92 [conn=71, chan=74] Command: get_devlink_cpu_traps_rate_avg bgp INFO asyncssh:logging.py:92 [conn=71, chan=75] Command: get_devlink_cpu_traps_rate_avg ip_bc_mac INFO asyncssh:logging.py:92 [conn=71, chan=76] Command: get_devlink_cpu_traps_rate_avg vrrp INFO asyncssh:logging.py:92 [conn=71, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=74] Channel closed DEBUG infra2:Logger.py:156 1019 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 1019 expected 1000 for trap_code bgp INFO asyncssh:logging.py:92 [conn=71, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=70] Channel closed DEBUG infra2:Logger.py:156 206 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 206 expected 200 for trap_code telnet INFO asyncssh:logging.py:92 [conn=71, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=71] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=75] Channel closed DEBUG infra2:Logger.py:156 10217 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 10217 expected 10000 for trap_code local_route DEBUG infra2:Logger.py:156 102 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 102 expected 100 for trap_code ip_bc_mac INFO asyncssh:logging.py:92 [conn=71, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=73] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=76] Received channel close DEBUG infra2:Logger.py:156 105 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 105 expected 100 for trap_code icmp INFO asyncssh:logging.py:92 [conn=71, chan=72] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=76] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=69] Received channel close DEBUG infra2:Logger.py:156 103 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 103 expected 100 for trap_code mac_to_me DEBUG infra2:Logger.py:156 204 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 204 expected 200 for trap_code vrrp INFO asyncssh:logging.py:92 [conn=71, chan=69] Channel closed DEBUG infra2:Logger.py:156 1029 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 1029 expected 1000 for trap_code ssh INFO asyncssh:logging.py:92 [conn=71, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=77] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=71, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=78] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=71, chan=78] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=78] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=71, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=79] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol 0x8100 flower skip_sw src_mac 02:f6:11:7f:c1:c6 dst_mac 02:b1:f4:77:7d:11 vlan_id 1051 vlan_ethtype ipv4 dst_ip 83.254.34.188 ip_proto udp dst_port 29156 action trap INFO asyncssh:logging.py:92 [conn=71, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=80] Command: tc filter add dev swp33 ingress protocol 0x8100 flower skip_sw src_mac 02:f6:11:7f:c1:c6 dst_mac 02:b1:f4:77:7d:11 vlan_id 1051 vlan_ethtype ipv4 dst_ip 83.254.34.188 ip_proto udp dst_port 29156 action trap INFO asyncssh:logging.py:92 [conn=71, chan=80] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=80] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=71, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=82] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=81] Channel closed INFO asyncssh:logging.py:92 [conn=71, chan=82] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=82] Received channel close DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=71, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=82] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=71, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=83] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=71, chan=84] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=71, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=83] Channel closed DEBUG infra2:Logger.py:156 4040 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 4040 expected 4000 for stat_code 195 INFO asyncssh:logging.py:92 [conn=71, chan=84] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=84] Channel closed DEBUG infra2:Logger.py:156 4057 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 4057 expected 4000 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_sct_basic_ports[1] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_sct.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=71, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=85] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=71, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=86] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=86] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=86] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 20:43:58 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=71, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=87] Channel closed DEBUG infra2:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 INFO asyncssh:logging.py:92 [conn=71, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=88] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 INFO asyncssh:logging.py:92 [conn=71, chan=88] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=88] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=71, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=89] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=71, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=90] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=71, chan=90] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=90] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"f6:33:41:29:6d:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=71, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=91] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=71, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=92] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=71, chan=92] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=92] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=71, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=93] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=71, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=94] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=94] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=94] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 20:43:58 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=71, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=95] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=71, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=96] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=71, chan=96] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=96] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=71, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=97] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=71, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=98] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=71, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=71, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=98] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=71, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=99] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=71, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=100] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=71, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=71, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=100] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=71, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=101] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=71, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=102] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=71, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=71, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=102] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=71, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=103] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=71, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=104] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=71, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=71, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=104] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=71, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=105] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=71, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=106] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=71, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=71, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=106] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=71, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=107] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=71, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=108] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=71, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=71, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=108] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=71, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=109] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=71, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=110] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=71, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=71, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=110] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=71, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=111] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=71, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=112] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=71, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=71, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=112] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=71, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=113] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=71, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=114] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=71, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=71, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=114] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=71, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=115] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=71, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=116] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=71, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=71, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=116] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=71, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=117] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=71, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=118] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=71, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=71, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=118] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=71, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=119] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=71, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=120] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=71, chan=120] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=120] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=71, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=121] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=71, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=122] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=71, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=71, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=122] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=71, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=123] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=71, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=124] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=71, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=71, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=124] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=71, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=125] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=71, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=126] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=71, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=71, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=126] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=71, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=71, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=127] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=71, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=71, chan=128] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=71, chan=128] Received exit status 0 INFO asyncssh:logging.py:92 [conn=71, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=71, chan=128] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/devlink/test_devlink_sct.py::test_devlink_sct_basic_ports[2] | 351.75 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-3934' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_sct_basic_ports[2]">Starting testcase:test_devlink_sct_basic_ports[2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_sct.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=71, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=72] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=72] Local address: 172.17.0.3, port 40282 INFO asyncssh:logging.py:92 [conn=72] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=72] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=72] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=72, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 20:43:59 UTC 2023 INFO asyncssh:logging.py:92 [conn=72, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=1] Channel closed DEBUG infra2:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=72, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=72, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=72, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 2] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=72, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=3] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=72, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=72, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=72, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=5] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=72, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=72, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=6] Channel closed DEBUG infra2:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=72, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=7] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=72, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=8] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 20:43:59 UTC 2023 INFO asyncssh:logging.py:92 [conn=72, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=72, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=72, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=72, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=11] Channel closed DEBUG infra2:Logger.py:156 ip address add 192.168.1.4/24 broadcast 192.168.1.255 dev swp33 INFO asyncssh:logging.py:92 [conn=72, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=12] Command: ip address add 192.168.1.4/24 broadcast 192.168.1.255 dev swp33 INFO asyncssh:logging.py:92 [conn=72, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=72, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip address add 192.168.2.4/24 broadcast 192.168.2.255 dev swp34 INFO asyncssh:logging.py:92 [conn=72, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=14] Command: ip address add 192.168.2.4/24 broadcast 192.168.2.255 dev swp34 INFO asyncssh:logging.py:92 [conn=72, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_192.168.1.5/24', 'count': 1, 'ip': '192.168.1.5', 'gw': '192.168.1.4', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_192.168.2.5/24', 'count': 1, 'ip': '192.168.2.5', 'gw': '192.168.2.4', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:2:7' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=72, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=15] Channel closed DEBUG infra2:Logger.py:156 bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=72, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=16] Command: bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=72, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=16] Channel closed DEBUG infra2:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'bridge -j vlan show dev swp33 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=72, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=72, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=18] Command: ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=72, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=18] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.1.4","prefixlen":24,"broadcast":"192.168.1.255","scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a5","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'ip -j address show swp33 ', 'rc': 0, 'result': '[{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.1.4","prefixlen":24,"broadcast":"192.168.1.255","scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a5","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO asyncssh:logging.py:92 [conn=72, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=19] Channel closed DEBUG infra2:Logger.py:156 bridge -j vlan show dev swp34 INFO asyncssh:logging.py:92 [conn=72, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=20] Command: bridge -j vlan show dev swp34 INFO asyncssh:logging.py:92 [conn=72, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=20] Channel closed DEBUG infra2:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'bridge -j vlan show dev swp34 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=72, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip -j address show swp34 INFO asyncssh:logging.py:92 [conn=72, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=22] Command: ip -j address show swp34 INFO asyncssh:logging.py:92 [conn=72, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=22] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.2.4","prefixlen":24,"broadcast":"192.168.2.255","scope":"global","label":"swp34","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a6","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'ip -j address show swp34 ', 'rc': 0, 'result': '[{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.2.4","prefixlen":24,"broadcast":"192.168.2.255","scope":"global","label":"swp34","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a6","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lacp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for dhcp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_bc_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_response_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for router_mc_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ssh_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for telnet_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bgp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for local_route_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mac_to_me_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for icmp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_bc_mac_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for vrrp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for custome_stream_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stp_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lacp_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for dhcp_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_bc_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_response_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for router_mc_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ssh_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for telnet_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bgp_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for local_route_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mac_to_me_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for icmp_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_bc_mac_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for vrrp_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for custome_stream_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_192.168.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=72, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=23] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=24] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=25] Received channel close DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 26 sw INFO asyncssh:logging.py:92 [conn=72, chan=30] Requesting new SSH session DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 27 sw INFO asyncssh:logging.py:92 [conn=72, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=25] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=28] Received channel close DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 28 sw INFO asyncssh:logging.py:92 [conn=72, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=29] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=26] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=30] Command: get_cpu_traps_rate_code_avg 26 sw INFO asyncssh:logging.py:92 [conn=72, chan=28] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=27] Received channel close DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 29 sw INFO asyncssh:logging.py:92 [conn=72, chan=33] Requesting new SSH session DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 33 sw INFO asyncssh:logging.py:92 [conn=72, chan=34] Requesting new SSH session DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 188 sw INFO asyncssh:logging.py:92 [conn=72, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=31] Command: get_cpu_traps_rate_code_avg 27 sw INFO asyncssh:logging.py:92 [conn=72, chan=27] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=32] Command: get_cpu_traps_rate_code_avg 28 sw DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 5 sw INFO asyncssh:logging.py:92 [conn=72, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=33] Command: get_cpu_traps_rate_code_avg 29 sw INFO asyncssh:logging.py:92 [conn=72, chan=34] Command: get_cpu_traps_rate_code_avg 33 sw INFO asyncssh:logging.py:92 [conn=72, chan=35] Command: get_cpu_traps_rate_code_avg 188 sw INFO asyncssh:logging.py:92 [conn=72, chan=36] Command: get_cpu_traps_rate_code_avg 5 sw INFO asyncssh:logging.py:92 [conn=72, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=30] Channel closed DEBUG infra2:Logger.py:156 202 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 202 expected 200 for stat_code 26 INFO asyncssh:logging.py:92 [conn=72, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=33] Channel closed DEBUG infra2:Logger.py:156 100 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 100 expected 100 for stat_code 29 INFO asyncssh:logging.py:92 [conn=72, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=32] Channel closed DEBUG infra2:Logger.py:156 202 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 202 expected 200 for stat_code 28 INFO asyncssh:logging.py:92 [conn=72, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=31] Channel closed DEBUG infra2:Logger.py:156 200 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 200 expected 200 for stat_code 27 INFO asyncssh:logging.py:92 [conn=72, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=35] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=34] Received channel close DEBUG infra2:Logger.py:156 310 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 310 expected 300 for stat_code 188 INFO asyncssh:logging.py:92 [conn=72, chan=36] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=34] Channel closed DEBUG infra2:Logger.py:156 103 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 103 expected 100 for stat_code 5 DEBUG infra2:Logger.py:156 103 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 103 expected 100 for stat_code 33 INFO asyncssh:logging.py:92 [conn=72, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=38] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=40] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=42] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=44] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=37] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=40] Received channel close DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 207 sw INFO asyncssh:logging.py:92 [conn=72, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=38] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=42] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=39] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=43] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=40] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=44] Received channel close DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 208 sw INFO asyncssh:logging.py:92 [conn=72, chan=46] Requesting new SSH session DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 19 sw INFO asyncssh:logging.py:92 [conn=72, chan=47] Requesting new SSH session DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 206 sw INFO asyncssh:logging.py:92 [conn=72, chan=48] Requesting new SSH session DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 209 sw INFO asyncssh:logging.py:92 [conn=72, chan=49] Requesting new SSH session DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 161 sw INFO asyncssh:logging.py:92 [conn=72, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=41] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=44] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=45] Command: get_cpu_traps_rate_code_avg 207 sw DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 65 sw INFO asyncssh:logging.py:92 [conn=72, chan=51] Requesting new SSH session DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 30 sw INFO asyncssh:logging.py:92 [conn=72, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=46] Command: get_cpu_traps_rate_code_avg 208 sw INFO asyncssh:logging.py:92 [conn=72, chan=47] Command: get_cpu_traps_rate_code_avg 19 sw INFO asyncssh:logging.py:92 [conn=72, chan=48] Command: get_cpu_traps_rate_code_avg 206 sw INFO asyncssh:logging.py:92 [conn=72, chan=49] Command: get_cpu_traps_rate_code_avg 209 sw INFO asyncssh:logging.py:92 [conn=72, chan=50] Command: get_cpu_traps_rate_code_avg 161 sw INFO asyncssh:logging.py:92 [conn=72, chan=51] Command: get_cpu_traps_rate_code_avg 65 sw INFO asyncssh:logging.py:92 [conn=72, chan=52] Command: get_cpu_traps_rate_code_avg 30 sw INFO asyncssh:logging.py:92 [conn=72, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=45] Channel closed DEBUG infra2:Logger.py:156 1007 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 1007 expected 1000 for stat_code 207 INFO asyncssh:logging.py:92 [conn=72, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=50] Channel closed DEBUG infra2:Logger.py:156 10108 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 10108 expected 10000 for stat_code 161 INFO asyncssh:logging.py:92 [conn=72, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=46] Channel closed DEBUG infra2:Logger.py:156 204 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 204 expected 200 for stat_code 208 INFO asyncssh:logging.py:92 [conn=72, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=47] Channel closed DEBUG infra2:Logger.py:156 103 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 103 expected 100 for stat_code 19 INFO asyncssh:logging.py:92 [conn=72, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=48] Channel closed DEBUG infra2:Logger.py:156 1000 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 1000 expected 1000 for stat_code 206 INFO asyncssh:logging.py:92 [conn=72, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=51] Channel closed DEBUG infra2:Logger.py:156 102 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 102 expected 100 for stat_code 65 INFO asyncssh:logging.py:92 [conn=72, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=49] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=52] Received channel close DEBUG infra2:Logger.py:156 102 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 102 expected 100 for stat_code 209 INFO asyncssh:logging.py:92 [conn=72, chan=52] Channel closed DEBUG infra2:Logger.py:156 202 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 202 expected 200 for stat_code 30 INFO asyncssh:logging.py:92 [conn=72, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=54] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=56] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=58] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=53] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=54] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=55] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=58] Received channel close DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg stp INFO asyncssh:logging.py:92 [conn=72, chan=60] Requesting new SSH session DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg lacp INFO asyncssh:logging.py:92 [conn=72, chan=61] Requesting new SSH session DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg lldp INFO asyncssh:logging.py:92 [conn=72, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=57] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=56] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=58] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=59] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg arp_bc INFO asyncssh:logging.py:92 [conn=72, chan=63] Requesting new SSH session DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg dhcp INFO asyncssh:logging.py:92 [conn=72, chan=64] Requesting new SSH session DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg arp_response INFO asyncssh:logging.py:92 [conn=72, chan=65] Requesting new SSH session DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg router_mc INFO asyncssh:logging.py:92 [conn=72, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=60] Command: get_devlink_cpu_traps_rate_avg stp INFO asyncssh:logging.py:92 [conn=72, chan=61] Command: get_devlink_cpu_traps_rate_avg lacp INFO asyncssh:logging.py:92 [conn=72, chan=62] Command: get_devlink_cpu_traps_rate_avg lldp INFO asyncssh:logging.py:92 [conn=72, chan=63] Command: get_devlink_cpu_traps_rate_avg arp_bc INFO asyncssh:logging.py:92 [conn=72, chan=64] Command: get_devlink_cpu_traps_rate_avg dhcp INFO asyncssh:logging.py:92 [conn=72, chan=65] Command: get_devlink_cpu_traps_rate_avg arp_response INFO asyncssh:logging.py:92 [conn=72, chan=66] Command: get_devlink_cpu_traps_rate_avg router_mc INFO asyncssh:logging.py:92 [conn=72, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=60] Channel closed DEBUG infra2:Logger.py:156 207 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 207 expected 200 for trap_code stp INFO asyncssh:logging.py:92 [conn=72, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=61] Channel closed DEBUG infra2:Logger.py:156 204 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 204 expected 200 for trap_code lacp INFO asyncssh:logging.py:92 [conn=72, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=66] Channel closed DEBUG infra2:Logger.py:156 102 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 102 expected 100 for trap_code router_mc INFO asyncssh:logging.py:92 [conn=72, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=63] Channel closed DEBUG infra2:Logger.py:156 102 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 102 expected 100 for trap_code arp_bc INFO asyncssh:logging.py:92 [conn=72, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=64] Channel closed DEBUG infra2:Logger.py:156 101 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 101 expected 100 for trap_code dhcp INFO asyncssh:logging.py:92 [conn=72, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=62] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=65] Received channel close DEBUG infra2:Logger.py:156 206 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 206 expected 200 for trap_code lldp INFO asyncssh:logging.py:92 [conn=72, chan=65] Channel closed DEBUG infra2:Logger.py:156 303 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 303 expected 300 for trap_code arp_response INFO asyncssh:logging.py:92 [conn=72, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=68] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=70] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=72] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=74] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=67] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=68] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=70] Received channel close DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg ssh INFO asyncssh:logging.py:92 [conn=72, chan=75] Requesting new SSH session DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg telnet INFO asyncssh:logging.py:92 [conn=72, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=70] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg local_route INFO asyncssh:logging.py:92 [conn=72, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=75] Command: get_devlink_cpu_traps_rate_avg ssh INFO asyncssh:logging.py:92 [conn=72, chan=76] Command: get_devlink_cpu_traps_rate_avg telnet INFO asyncssh:logging.py:92 [conn=72, chan=69] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=71] Received channel close DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg bgp INFO asyncssh:logging.py:92 [conn=72, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=71] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg mac_to_me INFO asyncssh:logging.py:92 [conn=72, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=77] Command: get_devlink_cpu_traps_rate_avg local_route INFO asyncssh:logging.py:92 [conn=72, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=73] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=72] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=78] Command: get_devlink_cpu_traps_rate_avg bgp INFO asyncssh:logging.py:92 [conn=72, chan=79] Command: get_devlink_cpu_traps_rate_avg mac_to_me INFO asyncssh:logging.py:92 [conn=72, chan=74] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg icmp INFO asyncssh:logging.py:92 [conn=72, chan=80] Requesting new SSH session DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg ip_bc_mac INFO asyncssh:logging.py:92 [conn=72, chan=81] Requesting new SSH session DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg vrrp INFO asyncssh:logging.py:92 [conn=72, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=80] Command: get_devlink_cpu_traps_rate_avg icmp INFO asyncssh:logging.py:92 [conn=72, chan=81] Command: get_devlink_cpu_traps_rate_avg ip_bc_mac INFO asyncssh:logging.py:92 [conn=72, chan=82] Command: get_devlink_cpu_traps_rate_avg vrrp INFO asyncssh:logging.py:92 [conn=72, chan=78] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=78] Channel closed DEBUG infra2:Logger.py:156 1033 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 1033 expected 1000 for trap_code bgp INFO asyncssh:logging.py:92 [conn=72, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=76] Channel closed DEBUG infra2:Logger.py:156 204 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 204 expected 200 for trap_code telnet INFO asyncssh:logging.py:92 [conn=72, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=81] Channel closed DEBUG infra2:Logger.py:156 101 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 101 expected 100 for trap_code ip_bc_mac INFO asyncssh:logging.py:92 [conn=72, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=79] Channel closed DEBUG infra2:Logger.py:156 101 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 101 expected 100 for trap_code mac_to_me INFO asyncssh:logging.py:92 [conn=72, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=75] Channel closed DEBUG infra2:Logger.py:156 1019 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 1019 expected 1000 for trap_code ssh INFO asyncssh:logging.py:92 [conn=72, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=77] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=80] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=82] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=80] Received channel close DEBUG infra2:Logger.py:156 10279 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 10279 expected 10000 for trap_code local_route INFO asyncssh:logging.py:92 [conn=72, chan=82] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=80] Channel closed DEBUG infra2:Logger.py:156 209 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 209 expected 200 for trap_code vrrp DEBUG infra2:Logger.py:156 104 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 104 expected 100 for trap_code icmp INFO asyncssh:logging.py:92 [conn=72, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=83] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=72, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=84] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=72, chan=84] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=84] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=72, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=85] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol 0x8100 flower skip_sw src_mac 02:44:a8:6b:8c:6c vlan_id 3909 vlan_ethtype ipv4 src_ip 15.244.143.215 action trap INFO asyncssh:logging.py:92 [conn=72, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=86] Command: tc filter add dev swp33 ingress protocol 0x8100 flower skip_sw src_mac 02:44:a8:6b:8c:6c vlan_id 3909 vlan_ethtype ipv4 src_ip 15.244.143.215 action trap INFO asyncssh:logging.py:92 [conn=72, chan=86] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=86] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=72, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=87] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp34 ingress INFO asyncssh:logging.py:92 [conn=72, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=88] Command: tc qdisc add dev swp34 ingress INFO asyncssh:logging.py:92 [conn=72, chan=88] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=88] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=72, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=89] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp34 ingress protocol 802.1q flower skip_sw src_mac 02:2d:a3:de:8e:90 dst_mac 02:b6:e2:bf:e8:d9 vlan_id 4044 vlan_ethtype ip src_ip 95.74.147.215 action trap INFO asyncssh:logging.py:92 [conn=72, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=90] Command: tc filter add dev swp34 ingress protocol 802.1q flower skip_sw src_mac 02:2d:a3:de:8e:90 dst_mac 02:b6:e2:bf:e8:d9 vlan_id 4044 vlan_ethtype ip src_ip 95.74.147.215 action trap INFO asyncssh:logging.py:92 [conn=72, chan=90] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=90] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=72, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=92] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=91] Channel closed INFO asyncssh:logging.py:92 [conn=72, chan=92] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=92] Received channel close DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=72, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=92] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=72, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=93] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=72, chan=94] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=72, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=93] Channel closed DEBUG infra2:Logger.py:156 4037 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 4037 expected 4000 for stat_code 195 INFO asyncssh:logging.py:92 [conn=72, chan=94] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=94] Channel closed DEBUG infra2:Logger.py:156 4062 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 4062 expected 4000 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_sct_basic_ports[2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_sct.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=72, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=95] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=72, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=96] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=96] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=96] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 20:49:49 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=72, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=97] Channel closed DEBUG infra2:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 INFO asyncssh:logging.py:92 [conn=72, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=98] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 INFO asyncssh:logging.py:92 [conn=72, chan=98] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=98] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=72, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=99] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=72, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=100] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=72, chan=100] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=100] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"f6:33:41:29:6d:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=72, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=101] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=72, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=102] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=72, chan=102] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=102] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=72, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=103] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=72, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=104] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=104] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=104] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 20:49:50 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=72, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=105] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=72, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=106] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=72, chan=106] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=106] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp34","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=72, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=107] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=72, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=108] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=72, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=72, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=108] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=72, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=109] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=72, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=110] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=72, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=72, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=110] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=72, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=111] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=72, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=112] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=72, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=72, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=112] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=72, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=113] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=72, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=114] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=72, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=72, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=114] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=72, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=115] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=72, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=116] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=72, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=72, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=116] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=72, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=117] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=72, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=118] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=72, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=72, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=118] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=72, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=119] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=72, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=120] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=72, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=72, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=120] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=72, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=121] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=72, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=122] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=72, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=72, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=122] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=72, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=123] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=72, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=124] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=72, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=72, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=124] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=72, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=125] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=72, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=126] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=72, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=72, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=126] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=72, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=127] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=72, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=128] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=72, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=72, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=128] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=72, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=129] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=72, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=130] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=72, chan=130] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=130] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=72, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=131] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=72, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=132] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=72, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=72, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=132] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=72, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=133] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 ingress INFO asyncssh:logging.py:92 [conn=72, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=134] Command: tc qdisc delete dev swp34 ingress INFO asyncssh:logging.py:92 [conn=72, chan=134] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=134] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=72, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=135] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=72, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=136] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=72, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=72, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=136] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=72, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=137] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=72, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=138] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=72, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=72, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=138] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=72, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=72, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=139] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=72, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=72, chan=140] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=72, chan=140] Received exit status 0 INFO asyncssh:logging.py:92 [conn=72, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=72, chan=140] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/devlink/test_devlink_sct.py::test_devlink_sct_basic_ports[4] | 507.64 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-4119' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_sct_basic_ports[4]">Starting testcase:test_devlink_sct_basic_ports[4] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_sct.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=72, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=73] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=73] Local address: 172.17.0.3, port 32990 INFO asyncssh:logging.py:92 [conn=73] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=73] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=73] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=73, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 20:49:50 UTC 2023 INFO asyncssh:logging.py:92 [conn=73, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=1] Channel closed DEBUG infra2:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=73, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=73, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=73, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 2] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=73, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=3] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=73, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=73, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=5] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=73, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=73, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=6] Channel closed DEBUG infra2:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=73, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=7] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=73, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=8] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 20:49:51 UTC 2023 INFO asyncssh:logging.py:92 [conn=73, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=73, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=73, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=11] Channel closed DEBUG infra2:Logger.py:156 ip address add 192.168.1.4/24 broadcast 192.168.1.255 dev swp33 INFO asyncssh:logging.py:92 [conn=73, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=12] Command: ip address add 192.168.1.4/24 broadcast 192.168.1.255 dev swp33 INFO asyncssh:logging.py:92 [conn=73, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip address add 192.168.2.4/24 broadcast 192.168.2.255 dev swp34 INFO asyncssh:logging.py:92 [conn=73, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=14] Command: ip address add 192.168.2.4/24 broadcast 192.168.2.255 dev swp34 INFO asyncssh:logging.py:92 [conn=73, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip address add 192.168.3.4/24 broadcast 192.168.3.255 dev swp35 INFO asyncssh:logging.py:92 [conn=73, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=16] Command: ip address add 192.168.3.4/24 broadcast 192.168.3.255 dev swp35 INFO asyncssh:logging.py:92 [conn=73, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip address add 192.168.4.4/24 broadcast 192.168.4.255 dev swp36 INFO asyncssh:logging.py:92 [conn=73, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=18] Command: ip address add 192.168.4.4/24 broadcast 192.168.4.255 dev swp36 INFO asyncssh:logging.py:92 [conn=73, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_192.168.1.5/24', 'count': 1, 'ip': '192.168.1.5', 'gw': '192.168.1.4', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_192.168.2.5/24', 'count': 1, 'ip': '192.168.2.5', 'gw': '192.168.2.4', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_192.168.3.5/24', 'count': 1, 'ip': '192.168.3.5', 'gw': '192.168.3.4', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_192.168.4.5/24', 'count': 1, 'ip': '192.168.4.5', 'gw': '192.168.4.4', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=73, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=19] Channel closed DEBUG infra2:Logger.py:156 bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=73, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=20] Command: bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=73, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=20] Channel closed DEBUG infra2:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'bridge -j vlan show dev swp33 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=73, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=73, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=22] Command: ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=73, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=22] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.1.4","prefixlen":24,"broadcast":"192.168.1.255","scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a5","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'ip -j address show swp33 ', 'rc': 0, 'result': '[{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.1.4","prefixlen":24,"broadcast":"192.168.1.255","scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a5","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO asyncssh:logging.py:92 [conn=73, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=23] Channel closed DEBUG infra2:Logger.py:156 bridge -j vlan show dev swp34 INFO asyncssh:logging.py:92 [conn=73, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=24] Command: bridge -j vlan show dev swp34 INFO asyncssh:logging.py:92 [conn=73, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=24] Channel closed DEBUG infra2:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'bridge -j vlan show dev swp34 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=73, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=25] Channel closed DEBUG infra2:Logger.py:156 ip -j address show swp34 INFO asyncssh:logging.py:92 [conn=73, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=26] Command: ip -j address show swp34 INFO asyncssh:logging.py:92 [conn=73, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=26] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.2.4","prefixlen":24,"broadcast":"192.168.2.255","scope":"global","label":"swp34","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a6","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'ip -j address show swp34 ', 'rc': 0, 'result': '[{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.2.4","prefixlen":24,"broadcast":"192.168.2.255","scope":"global","label":"swp34","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a6","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO asyncssh:logging.py:92 [conn=73, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=27] Channel closed DEBUG infra2:Logger.py:156 bridge -j vlan show dev swp35 INFO asyncssh:logging.py:92 [conn=73, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=28] Command: bridge -j vlan show dev swp35 INFO asyncssh:logging.py:92 [conn=73, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=28] Channel closed DEBUG infra2:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'bridge -j vlan show dev swp35 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=73, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=29] Channel closed DEBUG infra2:Logger.py:156 ip -j address show swp35 INFO asyncssh:logging.py:92 [conn=73, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=30] Command: ip -j address show swp35 INFO asyncssh:logging.py:92 [conn=73, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=30] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.3.4","prefixlen":24,"broadcast":"192.168.3.255","scope":"global","label":"swp35","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a7","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'ip -j address show swp35 ', 'rc': 0, 'result': '[{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.3.4","prefixlen":24,"broadcast":"192.168.3.255","scope":"global","label":"swp35","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a7","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO asyncssh:logging.py:92 [conn=73, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=31] Channel closed DEBUG infra2:Logger.py:156 bridge -j vlan show dev swp36 INFO asyncssh:logging.py:92 [conn=73, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=32] Command: bridge -j vlan show dev swp36 INFO asyncssh:logging.py:92 [conn=73, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=32] Channel closed DEBUG infra2:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'bridge -j vlan show dev swp36 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=73, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=33] Channel closed DEBUG infra2:Logger.py:156 ip -j address show swp36 INFO asyncssh:logging.py:92 [conn=73, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=34] Command: ip -j address show swp36 INFO asyncssh:logging.py:92 [conn=73, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=34] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.4.4","prefixlen":24,"broadcast":"192.168.4.255","scope":"global","label":"swp36","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a8","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'ip -j address show swp36 ', 'rc': 0, 'result': '[{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.4.4","prefixlen":24,"broadcast":"192.168.4.255","scope":"global","label":"swp36","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a8","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lacp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for dhcp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_bc_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_response_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for router_mc_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ssh_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for telnet_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bgp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for local_route_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mac_to_me_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for icmp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_bc_mac_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for vrrp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for custome_stream_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stp_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lacp_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for dhcp_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_bc_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_response_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for router_mc_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ssh_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for telnet_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bgp_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for local_route_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mac_to_me_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for icmp_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_bc_mac_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for vrrp_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for custome_stream_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stp_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lacp_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for dhcp_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_bc_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_response_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for router_mc_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ssh_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for telnet_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bgp_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for local_route_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mac_to_me_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for icmp_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_bc_mac_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for vrrp_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for custome_stream_swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stp_swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lacp_swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for dhcp_swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_bc_swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_response_swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for router_mc_swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ssh_swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for telnet_swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bgp_swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for local_route_swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mac_to_me_swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for icmp_swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_bc_mac_swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for vrrp_swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for custome_stream_swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_192.168.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_192.168.3.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_192.168.4.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=73, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=38] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=40] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=35] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=36] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=38] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=41] Received channel close DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 26 sw INFO asyncssh:logging.py:92 [conn=73, chan=42] Requesting new SSH session DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 27 sw INFO asyncssh:logging.py:92 [conn=73, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=39] Channel closed DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 33 sw INFO asyncssh:logging.py:92 [conn=73, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=37] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=40] Channel closed DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 5 sw INFO asyncssh:logging.py:92 [conn=73, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=41] Channel closed DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 28 sw INFO asyncssh:logging.py:92 [conn=73, chan=46] Requesting new SSH session DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 188 sw INFO asyncssh:logging.py:92 [conn=73, chan=47] Requesting new SSH session DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 29 sw INFO asyncssh:logging.py:92 [conn=73, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=42] Command: get_cpu_traps_rate_code_avg 26 sw INFO asyncssh:logging.py:92 [conn=73, chan=43] Command: get_cpu_traps_rate_code_avg 27 sw INFO asyncssh:logging.py:92 [conn=73, chan=44] Command: get_cpu_traps_rate_code_avg 33 sw INFO asyncssh:logging.py:92 [conn=73, chan=45] Command: get_cpu_traps_rate_code_avg 5 sw INFO asyncssh:logging.py:92 [conn=73, chan=46] Command: get_cpu_traps_rate_code_avg 28 sw INFO asyncssh:logging.py:92 [conn=73, chan=47] Command: get_cpu_traps_rate_code_avg 188 sw INFO asyncssh:logging.py:92 [conn=73, chan=48] Command: get_cpu_traps_rate_code_avg 29 sw INFO asyncssh:logging.py:92 [conn=73, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=42] Channel closed DEBUG infra2:Logger.py:156 200 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 200 expected 200 for stat_code 26 INFO asyncssh:logging.py:92 [conn=73, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=43] Channel closed DEBUG infra2:Logger.py:156 204 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 204 expected 200 for stat_code 27 INFO asyncssh:logging.py:92 [conn=73, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=47] Channel closed DEBUG infra2:Logger.py:156 319 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 319 expected 300 for stat_code 188 INFO asyncssh:logging.py:92 [conn=73, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=48] Channel closed DEBUG infra2:Logger.py:156 118 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 118 expected 100 for stat_code 29 INFO asyncssh:logging.py:92 [conn=73, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=44] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=45] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=46] Received channel close DEBUG infra2:Logger.py:156 119 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 119 expected 100 for stat_code 33 DEBUG infra2:Logger.py:156 119 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 119 expected 100 for stat_code 5 INFO asyncssh:logging.py:92 [conn=73, chan=46] Channel closed DEBUG infra2:Logger.py:156 204 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 204 expected 200 for stat_code 28 INFO asyncssh:logging.py:92 [conn=73, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=50] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=52] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=54] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=56] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=49] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=51] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=52] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=50] Received channel close DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 207 sw INFO asyncssh:logging.py:92 [conn=73, chan=57] Requesting new SSH session DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 206 sw INFO asyncssh:logging.py:92 [conn=73, chan=58] Requesting new SSH session DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 161 sw INFO asyncssh:logging.py:92 [conn=73, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=50] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=56] Received channel close DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 208 sw INFO asyncssh:logging.py:92 [conn=73, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=57] Command: get_cpu_traps_rate_code_avg 207 sw INFO asyncssh:logging.py:92 [conn=73, chan=58] Command: get_cpu_traps_rate_code_avg 206 sw INFO asyncssh:logging.py:92 [conn=73, chan=59] Command: get_cpu_traps_rate_code_avg 161 sw INFO asyncssh:logging.py:92 [conn=73, chan=53] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=54] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=55] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=56] Channel closed DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 65 sw INFO asyncssh:logging.py:92 [conn=73, chan=61] Requesting new SSH session DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 19 sw INFO asyncssh:logging.py:92 [conn=73, chan=62] Requesting new SSH session DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 209 sw INFO asyncssh:logging.py:92 [conn=73, chan=63] Requesting new SSH session DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 30 sw INFO asyncssh:logging.py:92 [conn=73, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=60] Command: get_cpu_traps_rate_code_avg 208 sw INFO asyncssh:logging.py:92 [conn=73, chan=61] Command: get_cpu_traps_rate_code_avg 65 sw INFO asyncssh:logging.py:92 [conn=73, chan=62] Command: get_cpu_traps_rate_code_avg 19 sw INFO asyncssh:logging.py:92 [conn=73, chan=63] Command: get_cpu_traps_rate_code_avg 209 sw INFO asyncssh:logging.py:92 [conn=73, chan=64] Command: get_cpu_traps_rate_code_avg 30 sw INFO asyncssh:logging.py:92 [conn=73, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=60] Channel closed DEBUG infra2:Logger.py:156 202 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 202 expected 200 for stat_code 208 INFO asyncssh:logging.py:92 [conn=73, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=57] Channel closed DEBUG infra2:Logger.py:156 1012 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 1012 expected 1000 for stat_code 207 INFO asyncssh:logging.py:92 [conn=73, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=59] Channel closed DEBUG infra2:Logger.py:156 10137 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 10137 expected 10000 for stat_code 161 INFO asyncssh:logging.py:92 [conn=73, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=62] Channel closed DEBUG infra2:Logger.py:156 118 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 118 expected 100 for stat_code 19 INFO asyncssh:logging.py:92 [conn=73, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=58] Channel closed DEBUG infra2:Logger.py:156 1018 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 1018 expected 1000 for stat_code 206 INFO asyncssh:logging.py:92 [conn=73, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=63] Channel closed DEBUG infra2:Logger.py:156 119 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 119 expected 100 for stat_code 209 INFO asyncssh:logging.py:92 [conn=73, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=64] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=61] Channel closed DEBUG infra2:Logger.py:156 202 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 202 expected 200 for stat_code 30 DEBUG infra2:Logger.py:156 121 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 121 expected 100 for stat_code 65 INFO asyncssh:logging.py:92 [conn=73, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=66] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=68] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=70] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=65] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=66] Received channel close DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg stp INFO asyncssh:logging.py:92 [conn=73, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=66] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=69] Received channel close DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg lacp INFO asyncssh:logging.py:92 [conn=73, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=69] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg arp_bc INFO asyncssh:logging.py:92 [conn=73, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=72] Command: get_devlink_cpu_traps_rate_avg stp INFO asyncssh:logging.py:92 [conn=73, chan=73] Command: get_devlink_cpu_traps_rate_avg lacp INFO asyncssh:logging.py:92 [conn=73, chan=67] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=68] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=71] Received channel close DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg lldp INFO asyncssh:logging.py:92 [conn=73, chan=75] Requesting new SSH session DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg dhcp INFO asyncssh:logging.py:92 [conn=73, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=74] Command: get_devlink_cpu_traps_rate_avg arp_bc INFO asyncssh:logging.py:92 [conn=73, chan=70] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=71] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg arp_response INFO asyncssh:logging.py:92 [conn=73, chan=77] Requesting new SSH session DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg router_mc INFO asyncssh:logging.py:92 [conn=73, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=75] Command: get_devlink_cpu_traps_rate_avg lldp INFO asyncssh:logging.py:92 [conn=73, chan=76] Command: get_devlink_cpu_traps_rate_avg dhcp INFO asyncssh:logging.py:92 [conn=73, chan=77] Command: get_devlink_cpu_traps_rate_avg arp_response INFO asyncssh:logging.py:92 [conn=73, chan=78] Command: get_devlink_cpu_traps_rate_avg router_mc INFO asyncssh:logging.py:92 [conn=73, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=73] Channel closed DEBUG infra2:Logger.py:156 208 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 208 expected 200 for trap_code lacp INFO asyncssh:logging.py:92 [conn=73, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=72] Channel closed DEBUG infra2:Logger.py:156 206 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 206 expected 200 for trap_code stp INFO asyncssh:logging.py:92 [conn=73, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=77] Channel closed DEBUG infra2:Logger.py:156 320 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 320 expected 300 for trap_code arp_response INFO asyncssh:logging.py:92 [conn=73, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=76] Channel closed DEBUG infra2:Logger.py:156 118 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 118 expected 100 for trap_code dhcp INFO asyncssh:logging.py:92 [conn=73, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=75] Channel closed DEBUG infra2:Logger.py:156 202 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 202 expected 200 for trap_code lldp INFO asyncssh:logging.py:92 [conn=73, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=74] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=78] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=78] Received channel close DEBUG infra2:Logger.py:156 121 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 121 expected 100 for trap_code arp_bc INFO asyncssh:logging.py:92 [conn=73, chan=78] Channel closed DEBUG infra2:Logger.py:156 118 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 118 expected 100 for trap_code router_mc INFO asyncssh:logging.py:92 [conn=73, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=80] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=82] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=84] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=86] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=80] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=79] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=80] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=85] Received channel close DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg ssh INFO asyncssh:logging.py:92 [conn=73, chan=87] Requesting new SSH session DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg telnet INFO asyncssh:logging.py:92 [conn=73, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=85] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=86] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=82] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=82] Received channel close DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg icmp INFO asyncssh:logging.py:92 [conn=73, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=83] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=86] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=82] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=87] Command: get_devlink_cpu_traps_rate_avg ssh INFO asyncssh:logging.py:92 [conn=73, chan=88] Command: get_devlink_cpu_traps_rate_avg telnet INFO asyncssh:logging.py:92 [conn=73, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=84] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=84] Received channel close DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg mac_to_me INFO asyncssh:logging.py:92 [conn=73, chan=90] Requesting new SSH session DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg vrrp INFO asyncssh:logging.py:92 [conn=73, chan=91] Requesting new SSH session DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg local_route INFO asyncssh:logging.py:92 [conn=73, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=81] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=84] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=89] Command: get_devlink_cpu_traps_rate_avg icmp DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg bgp INFO asyncssh:logging.py:92 [conn=73, chan=93] Requesting new SSH session DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg ip_bc_mac INFO asyncssh:logging.py:92 [conn=73, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=90] Command: get_devlink_cpu_traps_rate_avg mac_to_me INFO asyncssh:logging.py:92 [conn=73, chan=91] Command: get_devlink_cpu_traps_rate_avg vrrp INFO asyncssh:logging.py:92 [conn=73, chan=92] Command: get_devlink_cpu_traps_rate_avg local_route INFO asyncssh:logging.py:92 [conn=73, chan=93] Command: get_devlink_cpu_traps_rate_avg bgp INFO asyncssh:logging.py:92 [conn=73, chan=94] Command: get_devlink_cpu_traps_rate_avg ip_bc_mac INFO asyncssh:logging.py:92 [conn=73, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=87] Channel closed DEBUG infra2:Logger.py:156 1010 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 1010 expected 1000 for trap_code ssh INFO asyncssh:logging.py:92 [conn=73, chan=88] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=88] Channel closed DEBUG infra2:Logger.py:156 202 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 202 expected 200 for trap_code telnet INFO asyncssh:logging.py:92 [conn=73, chan=92] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=92] Channel closed DEBUG infra2:Logger.py:156 10158 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 10158 expected 10000 for trap_code local_route INFO asyncssh:logging.py:92 [conn=73, chan=90] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=90] Channel closed DEBUG infra2:Logger.py:156 120 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 120 expected 100 for trap_code mac_to_me INFO asyncssh:logging.py:92 [conn=73, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=89] Channel closed DEBUG infra2:Logger.py:156 118 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 118 expected 100 for trap_code icmp INFO asyncssh:logging.py:92 [conn=73, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=91] Channel closed DEBUG infra2:Logger.py:156 208 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 208 expected 200 for trap_code vrrp INFO asyncssh:logging.py:92 [conn=73, chan=94] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=94] Channel closed DEBUG infra2:Logger.py:156 120 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 120 expected 100 for trap_code ip_bc_mac INFO asyncssh:logging.py:92 [conn=73, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=93] Channel closed DEBUG infra2:Logger.py:156 1020 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 1020 expected 1000 for trap_code bgp INFO asyncssh:logging.py:92 [conn=73, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=95] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=73, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=96] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=73, chan=96] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=96] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=97] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol ip flower skip_sw src_mac 02:71:53:51:22:c7 dst_ip 92.23.166.100 action trap INFO asyncssh:logging.py:92 [conn=73, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=98] Command: tc filter add dev swp33 ingress protocol ip flower skip_sw src_mac 02:71:53:51:22:c7 dst_ip 92.23.166.100 action trap INFO asyncssh:logging.py:92 [conn=73, chan=98] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=98] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=99] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp34 ingress INFO asyncssh:logging.py:92 [conn=73, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=100] Command: tc qdisc add dev swp34 ingress INFO asyncssh:logging.py:92 [conn=73, chan=100] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=100] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=101] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp34 ingress protocol ipv4 flower skip_sw dst_mac 02:33:64:0f:d3:7f dst_ip 114.251.98.235 action trap INFO asyncssh:logging.py:92 [conn=73, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=102] Command: tc filter add dev swp34 ingress protocol ipv4 flower skip_sw dst_mac 02:33:64:0f:d3:7f dst_ip 114.251.98.235 action trap INFO asyncssh:logging.py:92 [conn=73, chan=102] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=102] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=103] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp35 ingress INFO asyncssh:logging.py:92 [conn=73, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=104] Command: tc qdisc add dev swp35 ingress INFO asyncssh:logging.py:92 [conn=73, chan=104] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=104] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=105] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp35 ingress protocol 0x0800 flower skip_sw src_mac 02:79:a5:4d:0c:6b dst_mac 02:bf:9a:40:51:ab src_ip 80.177.205.128 dst_ip 41.51.237.13 action trap INFO asyncssh:logging.py:92 [conn=73, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=106] Command: tc filter add dev swp35 ingress protocol 0x0800 flower skip_sw src_mac 02:79:a5:4d:0c:6b dst_mac 02:bf:9a:40:51:ab src_ip 80.177.205.128 dst_ip 41.51.237.13 action trap INFO asyncssh:logging.py:92 [conn=73, chan=106] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=106] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=107] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp36 ingress INFO asyncssh:logging.py:92 [conn=73, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=108] Command: tc qdisc add dev swp36 ingress INFO asyncssh:logging.py:92 [conn=73, chan=108] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=108] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=109] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp36 ingress protocol ip flower skip_sw src_mac 02:00:cc:de:b8:e3 dst_mac 02:d9:66:28:e2:7b dst_ip 21.150.138.18 action trap INFO asyncssh:logging.py:92 [conn=73, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=110] Command: tc filter add dev swp36 ingress protocol ip flower skip_sw src_mac 02:00:cc:de:b8:e3 dst_mac 02:d9:66:28:e2:7b dst_ip 21.150.138.18 action trap INFO asyncssh:logging.py:92 [conn=73, chan=110] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=110] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=112] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=111] Channel closed INFO asyncssh:logging.py:92 [conn=73, chan=112] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=112] Received channel close DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=73, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=112] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=73, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=113] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=73, chan=114] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=73, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=113] Channel closed DEBUG infra2:Logger.py:156 4036 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 4036 expected 4000 for stat_code 195 INFO asyncssh:logging.py:92 [conn=73, chan=114] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=114] Channel closed DEBUG infra2:Logger.py:156 4058 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 4058 expected 4000 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_sct_basic_ports[4] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_sct.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=73, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=115] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=73, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=116] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=116] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=116] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 20:58:17 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=73, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=117] Channel closed DEBUG infra2:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 INFO asyncssh:logging.py:92 [conn=73, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=118] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 INFO asyncssh:logging.py:92 [conn=73, chan=118] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=118] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=119] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=73, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=120] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=73, chan=120] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=120] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"f6:33:41:29:6d:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=73, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=121] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=73, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=122] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=73, chan=122] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=122] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=123] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=73, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=124] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=124] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=124] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 20:58:17 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=73, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=125] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=73, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=126] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=73, chan=126] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=126] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp34","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp35","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp36","parent":"ffff:fff1","options":{}}] INFO asyncssh:logging.py:92 [conn=73, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=127] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=73, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=128] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=73, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=73, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=128] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=73, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=129] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=73, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=130] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=73, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=73, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=130] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=73, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=131] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=73, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=132] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=73, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=73, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=132] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=73, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=133] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=73, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=134] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=73, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=73, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=134] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=73, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=135] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=73, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=136] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=73, chan=136] Received exit status 2 INFO asyncssh:logging.py:92 [conn=73, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=136] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=73, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=137] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=73, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=138] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=73, chan=138] Received exit status 2 INFO asyncssh:logging.py:92 [conn=73, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=138] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=73, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=139] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=73, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=140] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=73, chan=140] Received exit status 2 INFO asyncssh:logging.py:92 [conn=73, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=140] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=73, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=141] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=73, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=142] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=73, chan=142] Received exit status 2 INFO asyncssh:logging.py:92 [conn=73, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=142] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=73, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=143] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=73, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=144] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=73, chan=144] Received exit status 2 INFO asyncssh:logging.py:92 [conn=73, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=144] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=73, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=145] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=73, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=146] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=73, chan=146] Received exit status 2 INFO asyncssh:logging.py:92 [conn=73, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=146] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=73, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=147] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=73, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=148] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=73, chan=148] Received exit status 2 INFO asyncssh:logging.py:92 [conn=73, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=148] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=73, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=149] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=73, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=150] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=73, chan=150] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=150] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=151] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=151] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=151] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=151] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=73, chan=152] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=152] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=73, chan=152] Received exit status 2 INFO asyncssh:logging.py:92 [conn=73, chan=152] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=152] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=73, chan=153] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=153] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=153] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=153] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=153] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 ingress INFO asyncssh:logging.py:92 [conn=73, chan=154] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=154] Command: tc qdisc delete dev swp34 ingress INFO asyncssh:logging.py:92 [conn=73, chan=154] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=154] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=154] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=155] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=155] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=155] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=155] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=155] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=73, chan=156] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=156] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=73, chan=156] Received exit status 2 INFO asyncssh:logging.py:92 [conn=73, chan=156] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=156] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=73, chan=157] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=157] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=157] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=157] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=157] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 ingress INFO asyncssh:logging.py:92 [conn=73, chan=158] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=158] Command: tc qdisc delete dev swp35 ingress INFO asyncssh:logging.py:92 [conn=73, chan=158] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=158] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=158] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=159] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=159] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=159] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=159] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=159] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=73, chan=160] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=160] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=73, chan=160] Received exit status 2 INFO asyncssh:logging.py:92 [conn=73, chan=160] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=160] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=73, chan=161] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=161] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=161] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=161] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=161] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 ingress INFO asyncssh:logging.py:92 [conn=73, chan=162] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=162] Command: tc qdisc delete dev swp36 ingress INFO asyncssh:logging.py:92 [conn=73, chan=162] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=162] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=162] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=73, chan=163] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=163] Command: date INFO asyncssh:logging.py:92 [conn=73, chan=163] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=163] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=163] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=73, chan=164] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=73, chan=164] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=73, chan=164] Received exit status 0 INFO asyncssh:logging.py:92 [conn=73, chan=164] Received channel close INFO asyncssh:logging.py:92 [conn=73, chan=164] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/devlink/test_devlink_sct.py::test_devlink_static_trap_disable | 1326.03 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-4328' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_static_trap_disable">Starting testcase:test_devlink_static_trap_disable from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_sct.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=73, chan=165] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=74] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=74] Local address: 172.17.0.3, port 47534 INFO asyncssh:logging.py:92 [conn=74] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=74] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=74] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=74, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 20:58:18 UTC 2023 INFO asyncssh:logging.py:92 [conn=74, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=1] Channel closed DEBUG infra2:Logger.py:156 cat /sys/kernel/debug/prestera/sct/* INFO asyncssh:logging.py:92 [conn=74, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=2] Command: cat /sys/kernel/debug/prestera/sct/* INFO asyncssh:logging.py:92 [conn=74, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=2] Channel closed DEBUG infra2:Logger.py:156 all_unspecified_cpu_opcodes: 100 (pps) sct_acl_trap_queue_0: 4000 (pps) sct_acl_trap_queue_1: 4000 (pps) sct_acl_trap_queue_2: 4000 (pps) sct_acl_trap_queue_3: 4000 (pps) sct_acl_trap_queue_4: 4000 (pps) sct_acl_trap_queue_5: 4000 (pps) sct_acl_trap_queue_6: 4000 (pps) sct_acl_trap_queue_7: 4000 (pps) sct_arp_intervention: 100 (pps) sct_arp_to_me: 300 (pps) sct_bgp: 1000 (pps) sct_bgp_all_routers_mc: 100 (pps) sct_cdp: 200 (pps) sct_default_route: 400 (pps) sct_dhcp: 100 (pps) sct_icmp: 100 (pps) sct_igmp: 400 (pps) sct_ip_bc: 100 (pps) sct_ip_to_me: 10000 (pps) sct_isis: 1000 (pps) sct_lacp: 200 (pps) sct_lldp: 200 (pps) sct_nat: 10000 (pps) sct_ospf: 1000 (pps) sct_special_ip4_icmp_redirect: 100 (pps) sct_special_ip4_mtu_exceed: 100 (pps) sct_special_ip4_options_in_ip_hdr: 100 (pps) sct_special_ip4_zero_ttl: 100 (pps) sct_ssh: 1000 (pps) sct_stp: 200 (pps) sct_telnet: 200 (pps) sct_vrrp: 200 (pps) INFO asyncssh:logging.py:92 [conn=74, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=3] Channel closed DEBUG infra2:Logger.py:156 for sct in `find /sys/kernel/debug/prestera/sct/*`; do echo 0 > $sct; done INFO asyncssh:logging.py:92 [conn=74, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=4] Command: for sct in `find /sys/kernel/debug/prestera/sct/*`; do echo 0 > $sct; done INFO asyncssh:logging.py:92 [conn=74, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=74, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=74, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=6] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 20:58:18 UTC 2023 INFO asyncssh:logging.py:92 [conn=74, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=7] Channel closed DEBUG infra2:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=74, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=8] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=74, chan=8] Received exit status 1 INFO asyncssh:logging.py:92 [conn=74, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 2] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=74, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=9] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=74, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=10] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=74, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=74, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=11] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=74, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=12] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=74, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=12] Channel closed DEBUG infra2:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=74, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=74, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=14] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 20:58:19 UTC 2023 INFO asyncssh:logging.py:92 [conn=74, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=74, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=16] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=74, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=74, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip address add 192.168.1.4/24 broadcast 192.168.1.255 dev swp33 INFO asyncssh:logging.py:92 [conn=74, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=18] Command: ip address add 192.168.1.4/24 broadcast 192.168.1.255 dev swp33 INFO asyncssh:logging.py:92 [conn=74, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_192.168.1.5/24', 'count': 1, 'ip': '192.168.1.5', 'gw': '192.168.1.4', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2.2.2.5/24', 'count': 1, 'ip': '2.2.2.5', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:2:7' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=74, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=19] Channel closed DEBUG infra2:Logger.py:156 bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=74, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=20] Command: bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=74, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=20] Channel closed DEBUG infra2:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'bridge -j vlan show dev swp33 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=74, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=74, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=22] Command: ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=74, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=22] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.1.4","prefixlen":24,"broadcast":"192.168.1.255","scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a5","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'ip -j address show swp33 ', 'rc': 0, 'result': '[{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.1.4","prefixlen":24,"broadcast":"192.168.1.255","scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a5","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=74, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=23] Channel closed INFO asyncssh:logging.py:92 [conn=74, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=24] Received channel close DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 26 sw INFO asyncssh:logging.py:92 [conn=74, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=24] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg stp INFO asyncssh:logging.py:92 [conn=74, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=25] Command: get_cpu_traps_rate_code_avg 26 sw INFO asyncssh:logging.py:92 [conn=74, chan=26] Command: get_devlink_cpu_traps_rate_avg stp INFO asyncssh:logging.py:92 [conn=74, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=25] Channel closed DEBUG infra2:Logger.py:156 66135 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 66135 expected 65000 for stat_code 26 INFO asyncssh:logging.py:92 [conn=74, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=26] Channel closed DEBUG infra2:Logger.py:156 66301 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 66301 expected 65000 for trap_code stp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lacp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=74, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=27] Channel closed INFO asyncssh:logging.py:92 [conn=74, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=28] Received channel close DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 27 sw INFO asyncssh:logging.py:92 [conn=74, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=28] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg lacp INFO asyncssh:logging.py:92 [conn=74, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=29] Command: get_cpu_traps_rate_code_avg 27 sw INFO asyncssh:logging.py:92 [conn=74, chan=30] Command: get_devlink_cpu_traps_rate_avg lacp INFO asyncssh:logging.py:92 [conn=74, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=29] Channel closed DEBUG infra2:Logger.py:156 66144 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 66144 expected 65000 for stat_code 27 INFO asyncssh:logging.py:92 [conn=74, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=30] Channel closed DEBUG infra2:Logger.py:156 66315 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 66315 expected 65000 for trap_code lacp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: lacp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=74, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=31] Channel closed INFO asyncssh:logging.py:92 [conn=74, chan=32] Channel closed DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 28 sw INFO asyncssh:logging.py:92 [conn=74, chan=33] Requesting new SSH session DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg lldp INFO asyncssh:logging.py:92 [conn=74, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=33] Command: get_cpu_traps_rate_code_avg 28 sw INFO asyncssh:logging.py:92 [conn=74, chan=34] Command: get_devlink_cpu_traps_rate_avg lldp INFO asyncssh:logging.py:92 [conn=74, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=33] Channel closed DEBUG infra2:Logger.py:156 66926 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 66926 expected 65000 for stat_code 28 INFO asyncssh:logging.py:92 [conn=74, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=34] Channel closed DEBUG infra2:Logger.py:156 67296 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 67296 expected 65000 for trap_code lldp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: lldp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for dhcp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=74, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=35] Channel closed INFO asyncssh:logging.py:92 [conn=74, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=36] Received channel close DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 33 sw INFO asyncssh:logging.py:92 [conn=74, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=36] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg dhcp INFO asyncssh:logging.py:92 [conn=74, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=37] Command: get_cpu_traps_rate_code_avg 33 sw INFO asyncssh:logging.py:92 [conn=74, chan=38] Command: get_devlink_cpu_traps_rate_avg dhcp INFO asyncssh:logging.py:92 [conn=74, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=37] Channel closed DEBUG infra2:Logger.py:156 66137 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 66137 expected 65000 for stat_code 33 INFO asyncssh:logging.py:92 [conn=74, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=38] Channel closed DEBUG infra2:Logger.py:156 66409 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 66409 expected 65000 for trap_code dhcp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: dhcp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_bc_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=74, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=40] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=39] Channel closed INFO asyncssh:logging.py:92 [conn=74, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=40] Received channel close DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 5 sw INFO asyncssh:logging.py:92 [conn=74, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=40] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg arp_bc INFO asyncssh:logging.py:92 [conn=74, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=41] Command: get_cpu_traps_rate_code_avg 5 sw INFO asyncssh:logging.py:92 [conn=74, chan=42] Command: get_devlink_cpu_traps_rate_avg arp_bc INFO asyncssh:logging.py:92 [conn=74, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=41] Channel closed DEBUG infra2:Logger.py:156 66131 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 66131 expected 65000 for stat_code 5 INFO asyncssh:logging.py:92 [conn=74, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=42] Channel closed DEBUG infra2:Logger.py:156 66325 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 66325 expected 65000 for trap_code arp_bc INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: arp_bc_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_response_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=74, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=44] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=43] Channel closed INFO asyncssh:logging.py:92 [conn=74, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=44] Received channel close DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 188 sw INFO asyncssh:logging.py:92 [conn=74, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=44] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg arp_response INFO asyncssh:logging.py:92 [conn=74, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=45] Command: get_cpu_traps_rate_code_avg 188 sw INFO asyncssh:logging.py:92 [conn=74, chan=46] Command: get_devlink_cpu_traps_rate_avg arp_response INFO asyncssh:logging.py:92 [conn=74, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=45] Channel closed DEBUG infra2:Logger.py:156 66126 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 66126 expected 65000 for stat_code 188 INFO asyncssh:logging.py:92 [conn=74, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=46] Channel closed DEBUG infra2:Logger.py:156 66360 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 66360 expected 65000 for trap_code arp_response INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: arp_response_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for router_mc_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=74, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=48] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=47] Channel closed INFO asyncssh:logging.py:92 [conn=74, chan=48] Channel closed DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 29 sw INFO asyncssh:logging.py:92 [conn=74, chan=49] Requesting new SSH session DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg router_mc INFO asyncssh:logging.py:92 [conn=74, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=49] Command: get_cpu_traps_rate_code_avg 29 sw INFO asyncssh:logging.py:92 [conn=74, chan=50] Command: get_devlink_cpu_traps_rate_avg router_mc INFO asyncssh:logging.py:92 [conn=74, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=49] Channel closed DEBUG infra2:Logger.py:156 66071 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 66071 expected 65000 for stat_code 29 INFO asyncssh:logging.py:92 [conn=74, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=50] Channel closed DEBUG infra2:Logger.py:156 66304 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 66304 expected 65000 for trap_code router_mc INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: router_mc_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ssh_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=74, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=52] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=51] Channel closed INFO asyncssh:logging.py:92 [conn=74, chan=52] Channel closed DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 207 sw INFO asyncssh:logging.py:92 [conn=74, chan=53] Requesting new SSH session DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg ssh INFO asyncssh:logging.py:92 [conn=74, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=53] Command: get_cpu_traps_rate_code_avg 207 sw INFO asyncssh:logging.py:92 [conn=74, chan=54] Command: get_devlink_cpu_traps_rate_avg ssh INFO asyncssh:logging.py:92 [conn=74, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=53] Channel closed DEBUG infra2:Logger.py:156 66091 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 66091 expected 65000 for stat_code 207 INFO asyncssh:logging.py:92 [conn=74, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=54] Channel closed DEBUG infra2:Logger.py:156 66324 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 66324 expected 65000 for trap_code ssh INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: ssh_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for telnet_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=74, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=56] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=55] Channel closed INFO asyncssh:logging.py:92 [conn=74, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=56] Received channel close DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 208 sw INFO asyncssh:logging.py:92 [conn=74, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=56] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg telnet INFO asyncssh:logging.py:92 [conn=74, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=57] Command: get_cpu_traps_rate_code_avg 208 sw INFO asyncssh:logging.py:92 [conn=74, chan=58] Command: get_devlink_cpu_traps_rate_avg telnet INFO asyncssh:logging.py:92 [conn=74, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=57] Channel closed DEBUG infra2:Logger.py:156 66047 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 66047 expected 65000 for stat_code 208 INFO asyncssh:logging.py:92 [conn=74, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=58] Channel closed DEBUG infra2:Logger.py:156 66327 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 66327 expected 65000 for trap_code telnet INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: telnet_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bgp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=74, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=60] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=59] Channel closed INFO asyncssh:logging.py:92 [conn=74, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=60] Received channel close DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 206 sw INFO asyncssh:logging.py:92 [conn=74, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=60] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg bgp INFO asyncssh:logging.py:92 [conn=74, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=61] Command: get_cpu_traps_rate_code_avg 206 sw INFO asyncssh:logging.py:92 [conn=74, chan=62] Command: get_devlink_cpu_traps_rate_avg bgp INFO asyncssh:logging.py:92 [conn=74, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=61] Channel closed DEBUG infra2:Logger.py:156 66153 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 66153 expected 65000 for stat_code 206 INFO asyncssh:logging.py:92 [conn=74, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=62] Channel closed DEBUG infra2:Logger.py:156 66346 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 66346 expected 65000 for trap_code bgp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: bgp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for local_route_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=74, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=64] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=63] Channel closed INFO asyncssh:logging.py:92 [conn=74, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=64] Received channel close DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 161 sw INFO asyncssh:logging.py:92 [conn=74, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=64] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg local_route INFO asyncssh:logging.py:92 [conn=74, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=65] Command: get_cpu_traps_rate_code_avg 161 sw INFO asyncssh:logging.py:92 [conn=74, chan=66] Command: get_devlink_cpu_traps_rate_avg local_route INFO asyncssh:logging.py:92 [conn=74, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=65] Channel closed DEBUG infra2:Logger.py:156 66101 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 66101 expected 65000 for stat_code 161 INFO asyncssh:logging.py:92 [conn=74, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=66] Channel closed DEBUG infra2:Logger.py:156 66302 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 66302 expected 65000 for trap_code local_route INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: local_route_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for mac_to_me_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=74, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=68] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=67] Channel closed INFO asyncssh:logging.py:92 [conn=74, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=68] Received channel close DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 65 sw INFO asyncssh:logging.py:92 [conn=74, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=68] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg mac_to_me INFO asyncssh:logging.py:92 [conn=74, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=69] Command: get_cpu_traps_rate_code_avg 65 sw INFO asyncssh:logging.py:92 [conn=74, chan=70] Command: get_devlink_cpu_traps_rate_avg mac_to_me INFO asyncssh:logging.py:92 [conn=74, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=69] Channel closed DEBUG infra2:Logger.py:156 66099 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 66099 expected 65000 for stat_code 65 INFO asyncssh:logging.py:92 [conn=74, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=70] Channel closed DEBUG infra2:Logger.py:156 66330 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 66330 expected 65000 for trap_code mac_to_me INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: mac_to_me_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_bc_mac_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=74, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=72] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=71] Channel closed INFO asyncssh:logging.py:92 [conn=74, chan=72] Channel closed DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 19 sw INFO asyncssh:logging.py:92 [conn=74, chan=73] Requesting new SSH session DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg ip_bc_mac INFO asyncssh:logging.py:92 [conn=74, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=73] Command: get_cpu_traps_rate_code_avg 19 sw INFO asyncssh:logging.py:92 [conn=74, chan=74] Command: get_devlink_cpu_traps_rate_avg ip_bc_mac INFO asyncssh:logging.py:92 [conn=74, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=73] Channel closed DEBUG infra2:Logger.py:156 66153 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 66153 expected 65000 for stat_code 19 INFO asyncssh:logging.py:92 [conn=74, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=74] Channel closed DEBUG infra2:Logger.py:156 66314 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 66314 expected 65000 for trap_code ip_bc_mac INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: ip_bc_mac_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for icmp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=74, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=76] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=75] Channel closed INFO asyncssh:logging.py:92 [conn=74, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=76] Received channel close DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 209 sw INFO asyncssh:logging.py:92 [conn=74, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=76] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg icmp INFO asyncssh:logging.py:92 [conn=74, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=77] Command: get_cpu_traps_rate_code_avg 209 sw INFO asyncssh:logging.py:92 [conn=74, chan=78] Command: get_devlink_cpu_traps_rate_avg icmp INFO asyncssh:logging.py:92 [conn=74, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=77] Channel closed DEBUG infra2:Logger.py:156 66156 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 66156 expected 65000 for stat_code 209 INFO asyncssh:logging.py:92 [conn=74, chan=78] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=78] Channel closed DEBUG infra2:Logger.py:156 66376 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 66376 expected 65000 for trap_code icmp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: icmp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for vrrp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=74, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=80] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=79] Channel closed INFO asyncssh:logging.py:92 [conn=74, chan=80] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=80] Received channel close DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 30 sw INFO asyncssh:logging.py:92 [conn=74, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=80] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg vrrp INFO asyncssh:logging.py:92 [conn=74, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=81] Command: get_cpu_traps_rate_code_avg 30 sw INFO asyncssh:logging.py:92 [conn=74, chan=82] Command: get_devlink_cpu_traps_rate_avg vrrp INFO asyncssh:logging.py:92 [conn=74, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=81] Channel closed DEBUG infra2:Logger.py:156 66125 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 66125 expected 65000 for stat_code 30 INFO asyncssh:logging.py:92 [conn=74, chan=82] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=82] Channel closed DEBUG infra2:Logger.py:156 66297 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 66297 expected 65000 for trap_code vrrp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: vrrp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=74, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=83] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=74, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=84] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=74, chan=84] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=84] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=74, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=85] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol 0x9100 flower skip_sw src_mac 02:b5:69:90:14:2d action trap INFO asyncssh:logging.py:92 [conn=74, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=86] Command: tc filter add dev swp33 ingress protocol 0x9100 flower skip_sw src_mac 02:b5:69:90:14:2d action trap INFO asyncssh:logging.py:92 [conn=74, chan=86] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=86] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for custome_stream_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_192.168.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=74, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=88] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=88] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=87] Channel closed INFO asyncssh:logging.py:92 [conn=74, chan=88] Channel closed DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=74, chan=89] Requesting new SSH session DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=74, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=89] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=74, chan=90] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=74, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=89] Channel closed DEBUG infra2:Logger.py:156 66110 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 66110 expected 65000 for stat_code 195 INFO asyncssh:logging.py:92 [conn=74, chan=90] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=90] Channel closed DEBUG infra2:Logger.py:156 66296 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 66296 expected 65000 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_static_trap_disable from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_sct.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=74, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=91] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=74, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=92] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=92] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=92] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 21:20:23 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=74, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=93] Channel closed DEBUG infra2:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 INFO asyncssh:logging.py:92 [conn=74, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=94] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 INFO asyncssh:logging.py:92 [conn=74, chan=94] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=94] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=74, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=95] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=74, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=96] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=74, chan=96] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=96] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"f6:33:41:29:6d:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=74, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=97] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=74, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=98] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=74, chan=98] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=98] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=74, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=99] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=74, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=100] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=100] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=100] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 21:20:23 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=74, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=101] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=74, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=102] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=74, chan=102] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=102] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=74, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=103] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=74, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=104] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=74, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=74, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=104] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=74, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=105] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=74, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=106] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=74, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=74, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=106] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=74, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=107] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=74, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=108] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=74, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=74, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=108] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=74, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=109] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=74, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=110] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=74, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=74, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=110] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=74, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=111] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=74, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=112] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=74, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=74, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=112] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=74, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=113] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=74, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=114] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=74, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=74, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=114] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=74, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=115] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=74, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=116] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=74, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=74, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=116] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=74, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=117] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=74, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=118] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=74, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=74, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=118] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=74, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=119] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=74, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=120] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=74, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=74, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=120] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=74, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=121] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=74, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=122] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=74, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=74, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=122] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=74, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=123] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=74, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=124] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=74, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=74, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=124] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=74, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=125] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=74, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=126] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=74, chan=126] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=126] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=74, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=127] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=74, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=128] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=74, chan=128] Received exit status 2 INFO asyncssh:logging.py:92 [conn=74, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=128] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=74, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=129] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=74, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=130] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=74, chan=130] Received exit status 2 INFO asyncssh:logging.py:92 [conn=74, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=130] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=74, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=131] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=74, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=132] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=74, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=74, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=132] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=74, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=133] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=74, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=134] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=74, chan=134] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=134] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=74, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=74, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=135] Channel closed DEBUG infra2:Logger.py:156 echo 100 > /sys/kernel/debug/prestera/sct/all_unspecified_cpu_opcodes && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_0 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_1 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_2 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_3 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_4 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_5 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_6 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_7 && echo 100 > /sys/kernel/debug/prestera/sct/sct_arp_intervention && echo 300 > /sys/kernel/debug/prestera/sct/sct_arp_to_me && echo 1000 > /sys/kernel/debug/prestera/sct/sct_bgp && echo 100 > /sys/kernel/debug/prestera/sct/sct_bgp_all_routers_mc && echo 200 > /sys/kernel/debug/prestera/sct/sct_cdp && echo 400 > /sys/kernel/debug/prestera/sct/sct_default_route && echo 100 > /sys/kernel/debug/prestera/sct/sct_dhcp && echo 100 > /sys/kernel/debug/prestera/sct/sct_icmp && echo 400 > /sys/kernel/debug/prestera/sct/sct_igmp && echo 100 > /sys/kernel/debug/prestera/sct/sct_ip_bc && echo 10000 > /sys/kernel/debug/prestera/sct/sct_ip_to_me && echo 1000 > /sys/kernel/debug/prestera/sct/sct_isis && echo 200 > /sys/kernel/debug/prestera/sct/sct_lacp && echo 200 > /sys/kernel/debug/prestera/sct/sct_lldp && echo 10000 > /sys/kernel/debug/prestera/sct/sct_nat && echo 1000 > /sys/kernel/debug/prestera/sct/sct_ospf && echo 100 > /sys/kernel/debug/prestera/sct/sct_special_ip4_icmp_redirect && echo 100 > /sys/kernel/debug/prestera/sct/sct_special_ip4_mtu_exceed && echo 100 > /sys/kernel/debug/prestera/sct/sct_special_ip4_options_in_ip_hdr && echo 100 > /sys/kernel/debug/prestera/sct/sct_special_ip4_zero_ttl && echo 1000 > /sys/kernel/debug/prestera/sct/sct_ssh && echo 200 > /sys/kernel/debug/prestera/sct/sct_stp && echo 200 > /sys/kernel/debug/prestera/sct/sct_telnet && echo 200 > /sys/kernel/debug/prestera/sct/sct_vrrp INFO asyncssh:logging.py:92 [conn=74, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=74, chan=136] Command: echo 100 > /sys/kernel/debug/prestera/sct/all_unspecified_cpu_opcodes && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_0 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_1 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_2 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_3 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_4 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_5 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_6 && echo 4000 > /sys/kernel/debug/prestera/sct/sct_acl_trap_queue_7 && echo 100 > /sys/kernel/debug/prestera/sct/sct_arp_intervention && echo 300 > /sys/kernel/debug/prestera/sct/sct_arp_to_me && echo 1000 > /sys/kernel/debug/prestera/sct/sct_bgp && echo 100 > /sys/kernel/debug/prestera/sct/sct_bgp_all_routers_mc && echo 200 > /sys/kernel/debug/prestera/sct/sct_cdp && echo 400 > /sys/kernel/debug/prestera/sct/sct_default_route && echo 100 > /sys/kernel/debug/prestera/sct/sct_dhcp && echo 100 > /sys/kernel/debug/prestera/sct/sct_icmp && echo 400 > /sys/kernel/debug/prestera/sct/sct_igmp && echo 100 > /sys/kernel/debug/prestera/sct/sct_ip_bc && echo 10000 > /sys/kernel/debug/prestera/sct/sct_ip_to_me && echo 1000 > /sys/kernel/debug/prestera/sct/sct_isis && echo 200 > /sys/kernel/debug/prestera/sct/sct_lacp && echo 200 > /sys/kernel/debug/prestera/sct/sct_lldp && echo 10000 > /sys/kernel/debug/prestera/sct/sct_nat && echo 1000 > /sys/kernel/debug/prestera/sct/sct_ospf && echo 100 > /sys/kernel/debug/prestera/sct/sct_special_ip4_icmp_redirect && echo 100 > /sys/kernel/debug/prestera/sct/sct_special_ip4_mtu_exceed && echo 100 > /sys/kernel/debug/prestera/sct/sct_special_ip4_options_in_ip_hdr && echo 100 > /sys/kernel/debug/prestera/sct/sct_special_ip4_zero_ttl && echo 1000 > /sys/kernel/debug/prestera/sct/sct_ssh && echo 200 > /sys/kernel/debug/prestera/sct/sct_stp && echo 200 > /sys/kernel/debug/prestera/sct/sct_telnet && echo 200 > /sys/kernel/debug/prestera/sct/sct_vrrp INFO asyncssh:logging.py:92 [conn=74, chan=136] Received exit status 0 INFO asyncssh:logging.py:92 [conn=74, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=74, chan=136] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/devlink/test_devlink_shared_block.py::test_devlink_same_rule_pref[single_block] | 222.43 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-4511' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_same_rule_pref[single_block]">Starting testcase:test_devlink_same_rule_pref[single_block] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_shared_block.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=74, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=75] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=75] Local address: 172.17.0.3, port 60984 INFO asyncssh:logging.py:92 [conn=75] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=75] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=75] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=75, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 21:20:24 UTC 2023 INFO asyncssh:logging.py:92 [conn=75, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=1] Channel closed DEBUG infra2:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=75, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=75, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=75, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 2] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=75, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=3] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=75, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=75, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=75, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=5] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=75, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=75, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=6] Channel closed DEBUG infra2:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=75, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=7] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=75, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=8] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 21:20:24 UTC 2023 INFO asyncssh:logging.py:92 [conn=75, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=75, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=75, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2.2.2.4/24', 'count': 1, 'ip': '2.2.2.4', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_3.3.3.4/24', 'count': 1, 'ip': '3.3.3.4', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_4.4.4.4/24', 'count': 1, 'ip': '4.4.4.4', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=75, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=11] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=75, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=12] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=75, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=75, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=13] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol 0x8100 pref 10043 flower skip_sw dst_mac 02:ea:a9:b7:4e:cd vlan_id 2997 action trap action police rate 413467bps burst 414467 conform-exceed drop INFO asyncssh:logging.py:92 [conn=75, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=14] Command: tc filter add dev swp33 ingress protocol 0x8100 pref 10043 flower skip_sw dst_mac 02:ea:a9:b7:4e:cd vlan_id 2997 action trap action police rate 413467bps burst 414467 conform-exceed drop INFO asyncssh:logging.py:92 [conn=75, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=75, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=15] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol 0x8100 pref 10043 flower skip_sw dst_mac 02:ea:a9:b7:4e:cd vlan_id 2997 src_mac 02:da:75:27:a7:a2 action trap action police rate 206733bps burst 207733 conform-exceed drop INFO asyncssh:logging.py:92 [conn=75, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=16] Command: tc filter add dev swp33 ingress protocol 0x8100 pref 10043 flower skip_sw dst_mac 02:ea:a9:b7:4e:cd vlan_id 2997 src_mac 02:da:75:27:a7:a2 action trap action police rate 206733bps burst 207733 conform-exceed drop INFO asyncssh:logging.py:92 [conn=75, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_3.3.3.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_4.4.4.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=75, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=75, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=18] Received channel close DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=75, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=18] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=75, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=19] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=75, chan=20] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=75, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=19] Channel closed DEBUG infra2:Logger.py:156 502 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 502 expected 500.5653753026634 for stat_code 195 INFO asyncssh:logging.py:92 [conn=75, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=20] Channel closed DEBUG infra2:Logger.py:156 504 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 504 expected 500.5653753026634 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=75, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=21] Channel closed DEBUG infra2:Logger.py:156 tc filter delete dev swp33 ingress handle 0x1 pref 10043 flower INFO asyncssh:logging.py:92 [conn=75, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=22] Command: tc filter delete dev swp33 ingress handle 0x1 pref 10043 flower INFO asyncssh:logging.py:92 [conn=75, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=22] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=75, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=23] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol 0x8100 pref 10043 flower skip_sw dst_mac 02:ea:a9:b7:4e:cd vlan_id 2997 action trap action police rate 413467bps burst 414467 conform-exceed drop INFO asyncssh:logging.py:92 [conn=75, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=24] Command: tc filter add dev swp33 ingress protocol 0x8100 pref 10043 flower skip_sw dst_mac 02:ea:a9:b7:4e:cd vlan_id 2997 action trap action police rate 413467bps burst 414467 conform-exceed drop INFO asyncssh:logging.py:92 [conn=75, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=24] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=75, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=25] Channel closed INFO asyncssh:logging.py:92 [conn=75, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=26] Received channel close DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=75, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=26] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=75, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=27] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=75, chan=28] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=75, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=27] Channel closed DEBUG infra2:Logger.py:156 251 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 251 expected 250.28208232445522 for stat_code 195 INFO asyncssh:logging.py:92 [conn=75, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=28] Channel closed DEBUG infra2:Logger.py:156 252 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 252 expected 250.28208232445522 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_same_rule_pref[single_block] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_shared_block.py INFO asyncssh:logging.py:92 [conn=75, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=29] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=75, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=30] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 21:24:06 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=75, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=31] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=75, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=32] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=75, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=32] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=75, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=33] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=75, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=34] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=75, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=75, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=34] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=75, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=35] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=75, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=36] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=75, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=75, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=36] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=75, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=37] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=75, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=75, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=75, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=38] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=75, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=75, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=75, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=75, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=40] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=75, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=75, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=75, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=75, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=42] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=75, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=75, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=75, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=75, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=75, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=75, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=75, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=75, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=46] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=75, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=75, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=75, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=75, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=48] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=75, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=75, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=75, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=75, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=50] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=75, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=75, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=52] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=75, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=75, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=52] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=75, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=75, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=54] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=75, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=75, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=54] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=75, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=55] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=75, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=56] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=75, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=56] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=75, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=57] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=75, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=58] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=75, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=75, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=58] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=75, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=59] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=75, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=60] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=75, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=75, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=60] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=75, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=61] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=75, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=62] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=75, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=75, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=62] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=75, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=75, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=63] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=75, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=75, chan=64] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=75, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=75, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=75, chan=64] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/devlink/test_devlink_shared_block.py::test_devlink_same_rule_pref[shared_block] | 231.16 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-4589' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_same_rule_pref[shared_block]">Starting testcase:test_devlink_same_rule_pref[shared_block] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_shared_block.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=75, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=76] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=76] Local address: 172.17.0.3, port 55066 INFO asyncssh:logging.py:92 [conn=76] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=76] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=76] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=76, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 21:24:07 UTC 2023 INFO asyncssh:logging.py:92 [conn=76, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=1] Channel closed DEBUG infra2:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=76, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=76, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=76, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 2] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=76, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=3] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=76, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=76, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=76, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=5] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=76, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=76, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=6] Channel closed DEBUG infra2:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=76, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=7] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=76, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=8] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 21:24:07 UTC 2023 INFO asyncssh:logging.py:92 [conn=76, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=76, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=76, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2.2.2.4/24', 'count': 1, 'ip': '2.2.2.4', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_3.3.3.4/24', 'count': 1, 'ip': '3.3.3.4', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_4.4.4.4/24', 'count': 1, 'ip': '4.4.4.4', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=76, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=11] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=76, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=12] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=76, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=76, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=13] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol 0x8100 pref 10718 flower skip_sw dst_mac 02:dd:fd:af:18:0f vlan_id 3444 action trap action police rate 159586bps burst 160586 conform-exceed drop INFO asyncssh:logging.py:92 [conn=76, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=14] Command: tc filter add dev swp33 ingress protocol 0x8100 pref 10718 flower skip_sw dst_mac 02:dd:fd:af:18:0f vlan_id 3444 action trap action police rate 159586bps burst 160586 conform-exceed drop INFO asyncssh:logging.py:92 [conn=76, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=76, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=15] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol 0x8100 pref 10718 flower skip_sw dst_mac 02:dd:fd:af:18:0f vlan_id 3444 src_mac 02:6a:3e:53:ad:4a action trap action police rate 39896bps burst 40896 conform-exceed drop INFO asyncssh:logging.py:92 [conn=76, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=16] Command: tc filter add dev swp33 ingress protocol 0x8100 pref 10718 flower skip_sw dst_mac 02:dd:fd:af:18:0f vlan_id 3444 src_mac 02:6a:3e:53:ad:4a action trap action police rate 39896bps burst 40896 conform-exceed drop INFO asyncssh:logging.py:92 [conn=76, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_3.3.3.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_4.4.4.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=76, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=76, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=18] Received channel close DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=76, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=18] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=76, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=19] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=76, chan=20] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=76, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=19] Channel closed DEBUG infra2:Logger.py:156 187 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 187 expected 187.0879249706917 for stat_code 195 INFO asyncssh:logging.py:92 [conn=76, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=20] Channel closed DEBUG infra2:Logger.py:156 187 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 187 expected 187.0879249706917 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=76, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=21] Channel closed DEBUG infra2:Logger.py:156 tc filter delete dev swp33 ingress handle 0x1 pref 10718 flower INFO asyncssh:logging.py:92 [conn=76, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=22] Command: tc filter delete dev swp33 ingress handle 0x1 pref 10718 flower INFO asyncssh:logging.py:92 [conn=76, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=22] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=76, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=23] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol 0x8100 pref 10718 flower skip_sw dst_mac 02:dd:fd:af:18:0f vlan_id 3444 action trap action police rate 159586bps burst 160586 conform-exceed drop INFO asyncssh:logging.py:92 [conn=76, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=24] Command: tc filter add dev swp33 ingress protocol 0x8100 pref 10718 flower skip_sw dst_mac 02:dd:fd:af:18:0f vlan_id 3444 action trap action police rate 159586bps burst 160586 conform-exceed drop INFO asyncssh:logging.py:92 [conn=76, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=24] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=76, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=25] Channel closed INFO asyncssh:logging.py:92 [conn=76, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=26] Received channel close DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=76, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=26] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=76, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=27] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=76, chan=28] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=76, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=27] Channel closed DEBUG infra2:Logger.py:156 47 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 47 expected 46.77139507620164 for stat_code 195 INFO asyncssh:logging.py:92 [conn=76, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=28] Channel closed DEBUG infra2:Logger.py:156 47 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 47 expected 46.77139507620164 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_same_rule_pref[shared_block] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_shared_block.py INFO asyncssh:logging.py:92 [conn=76, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=29] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=76, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=30] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 21:27:57 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=76, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=31] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=76, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=32] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=76, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=32] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=76, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=33] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=76, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=34] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=76, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=76, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=34] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=76, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=35] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=76, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=36] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=76, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=76, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=36] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=76, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=37] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=76, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=76, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=76, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=38] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=76, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=76, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=76, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=76, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=40] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=76, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=76, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=76, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=76, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=42] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=76, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=76, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=76, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=76, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=76, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=76, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=76, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=76, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=46] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=76, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=76, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=76, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=76, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=48] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=76, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=76, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=76, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=76, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=50] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=76, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=76, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=52] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=76, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=76, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=52] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=76, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=76, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=54] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=76, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=76, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=54] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=76, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=55] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=76, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=56] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=76, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=56] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=76, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=57] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=76, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=58] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=76, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=76, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=58] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=76, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=59] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=76, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=60] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=76, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=76, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=60] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=76, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=61] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=76, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=62] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=76, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=76, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=62] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=76, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=76, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=63] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=76, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=76, chan=64] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=76, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=76, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=76, chan=64] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/devlink/test_devlink_shared_block.py::test_devlink_rule_priority[single_block] | 264.80 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-4667' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_rule_priority[single_block]">Starting testcase:test_devlink_rule_priority[single_block] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_shared_block.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=76, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=77] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=77] Local address: 172.17.0.3, port 58986 INFO asyncssh:logging.py:92 [conn=77] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=77] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=77] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=77, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 21:27:58 UTC 2023 INFO asyncssh:logging.py:92 [conn=77, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=1] Channel closed DEBUG infra2:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=77, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=77, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=77, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 2] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=77, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=3] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=77, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=77, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=77, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=5] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=77, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=77, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=6] Channel closed DEBUG infra2:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=77, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=7] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=77, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=8] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 21:27:58 UTC 2023 INFO asyncssh:logging.py:92 [conn=77, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=77, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=77, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2.2.2.4/24', 'count': 1, 'ip': '2.2.2.4', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_3.3.3.4/24', 'count': 1, 'ip': '3.3.3.4', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_4.4.4.4/24', 'count': 1, 'ip': '4.4.4.4', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=77, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=11] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=77, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=12] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=77, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=77, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=13] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol 0x9100 pref 21821 flower skip_sw src_mac 02:98:12:fd:f4:ef action trap action police rate 429543bps burst 430543 conform-exceed drop INFO asyncssh:logging.py:92 [conn=77, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=14] Command: tc filter add dev swp33 ingress protocol 0x9100 pref 21821 flower skip_sw src_mac 02:98:12:fd:f4:ef action trap action police rate 429543bps burst 430543 conform-exceed drop INFO asyncssh:logging.py:92 [conn=77, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=77, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=15] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol 0x9100 pref 22821 flower skip_sw src_mac 02:98:12:fd:f4:ef action trap action police rate 143181bps burst 144181 conform-exceed drop INFO asyncssh:logging.py:92 [conn=77, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=16] Command: tc filter add dev swp33 ingress protocol 0x9100 pref 22821 flower skip_sw src_mac 02:98:12:fd:f4:ef action trap action police rate 143181bps burst 144181 conform-exceed drop INFO asyncssh:logging.py:92 [conn=77, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_3.3.3.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_4.4.4.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=77, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=77, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=18] Received channel close DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=77, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=18] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=77, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=19] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=77, chan=20] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=77, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=19] Channel closed DEBUG infra2:Logger.py:156 2977 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 2977 expected 2962.365517241379 for stat_code 195 INFO asyncssh:logging.py:92 [conn=77, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=20] Channel closed DEBUG infra2:Logger.py:156 2984 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 2984 expected 2962.365517241379 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=77, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=21] Channel closed DEBUG infra2:Logger.py:156 tc filter delete dev swp33 ingress pref 21821 INFO asyncssh:logging.py:92 [conn=77, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=22] Command: tc filter delete dev swp33 ingress pref 21821 INFO asyncssh:logging.py:92 [conn=77, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=22] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=77, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=23] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol 0x9100 pref 21821 flower skip_sw src_mac 02:98:12:fd:f4:ef action trap action police rate 429543bps burst 430543 conform-exceed drop INFO asyncssh:logging.py:92 [conn=77, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=24] Command: tc filter add dev swp33 ingress protocol 0x9100 pref 21821 flower skip_sw src_mac 02:98:12:fd:f4:ef action trap action police rate 429543bps burst 430543 conform-exceed drop INFO asyncssh:logging.py:92 [conn=77, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=24] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=77, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=25] Channel closed INFO asyncssh:logging.py:92 [conn=77, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=26] Received channel close DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=77, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=26] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=77, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=27] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=77, chan=28] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=77, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=27] Channel closed DEBUG infra2:Logger.py:156 2975 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 2975 expected 2962.365517241379 for stat_code 195 INFO asyncssh:logging.py:92 [conn=77, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=28] Channel closed DEBUG infra2:Logger.py:156 2985 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 2985 expected 2962.365517241379 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=77, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=29] Channel closed DEBUG infra2:Logger.py:156 tc filter delete dev swp33 ingress pref 21821 INFO asyncssh:logging.py:92 [conn=77, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=30] Command: tc filter delete dev swp33 ingress pref 21821 INFO asyncssh:logging.py:92 [conn=77, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=30] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=77, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=31] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol 0x9100 pref 23821 flower skip_sw src_mac 02:98:12:fd:f4:ef action trap action police rate 429543bps burst 430543 conform-exceed drop INFO asyncssh:logging.py:92 [conn=77, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=32] Command: tc filter add dev swp33 ingress protocol 0x9100 pref 23821 flower skip_sw src_mac 02:98:12:fd:f4:ef action trap action police rate 429543bps burst 430543 conform-exceed drop INFO asyncssh:logging.py:92 [conn=77, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=32] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=77, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=33] Channel closed INFO asyncssh:logging.py:92 [conn=77, chan=34] Channel closed DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=77, chan=35] Requesting new SSH session DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=77, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=35] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=77, chan=36] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=77, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=35] Channel closed DEBUG infra2:Logger.py:156 989 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 989 expected 987.4551724137931 for stat_code 195 INFO asyncssh:logging.py:92 [conn=77, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=36] Channel closed DEBUG infra2:Logger.py:156 993 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 993 expected 987.4551724137931 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_rule_priority[single_block] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_shared_block.py INFO asyncssh:logging.py:92 [conn=77, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=37] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=77, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=38] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=38] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 21:32:22 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=77, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=77, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=40] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=77, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=40] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=77, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=77, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=42] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=77, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=77, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=42] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=77, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=77, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=44] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=77, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=77, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=77, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=77, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=77, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=77, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=46] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=77, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=77, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=77, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=77, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=48] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=77, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=77, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=77, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=77, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=50] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=77, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=77, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=52] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=77, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=77, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=52] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=77, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=77, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=54] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=77, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=77, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=54] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=77, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=55] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=77, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=56] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=77, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=77, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=56] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=77, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=57] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=77, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=58] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=77, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=77, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=58] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=77, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=59] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=77, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=60] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=77, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=77, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=60] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=77, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=61] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=77, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=62] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=77, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=77, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=62] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=77, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=63] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=77, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=64] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=77, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=64] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=77, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=65] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=77, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=66] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=77, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=77, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=66] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=77, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=67] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=77, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=68] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=77, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=77, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=68] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=77, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=69] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=77, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=70] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=77, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=77, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=70] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=77, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=77, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=71] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=77, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=77, chan=72] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=77, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=77, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=77, chan=72] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/devlink/test_devlink_shared_block.py::test_devlink_rule_priority[shared_block] | 265.56 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-4755' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_rule_priority[shared_block]">Starting testcase:test_devlink_rule_priority[shared_block] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_shared_block.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=77, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=78] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=78] Local address: 172.17.0.3, port 46752 INFO asyncssh:logging.py:92 [conn=78] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=78] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=78] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=78, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 21:32:23 UTC 2023 INFO asyncssh:logging.py:92 [conn=78, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=1] Channel closed DEBUG infra2:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=78, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=78, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=78, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 2] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=78, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=3] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=78, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=78, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=78, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=5] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=78, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=78, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=6] Channel closed DEBUG infra2:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=78, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=7] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=78, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=8] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 21:32:23 UTC 2023 INFO asyncssh:logging.py:92 [conn=78, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=78, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=78, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2.2.2.4/24', 'count': 1, 'ip': '2.2.2.4', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_3.3.3.4/24', 'count': 1, 'ip': '3.3.3.4', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_4.4.4.4/24', 'count': 1, 'ip': '4.4.4.4', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=78, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=11] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=78, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=12] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=78, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=78, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=13] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol 0x8100 pref 11826 flower skip_sw dst_mac 02:99:1f:d4:d2:3c vlan_id 2702 vlan_ethtype 0x0800 src_ip 41.29.68.240 dst_ip 38.213.157.148 action trap action police rate 1684919bps burst 1685919 conform-exceed drop INFO asyncssh:logging.py:92 [conn=78, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=14] Command: tc filter add dev swp33 ingress protocol 0x8100 pref 11826 flower skip_sw dst_mac 02:99:1f:d4:d2:3c vlan_id 2702 vlan_ethtype 0x0800 src_ip 41.29.68.240 dst_ip 38.213.157.148 action trap action police rate 1684919bps burst 1685919 conform-exceed drop INFO asyncssh:logging.py:92 [conn=78, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=78, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=15] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol 0x8100 pref 12826 flower skip_sw dst_mac 02:99:1f:d4:d2:3c vlan_id 2702 vlan_ethtype 0x0800 src_ip 41.29.68.240 dst_ip 38.213.157.148 action trap action police rate 421229bps burst 422229 conform-exceed drop INFO asyncssh:logging.py:92 [conn=78, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=16] Command: tc filter add dev swp33 ingress protocol 0x8100 pref 12826 flower skip_sw dst_mac 02:99:1f:d4:d2:3c vlan_id 2702 vlan_ethtype 0x0800 src_ip 41.29.68.240 dst_ip 38.213.157.148 action trap action police rate 421229bps burst 422229 conform-exceed drop INFO asyncssh:logging.py:92 [conn=78, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_3.3.3.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_4.4.4.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=78, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=78, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=18] Received channel close DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=78, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=18] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=78, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=19] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=78, chan=20] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=78, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=19] Channel closed DEBUG infra2:Logger.py:156 3832 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 3832 expected 3829.3613636363634 for stat_code 195 INFO asyncssh:logging.py:92 [conn=78, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=20] Channel closed DEBUG infra2:Logger.py:156 3844 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 3844 expected 3829.3613636363634 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=78, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=21] Channel closed DEBUG infra2:Logger.py:156 tc filter delete dev swp33 ingress pref 11826 INFO asyncssh:logging.py:92 [conn=78, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=22] Command: tc filter delete dev swp33 ingress pref 11826 INFO asyncssh:logging.py:92 [conn=78, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=22] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=78, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=23] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol 0x8100 pref 11826 flower skip_sw dst_mac 02:99:1f:d4:d2:3c vlan_id 2702 vlan_ethtype 0x0800 src_ip 41.29.68.240 dst_ip 38.213.157.148 action trap action police rate 1684919bps burst 1685919 conform-exceed drop INFO asyncssh:logging.py:92 [conn=78, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=24] Command: tc filter add dev swp33 ingress protocol 0x8100 pref 11826 flower skip_sw dst_mac 02:99:1f:d4:d2:3c vlan_id 2702 vlan_ethtype 0x0800 src_ip 41.29.68.240 dst_ip 38.213.157.148 action trap action police rate 1684919bps burst 1685919 conform-exceed drop INFO asyncssh:logging.py:92 [conn=78, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=24] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=78, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=25] Channel closed INFO asyncssh:logging.py:92 [conn=78, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=26] Received channel close DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=78, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=26] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=78, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=27] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=78, chan=28] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=78, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=27] Channel closed DEBUG infra2:Logger.py:156 3833 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 3833 expected 3829.3613636363634 for stat_code 195 INFO asyncssh:logging.py:92 [conn=78, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=28] Channel closed DEBUG infra2:Logger.py:156 3844 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 3844 expected 3829.3613636363634 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=78, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=29] Channel closed DEBUG infra2:Logger.py:156 tc filter delete dev swp33 ingress pref 11826 INFO asyncssh:logging.py:92 [conn=78, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=30] Command: tc filter delete dev swp33 ingress pref 11826 INFO asyncssh:logging.py:92 [conn=78, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=30] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=78, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=31] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol 0x8100 pref 13826 flower skip_sw dst_mac 02:99:1f:d4:d2:3c vlan_id 2702 vlan_ethtype 0x0800 src_ip 41.29.68.240 dst_ip 38.213.157.148 action trap action police rate 1684919bps burst 1685919 conform-exceed drop INFO asyncssh:logging.py:92 [conn=78, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=32] Command: tc filter add dev swp33 ingress protocol 0x8100 pref 13826 flower skip_sw dst_mac 02:99:1f:d4:d2:3c vlan_id 2702 vlan_ethtype 0x0800 src_ip 41.29.68.240 dst_ip 38.213.157.148 action trap action police rate 1684919bps burst 1685919 conform-exceed drop INFO asyncssh:logging.py:92 [conn=78, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=32] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=78, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=33] Channel closed INFO asyncssh:logging.py:92 [conn=78, chan=34] Received channel close DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=78, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=34] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=78, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=35] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=78, chan=36] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=78, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=35] Channel closed DEBUG infra2:Logger.py:156 960 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 960 expected 957.3386363636364 for stat_code 195 INFO asyncssh:logging.py:92 [conn=78, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=36] Channel closed DEBUG infra2:Logger.py:156 963 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 963 expected 957.3386363636364 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_rule_priority[shared_block] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_shared_block.py INFO asyncssh:logging.py:92 [conn=78, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=37] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=78, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=38] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=38] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 21:36:47 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=78, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=78, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=40] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=78, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=40] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=78, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=78, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=42] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=78, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=78, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=42] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=78, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=78, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=44] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=78, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=78, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=78, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=78, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=78, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=78, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=46] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=78, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=78, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=78, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=78, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=48] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=78, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=78, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=78, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=78, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=50] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=78, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=78, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=52] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=78, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=78, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=52] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=78, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=78, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=54] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=78, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=78, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=54] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=78, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=55] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=78, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=56] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=78, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=78, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=56] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=78, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=57] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=78, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=58] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=78, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=78, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=58] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=78, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=59] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=78, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=60] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=78, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=78, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=60] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=78, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=61] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=78, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=62] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=78, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=78, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=62] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=78, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=63] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=78, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=64] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=78, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=64] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=78, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=65] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=78, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=66] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=78, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=78, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=66] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=78, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=67] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=78, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=68] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=78, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=78, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=68] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=78, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=69] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=78, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=70] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=78, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=78, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=70] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=78, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=78, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=71] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=78, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=78, chan=72] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=78, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=78, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=78, chan=72] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/devlink/test_devlink_single_block.py::test_devlink_basic[l2] | 154.33 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-4843' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_basic[l2]">Starting testcase:test_devlink_basic[l2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=78, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=79] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=79] Local address: 172.17.0.3, port 40442 INFO asyncssh:logging.py:92 [conn=79] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=79] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=79] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=79, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 21:36:48 UTC 2023 INFO asyncssh:logging.py:92 [conn=79, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=1] Channel closed DEBUG infra2:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=79, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=79, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=79, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 2] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=79, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=3] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=79, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=79, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=79, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=5] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=79, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=79, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=6] Channel closed DEBUG infra2:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=79, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=7] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=79, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=8] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 21:36:48 UTC 2023 INFO asyncssh:logging.py:92 [conn=79, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=79, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=79, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2.2.2.4/24', 'count': 1, 'ip': '2.2.2.4', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:2:7' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=79, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=11] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=79, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=12] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=79, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=79, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=13] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol 802.1q flower skip_sw src_mac aa:aa:aa:aa:aa:00 dst_mac aa:00:00:00:00:55 vlan_id 3352 action trap action police rate 3258864bps burst 3259864 conform-exceed drop INFO asyncssh:logging.py:92 [conn=79, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=14] Command: tc filter add dev swp33 ingress protocol 802.1q flower skip_sw src_mac aa:aa:aa:aa:aa:00 dst_mac aa:00:00:00:00:55 vlan_id 3352 action trap action police rate 3258864bps burst 3259864 conform-exceed drop INFO asyncssh:logging.py:92 [conn=79, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=79, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=15] Channel closed DEBUG infra2:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=79, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=16] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=79, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"802.1Q","pref":49152,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":3352,"dst_mac":"aa:00:00:00:00:55","src_mac":"aa:aa:aa:aa:aa:00"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]},{"order":2,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_3352_dst_mac_aa:00:00:00:00:55_src_mac_aa:aa:aa:aa:aa:00 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=79, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=79, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=18] Received channel close DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=79, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=18] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=79, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=19] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=79, chan=20] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=79, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=19] Channel closed DEBUG infra2:Logger.py:156 2596 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 2596 expected 2586.4 for stat_code 195 INFO asyncssh:logging.py:92 [conn=79, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=20] Channel closed DEBUG infra2:Logger.py:156 2603 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 2603 expected 2586.4 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_basic[l2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py INFO asyncssh:logging.py:92 [conn=79, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=21] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=79, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=22] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 21:39:22 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=79, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=23] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=79, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=79, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=24] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=79, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=25] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=79, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=79, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=79, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=26] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=79, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=27] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=79, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=79, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=79, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=28] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=79, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=29] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=79, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=79, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=79, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=30] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=79, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=31] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=79, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=79, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=79, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=32] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=79, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=33] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=79, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=79, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=79, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=34] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=79, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=35] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=79, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=79, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=79, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=36] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=79, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=37] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=79, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=79, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=79, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=38] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=79, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=79, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=79, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=79, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=40] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=79, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=79, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=79, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=79, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=42] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=79, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=79, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=79, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=79, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=79, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=79, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=46] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=79, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=79, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=46] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=79, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=79, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=48] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=79, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=48] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=79, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=79, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=50] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=79, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=79, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=50] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=79, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=79, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=52] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=79, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=79, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=52] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=79, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=79, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=54] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=79, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=79, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=54] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=79, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=79, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=55] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=79, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=79, chan=56] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=79, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=79, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=79, chan=56] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/devlink/test_devlink_single_block.py::test_devlink_basic[l3] | 154.24 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-4911' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_basic[l3]">Starting testcase:test_devlink_basic[l3] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=79, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=80] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=80] Local address: 172.17.0.3, port 34358 INFO asyncssh:logging.py:92 [conn=80] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=80] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=80] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=80, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 21:39:22 UTC 2023 INFO asyncssh:logging.py:92 [conn=80, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=1] Channel closed DEBUG infra2:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=80, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=80, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=80, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 2] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=80, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=3] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=80, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=80, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=80, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=5] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=80, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=80, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=6] Channel closed DEBUG infra2:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=80, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=7] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=80, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=8] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 21:39:23 UTC 2023 INFO asyncssh:logging.py:92 [conn=80, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=80, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=80, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2.2.2.4/24', 'count': 1, 'ip': '2.2.2.4', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:2:7' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=80, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=11] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=80, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=12] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=80, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=80, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=13] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol ipv4 flower skip_sw src_ip 114.73.165.170 dst_ip 115.163.53.223 src_mac 00:00:00:00:00:01 dst_mac 00:00:00:00:00:02 action trap action police rate 3660413bps burst 3661413 conform-exceed drop INFO asyncssh:logging.py:92 [conn=80, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=14] Command: tc filter add dev swp33 ingress protocol ipv4 flower skip_sw src_ip 114.73.165.170 dst_ip 115.163.53.223 src_mac 00:00:00:00:00:01 dst_mac 00:00:00:00:00:02 action trap action police rate 3660413bps burst 3661413 conform-exceed drop INFO asyncssh:logging.py:92 [conn=80, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=80, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=15] Channel closed DEBUG infra2:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=80, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=16] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=80, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"ip","pref":49152,"kind":"flower","chain":0},{"protocol":"ip","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"00:00:00:00:00:02","src_mac":"00:00:00:00:00:01","eth_type":"ipv4","dst_ip":"115.163.53.223","src_ip":"114.73.165.170"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]},{"order":2,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_00:00:00:00:00:02_src_mac_00:00:00:00:00:01_eth_type_ipv4_dst_ip_115.163.53.223_src_ip_114.73.165.170 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=80, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=80, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=18] Received channel close DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=80, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=18] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=80, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=19] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=80, chan=20] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=80, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=19] Channel closed DEBUG infra2:Logger.py:156 3208 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 3208 expected 3196.867248908297 for stat_code 195 INFO asyncssh:logging.py:92 [conn=80, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=20] Channel closed DEBUG infra2:Logger.py:156 3219 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 3219 expected 3196.867248908297 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_basic[l3] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py INFO asyncssh:logging.py:92 [conn=80, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=21] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=80, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=22] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 21:41:56 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=80, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=23] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=80, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=80, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=24] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=80, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=25] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=80, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=80, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=80, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=26] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=80, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=27] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=80, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=80, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=80, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=28] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=80, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=29] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=80, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=80, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=80, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=30] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=80, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=31] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=80, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=80, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=80, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=32] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=80, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=33] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=80, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=80, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=80, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=34] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=80, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=35] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=80, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=80, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=80, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=36] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=80, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=37] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=80, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=80, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=80, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=38] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=80, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=80, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=80, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=80, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=40] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=80, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=80, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=80, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=80, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=42] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=80, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=80, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=80, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=80, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=80, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=80, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=46] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=80, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=80, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=46] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=80, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=80, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=48] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=80, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=48] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=80, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=80, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=50] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=80, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=80, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=50] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=80, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=80, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=52] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=80, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=80, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=52] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=80, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=80, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=54] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=80, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=80, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=54] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=80, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=80, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=55] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=80, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=80, chan=56] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=80, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=80, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=80, chan=56] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/devlink/test_devlink_single_block.py::test_devlink_basic[l4] | 150.39 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-4979' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_basic[l4]">Starting testcase:test_devlink_basic[l4] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=80, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=81] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=81] Local address: 172.17.0.3, port 60194 INFO asyncssh:logging.py:92 [conn=81] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=81] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=81] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=81, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 21:41:57 UTC 2023 INFO asyncssh:logging.py:92 [conn=81, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=1] Channel closed DEBUG infra2:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=81, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=81, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=81, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 2] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=81, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=3] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=81, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=81, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=81, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=5] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=81, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=81, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=6] Channel closed DEBUG infra2:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=81, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=7] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=81, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=8] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 21:41:57 UTC 2023 INFO asyncssh:logging.py:92 [conn=81, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=81, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=81, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2.2.2.4/24', 'count': 1, 'ip': '2.2.2.4', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:2:7' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=81, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=11] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=81, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=12] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=81, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=81, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=13] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol 0x0800 flower skip_sw src_ip 1.1.1.2 dst_ip 2.2.2.3 ip_proto tcp src_port 20548 dst_port 44133 src_mac 00:00:00:00:00:01 dst_mac 00:00:00:00:00:02 action trap action police rate 721969bps burst 722969 conform-exceed drop INFO asyncssh:logging.py:92 [conn=81, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=14] Command: tc filter add dev swp33 ingress protocol 0x0800 flower skip_sw src_ip 1.1.1.2 dst_ip 2.2.2.3 ip_proto tcp src_port 20548 dst_port 44133 src_mac 00:00:00:00:00:01 dst_mac 00:00:00:00:00:02 action trap action police rate 721969bps burst 722969 conform-exceed drop INFO asyncssh:logging.py:92 [conn=81, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=81, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=15] Channel closed DEBUG infra2:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=81, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=16] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=81, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"ip","pref":49152,"kind":"flower","chain":0},{"protocol":"ip","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"00:00:00:00:00:02","src_mac":"00:00:00:00:00:01","eth_type":"ipv4","ip_proto":"tcp","dst_ip":"2.2.2.3","src_ip":"1.1.1.2","dst_port":44133,"src_port":20548},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]},{"order":2,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_00:00:00:00:00:02_src_mac_00:00:00:00:00:01_eth_type_ipv4_ip_proto_tcp_dst_ip_2.2.2.3_src_ip_1.1.1.2_dst_port_44133_src_port_20548 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=81, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=18] Channel closed INFO asyncssh:logging.py:92 [conn=81, chan=17] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=81, chan=19] Requesting new SSH session DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=81, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=19] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=81, chan=20] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=81, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=20] Channel closed DEBUG infra2:Logger.py:156 1079 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 1079 expected 1087.3027108433735 for stat_code 195 INFO asyncssh:logging.py:92 [conn=81, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=19] Channel closed DEBUG infra2:Logger.py:156 1084 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 1084 expected 1087.3027108433735 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_basic[l4] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py INFO asyncssh:logging.py:92 [conn=81, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=21] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=81, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=22] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 21:44:26 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=81, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=23] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=81, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=81, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=24] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=81, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=25] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=81, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=81, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=81, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=26] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=81, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=27] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=81, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=81, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=81, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=28] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=81, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=29] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=81, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=81, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=81, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=30] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=81, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=31] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=81, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=81, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=81, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=32] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=81, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=33] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=81, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=81, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=81, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=34] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=81, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=35] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=81, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=81, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=81, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=36] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=81, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=37] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=81, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=81, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=81, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=38] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=81, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=81, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=81, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=81, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=40] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=81, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=81, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=81, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=81, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=42] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=81, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=81, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=81, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=81, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=81, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=81, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=46] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=81, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=81, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=46] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=81, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=81, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=48] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=81, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=48] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=81, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=81, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=50] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=81, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=81, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=50] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=81, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=81, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=52] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=81, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=81, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=52] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=81, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=81, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=54] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=81, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=81, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=54] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=81, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=81, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=55] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=81, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=81, chan=56] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=81, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=81, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=81, chan=56] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/devlink/test_devlink_single_block.py::test_devlink_random | 158.27 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-5047' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_random">Starting testcase:test_devlink_random from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=81, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=82] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=82] Local address: 172.17.0.3, port 45968 INFO asyncssh:logging.py:92 [conn=82] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=82] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=82] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=82, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 21:44:27 UTC 2023 INFO asyncssh:logging.py:92 [conn=82, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=1] Channel closed DEBUG infra2:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=82, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=82, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=82, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 2] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=82, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=3] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=82, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=82, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=82, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=5] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=82, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=82, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=6] Channel closed DEBUG infra2:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=82, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=7] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=82, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=8] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 21:44:27 UTC 2023 INFO asyncssh:logging.py:92 [conn=82, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=82, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=82, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2.2.2.4/24', 'count': 1, 'ip': '2.2.2.4', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:2:7' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=82, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=11] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=82, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=12] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=82, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=82, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=13] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol 0x8100 flower skip_sw src_mac 02:ea:0c:97:2f:1a vlan_id 716 action trap action police rate 514526bps burst 515526 conform-exceed drop INFO asyncssh:logging.py:92 [conn=82, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=14] Command: tc filter add dev swp33 ingress protocol 0x8100 flower skip_sw src_mac 02:ea:0c:97:2f:1a vlan_id 716 action trap action police rate 514526bps burst 515526 conform-exceed drop INFO asyncssh:logging.py:92 [conn=82, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=82, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=15] Channel closed DEBUG infra2:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=82, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=16] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=82, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"802.1Q","pref":49152,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":716,"src_mac":"02:ea:0c:97:2f:1a"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]},{"order":2,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_716_src_mac_02:ea:0c:97:2f:1a INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=82, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=82, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=18] Received channel close DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=82, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=18] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=82, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=19] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=82, chan=20] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=82, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=19] Channel closed DEBUG infra2:Logger.py:156 1323 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 1323 expected 1319.297435897436 for stat_code 195 INFO asyncssh:logging.py:92 [conn=82, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=20] Channel closed DEBUG infra2:Logger.py:156 1326 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 1326 expected 1319.297435897436 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_random from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py INFO asyncssh:logging.py:92 [conn=82, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=21] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=82, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=22] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 21:47:05 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=82, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=23] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=82, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=82, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=24] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=82, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=25] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=82, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=82, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=82, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=26] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=82, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=27] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=82, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=82, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=82, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=28] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=82, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=29] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=82, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=82, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=82, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=30] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=82, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=31] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=82, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=82, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=82, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=32] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=82, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=33] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=82, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=82, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=82, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=34] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=82, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=35] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=82, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=82, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=82, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=36] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=82, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=37] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=82, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=82, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=82, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=38] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=82, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=82, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=82, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=82, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=40] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=82, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=82, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=82, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=82, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=42] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=82, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=82, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=82, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=82, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=82, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=82, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=46] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=82, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=82, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=46] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=82, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=82, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=48] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=82, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=48] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=82, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=82, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=50] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=82, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=82, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=50] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=82, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=82, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=52] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=82, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=82, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=52] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=82, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=82, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=54] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=82, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=82, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=54] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=82, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=82, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=55] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=82, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=82, chan=56] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=82, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=82, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=82, chan=56] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/devlink/test_devlink_single_block.py::test_devlink_diff_rate_units[bit] | 155.01 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-5181' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_diff_rate_units[bit]">Starting testcase:test_devlink_diff_rate_units[bit] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=83, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=84] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=84] Local address: 172.17.0.3, port 56086 INFO asyncssh:logging.py:92 [conn=84] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=84] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=84] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=84, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 21:49:23 UTC 2023 INFO asyncssh:logging.py:92 [conn=84, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=1] Channel closed DEBUG infra2:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=84, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=84, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=84, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 2] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=84, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=3] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=84, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=84, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=84, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=5] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=84, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=84, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=6] Channel closed DEBUG infra2:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=84, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=7] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=84, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=8] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 21:49:23 UTC 2023 INFO asyncssh:logging.py:92 [conn=84, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=84, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=84, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2.2.2.4/24', 'count': 1, 'ip': '2.2.2.4', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:2:7' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=84, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=11] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=84, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=12] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=84, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=84, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=13] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol 0x9300 flower skip_sw src_mac 02:98:85:f9:72:e8 action trap action police rate 33298971.0bit burst 33299971.0 conform-exceed drop INFO asyncssh:logging.py:92 [conn=84, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=14] Command: tc filter add dev swp33 ingress protocol 0x9300 flower skip_sw src_mac 02:98:85:f9:72:e8 action trap action police rate 33298971.0bit burst 33299971.0 conform-exceed drop INFO asyncssh:logging.py:92 [conn=84, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=84, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=15] Channel closed DEBUG infra2:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=84, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=16] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=84, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"[37632]","pref":49152,"kind":"flower","chain":0},{"protocol":"[37632]","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"src_mac":"02:98:85:f9:72:e8","eth_type":"9300"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]},{"order":2,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_src_mac_02:98:85:f9:72:e8_eth_type_9300 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=84, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=84, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=18] Received channel close DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=84, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=18] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=84, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=19] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=84, chan=20] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=84, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=19] Channel closed DEBUG infra2:Logger.py:156 3418 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 3418 expected 3425.820061728395 for stat_code 195 INFO asyncssh:logging.py:92 [conn=84, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=20] Channel closed DEBUG infra2:Logger.py:156 3427 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 3427 expected 3425.820061728395 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_diff_rate_units[bit] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py INFO asyncssh:logging.py:92 [conn=84, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=21] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=84, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=22] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 21:51:57 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=84, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=23] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=84, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=84, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=24] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=84, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=25] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=84, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=84, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=84, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=26] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=84, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=27] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=84, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=84, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=84, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=28] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=84, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=29] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=84, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=84, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=84, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=30] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=84, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=31] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=84, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=84, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=84, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=32] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=84, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=33] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=84, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=84, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=84, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=34] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=84, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=35] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=84, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=84, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=84, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=36] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=84, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=37] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=84, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=84, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=84, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=38] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=84, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=84, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=84, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=84, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=40] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=84, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=84, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=84, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=84, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=42] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=84, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=84, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=84, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=84, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=84, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=84, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=46] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=84, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=84, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=46] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=84, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=84, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=48] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=84, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=48] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=84, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=84, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=50] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=84, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=84, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=50] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=84, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=84, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=52] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=84, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=84, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=52] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=84, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=84, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=54] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=84, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=84, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=54] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=84, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=84, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=55] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=84, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=84, chan=56] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=84, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=84, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=84, chan=56] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/devlink/test_devlink_single_block.py::test_devlink_diff_rate_units[kbit] | 156.22 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-5249' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_diff_rate_units[kbit]">Starting testcase:test_devlink_diff_rate_units[kbit] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=84, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=85] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=85] Local address: 172.17.0.3, port 36696 INFO asyncssh:logging.py:92 [conn=85] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=85] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=85] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=85, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 21:51:58 UTC 2023 INFO asyncssh:logging.py:92 [conn=85, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=1] Channel closed DEBUG infra2:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=85, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=85, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=85, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 2] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=85, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=3] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=85, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=85, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=85, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=5] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=85, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=85, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=6] Channel closed DEBUG infra2:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=85, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=7] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=85, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=8] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 21:51:58 UTC 2023 INFO asyncssh:logging.py:92 [conn=85, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=85, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=85, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2.2.2.4/24', 'count': 1, 'ip': '2.2.2.4', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:2:7' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=85, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=11] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=85, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=12] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=85, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=85, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=13] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol 0x0800 flower skip_sw src_mac 02:ef:d1:6e:ad:6a src_ip 42.80.108.178 dst_ip 48.35.6.133 ip_proto udp dst_port 56502 action trap action police rate 16805.851kbit burst 17805.851 conform-exceed drop INFO asyncssh:logging.py:92 [conn=85, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=14] Command: tc filter add dev swp33 ingress protocol 0x0800 flower skip_sw src_mac 02:ef:d1:6e:ad:6a src_ip 42.80.108.178 dst_ip 48.35.6.133 ip_proto udp dst_port 56502 action trap action police rate 16805.851kbit burst 17805.851 conform-exceed drop INFO asyncssh:logging.py:92 [conn=85, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=85, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=15] Channel closed DEBUG infra2:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=85, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=16] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=85, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"ip","pref":49152,"kind":"flower","chain":0},{"protocol":"ip","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"src_mac":"02:ef:d1:6e:ad:6a","eth_type":"ipv4","ip_proto":"udp","dst_ip":"48.35.6.133","src_ip":"42.80.108.178","dst_port":56502},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]},{"order":2,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_src_mac_02:ef:d1:6e:ad:6a_eth_type_ipv4_ip_proto_udp_dst_ip_48.35.6.133_src_ip_42.80.108.178_dst_port_56502 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=85, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=85, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=18] Received channel close DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=85, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=18] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=85, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=19] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=85, chan=20] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=85, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=19] Channel closed DEBUG infra2:Logger.py:156 2700 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 2700 expected 2789.815903054449 for stat_code 195 INFO asyncssh:logging.py:92 [conn=85, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=20] Channel closed DEBUG infra2:Logger.py:156 2704 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 2704 expected 2789.815903054449 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_diff_rate_units[kbit] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py INFO asyncssh:logging.py:92 [conn=85, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=21] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=85, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=22] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 21:54:33 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=85, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=23] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=85, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=85, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=24] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=85, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=25] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=85, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=85, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=85, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=26] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=85, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=27] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=85, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=85, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=85, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=28] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=85, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=29] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=85, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=85, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=85, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=30] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=85, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=31] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=85, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=85, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=85, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=32] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=85, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=33] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=85, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=85, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=85, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=34] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=85, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=35] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=85, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=85, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=85, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=36] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=85, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=37] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=85, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=85, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=85, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=38] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=85, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=85, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=85, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=85, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=40] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=85, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=85, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=85, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=85, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=42] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=85, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=85, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=85, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=85, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=85, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=85, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=46] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=85, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=85, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=46] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=85, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=85, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=48] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=85, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=48] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=85, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=85, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=50] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=85, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=85, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=50] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=85, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=85, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=52] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=85, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=85, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=52] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=85, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=85, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=54] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=85, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=85, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=54] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=85, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=85, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=55] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=85, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=85, chan=56] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=85, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=85, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=85, chan=56] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/devlink/test_devlink_single_block.py::test_devlink_diff_rate_units[gbit] | 150.42 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-5317' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_diff_rate_units[gbit]">Starting testcase:test_devlink_diff_rate_units[gbit] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=85, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=86] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=86] Local address: 172.17.0.3, port 42620 INFO asyncssh:logging.py:92 [conn=86] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=86] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=86] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=86, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 21:54:34 UTC 2023 INFO asyncssh:logging.py:92 [conn=86, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=1] Channel closed DEBUG infra2:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=86, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=86, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=86, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 2] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=86, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=3] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=86, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=86, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=86, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=5] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=86, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=86, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=6] Channel closed DEBUG infra2:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=86, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=7] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=86, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=8] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 21:54:34 UTC 2023 INFO asyncssh:logging.py:92 [conn=86, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=86, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=86, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2.2.2.4/24', 'count': 1, 'ip': '2.2.2.4', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:2:7' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=86, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=11] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=86, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=12] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=86, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=86, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=13] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol 802.1q flower skip_sw src_mac 02:1a:a7:18:91:bc dst_mac 02:8e:17:30:06:54 vlan_id 3587 vlan_ethtype ipv4 src_ip 42.191.112.21 action trap action police rate 0.016222726gbit burst 1000.016222726 conform-exceed drop INFO asyncssh:logging.py:92 [conn=86, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=14] Command: tc filter add dev swp33 ingress protocol 802.1q flower skip_sw src_mac 02:1a:a7:18:91:bc dst_mac 02:8e:17:30:06:54 vlan_id 3587 vlan_ethtype ipv4 src_ip 42.191.112.21 action trap action police rate 0.016222726gbit burst 1000.016222726 conform-exceed drop INFO asyncssh:logging.py:92 [conn=86, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=86, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=15] Channel closed DEBUG infra2:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=86, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=16] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=86, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"802.1Q","pref":49152,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":3587,"vlan_ethtype":"ip","dst_mac":"02:8e:17:30:06:54","src_mac":"02:1a:a7:18:91:bc","eth_type":"ipv4","src_ip":"42.191.112.21"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]},{"order":2,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_3587_vlan_ethtype_ip_dst_mac_02:8e:17:30:06:54_src_mac_02:1a:a7:18:91:bc_eth_type_ipv4_src_ip_42.191.112.21 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=86, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=86, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=18] Received channel close DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=86, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=18] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=86, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=19] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=86, chan=20] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=86, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=19] Channel closed DEBUG infra2:Logger.py:156 3501 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 3501 expected 3484.2624570446737 for stat_code 195 INFO asyncssh:logging.py:92 [conn=86, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=20] Channel closed DEBUG infra2:Logger.py:156 3512 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 3512 expected 3484.2624570446737 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_diff_rate_units[gbit] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py INFO asyncssh:logging.py:92 [conn=86, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=21] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=86, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=22] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 21:57:03 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=86, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=23] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=86, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=86, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=24] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=86, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=25] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=86, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=86, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=86, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=26] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=86, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=27] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=86, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=86, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=86, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=28] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=86, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=29] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=86, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=86, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=86, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=30] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=86, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=31] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=86, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=86, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=86, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=32] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=86, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=33] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=86, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=86, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=86, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=34] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=86, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=35] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=86, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=86, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=86, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=36] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=86, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=37] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=86, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=86, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=86, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=38] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=86, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=86, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=86, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=86, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=40] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=86, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=86, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=86, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=86, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=42] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=86, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=86, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=86, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=86, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=86, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=86, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=46] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=86, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=86, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=46] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=86, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=86, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=48] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=86, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=48] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=86, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=86, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=50] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=86, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=86, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=50] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=86, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=86, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=52] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=86, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=86, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=52] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=86, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=86, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=54] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=86, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=86, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=54] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=86, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=86, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=55] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=86, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=86, chan=56] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=86, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=86, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=86, chan=56] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/devlink/test_devlink_single_block.py::test_devlink_diff_rate_units[bps] | 154.59 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-5385' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_diff_rate_units[bps]">Starting testcase:test_devlink_diff_rate_units[bps] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=86, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=87] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=87] Local address: 172.17.0.3, port 42162 INFO asyncssh:logging.py:92 [conn=87] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=87] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=87] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=87, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 21:57:04 UTC 2023 INFO asyncssh:logging.py:92 [conn=87, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=1] Channel closed DEBUG infra2:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=87, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=87, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=87, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 2] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=87, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=3] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=87, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=87, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=87, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=5] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=87, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=87, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=6] Channel closed DEBUG infra2:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=87, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=7] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=87, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=8] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 21:57:04 UTC 2023 INFO asyncssh:logging.py:92 [conn=87, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=87, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=87, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2.2.2.4/24', 'count': 1, 'ip': '2.2.2.4', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:2:7' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=87, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=11] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=87, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=12] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=87, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=87, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=13] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol 0x8100 flower skip_sw dst_mac 02:f4:4d:2f:5f:1c vlan_id 3358 action trap action police rate 1716124.625bps burst 1717124.625 conform-exceed drop INFO asyncssh:logging.py:92 [conn=87, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=14] Command: tc filter add dev swp33 ingress protocol 0x8100 flower skip_sw dst_mac 02:f4:4d:2f:5f:1c vlan_id 3358 action trap action police rate 1716124.625bps burst 1717124.625 conform-exceed drop INFO asyncssh:logging.py:92 [conn=87, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=87, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=15] Channel closed DEBUG infra2:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=87, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=16] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=87, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"802.1Q","pref":49152,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":3358,"dst_mac":"02:f4:4d:2f:5f:1c"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]},{"order":2,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_3358_dst_mac_02:f4:4d:2f:5f:1c INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=87, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=87, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=18] Received channel close DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=87, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=18] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=87, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=19] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=87, chan=20] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=87, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=19] Channel closed DEBUG infra2:Logger.py:156 3284 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 3284 expected 3268.8088095238095 for stat_code 195 INFO asyncssh:logging.py:92 [conn=87, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=20] Channel closed DEBUG infra2:Logger.py:156 3292 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 3292 expected 3268.8088095238095 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_diff_rate_units[bps] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py INFO asyncssh:logging.py:92 [conn=87, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=21] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=87, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=22] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 21:59:38 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=87, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=23] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=87, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=87, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=24] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=87, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=25] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=87, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=87, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=87, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=26] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=87, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=27] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=87, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=87, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=87, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=28] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=87, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=29] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=87, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=87, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=87, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=30] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=87, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=31] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=87, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=87, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=87, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=32] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=87, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=33] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=87, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=87, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=87, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=34] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=87, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=35] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=87, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=87, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=87, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=36] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=87, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=37] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=87, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=87, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=87, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=38] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=87, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=87, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=87, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=87, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=40] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=87, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=87, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=87, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=87, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=42] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=87, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=87, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=87, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=87, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=87, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=87, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=46] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=87, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=87, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=46] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=87, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=87, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=48] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=87, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=48] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=87, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=87, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=50] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=87, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=87, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=50] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=87, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=87, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=52] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=87, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=87, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=52] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=87, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=87, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=54] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=87, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=87, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=54] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=87, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=87, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=55] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=87, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=87, chan=56] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=87, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=87, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=87, chan=56] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/devlink/test_devlink_single_block.py::test_devlink_diff_rate_units[kbps] | 160.61 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-5453' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_diff_rate_units[kbps]">Starting testcase:test_devlink_diff_rate_units[kbps] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=87, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=88] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=88] Local address: 172.17.0.3, port 49308 INFO asyncssh:logging.py:92 [conn=88] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=88] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=88] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=88, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 21:59:39 UTC 2023 INFO asyncssh:logging.py:92 [conn=88, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=1] Channel closed DEBUG infra2:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=88, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=88, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=88, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 2] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=88, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=3] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=88, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=88, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=88, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=5] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=88, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=88, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=6] Channel closed DEBUG infra2:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=88, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=7] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=88, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=8] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 21:59:39 UTC 2023 INFO asyncssh:logging.py:92 [conn=88, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=88, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=88, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2.2.2.4/24', 'count': 1, 'ip': '2.2.2.4', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:2:7' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=88, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=11] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=88, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=12] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=88, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=88, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=13] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol 0x8100 flower skip_sw dst_mac 02:81:81:d8:b3:06 vlan_id 3463 action trap action police rate 3089.918875kbps burst 4089.918875 conform-exceed drop INFO asyncssh:logging.py:92 [conn=88, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=14] Command: tc filter add dev swp33 ingress protocol 0x8100 flower skip_sw dst_mac 02:81:81:d8:b3:06 vlan_id 3463 action trap action police rate 3089.918875kbps burst 4089.918875 conform-exceed drop INFO asyncssh:logging.py:92 [conn=88, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=88, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=15] Channel closed DEBUG infra2:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=88, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=16] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=88, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"802.1Q","pref":49152,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":3463,"dst_mac":"02:81:81:d8:b3:06"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]},{"order":2,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_3463_dst_mac_02:81:81:d8:b3:06 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=88, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=88, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=18] Received channel close DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=88, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=18] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=88, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=19] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=88, chan=20] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=88, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=19] Channel closed DEBUG infra2:Logger.py:156 3186 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 3186 expected 3165.900486680328 for stat_code 195 INFO asyncssh:logging.py:92 [conn=88, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=20] Channel closed DEBUG infra2:Logger.py:156 3194 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 3194 expected 3165.900486680328 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_diff_rate_units[kbps] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py INFO asyncssh:logging.py:92 [conn=88, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=21] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=88, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=22] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 22:02:19 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=88, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=23] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=88, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=88, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=24] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=88, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=25] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=88, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=88, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=88, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=26] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=88, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=27] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=88, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=88, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=88, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=28] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=88, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=29] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=88, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=88, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=88, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=30] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=88, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=31] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=88, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=88, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=88, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=32] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=88, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=33] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=88, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=88, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=88, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=34] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=88, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=35] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=88, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=88, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=88, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=36] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=88, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=37] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=88, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=88, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=88, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=38] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=88, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=88, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=88, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=88, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=40] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=88, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=88, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=88, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=88, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=42] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=88, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=88, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=88, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=88, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=88, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=88, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=46] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=88, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=88, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=46] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=88, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=88, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=48] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=88, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=48] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=88, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=88, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=50] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=88, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=88, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=50] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=88, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=88, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=52] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=88, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=88, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=52] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=88, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=88, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=54] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=88, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=88, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=54] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=88, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=88, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=55] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=88, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=88, chan=56] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=88, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=88, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=88, chan=56] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/devlink/test_devlink_single_block.py::test_devlink_diff_rate_units[mbps] | 151.83 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-5521' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_diff_rate_units[mbps]">Starting testcase:test_devlink_diff_rate_units[mbps] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=88, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=89] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=89] Local address: 172.17.0.3, port 35300 INFO asyncssh:logging.py:92 [conn=89] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=89] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=89] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=89, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 22:02:19 UTC 2023 INFO asyncssh:logging.py:92 [conn=89, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=1] Channel closed DEBUG infra2:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=89, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=89, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=89, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 2] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=89, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=3] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=89, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=89, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=89, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=5] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=89, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=89, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=6] Channel closed DEBUG infra2:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=89, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=7] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=89, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=8] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 22:02:20 UTC 2023 INFO asyncssh:logging.py:92 [conn=89, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=89, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=89, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2.2.2.4/24', 'count': 1, 'ip': '2.2.2.4', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:2:7' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=89, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=11] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=89, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=12] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=89, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=89, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=13] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol 0x9200 flower skip_sw src_mac 02:a1:d8:18:f7:fc action trap action police rate 0.4717185mbps burst 1000.4717185 conform-exceed drop INFO asyncssh:logging.py:92 [conn=89, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=14] Command: tc filter add dev swp33 ingress protocol 0x9200 flower skip_sw src_mac 02:a1:d8:18:f7:fc action trap action police rate 0.4717185mbps burst 1000.4717185 conform-exceed drop INFO asyncssh:logging.py:92 [conn=89, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=89, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=15] Channel closed DEBUG infra2:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=89, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=16] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=89, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"[37376]","pref":49152,"kind":"flower","chain":0},{"protocol":"[37376]","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"src_mac":"02:a1:d8:18:f7:fc","eth_type":"9200"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]},{"order":2,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_src_mac_02:a1:d8:18:f7:fc_eth_type_9200 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=89, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=89, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=18] Received channel close DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=89, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=18] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=89, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=19] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=89, chan=20] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=89, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=19] Channel closed DEBUG infra2:Logger.py:156 491 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 491 expected 488.8274611398964 for stat_code 195 INFO asyncssh:logging.py:92 [conn=89, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=20] Channel closed DEBUG infra2:Logger.py:156 493 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 493 expected 488.8274611398964 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_diff_rate_units[mbps] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py INFO asyncssh:logging.py:92 [conn=89, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=21] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=89, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=22] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 22:04:51 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=89, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=23] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=89, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=89, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=24] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=89, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=25] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=89, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=89, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=89, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=26] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=89, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=27] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=89, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=89, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=89, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=28] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=89, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=29] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=89, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=89, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=89, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=30] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=89, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=31] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=89, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=89, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=89, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=32] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=89, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=33] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=89, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=89, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=89, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=34] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=89, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=35] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=89, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=89, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=89, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=36] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=89, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=37] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=89, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=89, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=89, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=38] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=89, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=89, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=89, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=89, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=40] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=89, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=89, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=89, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=89, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=42] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=89, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=89, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=89, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=89, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=89, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=89, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=46] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=89, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=89, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=46] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=89, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=89, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=48] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=89, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=48] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=89, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=89, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=50] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=89, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=89, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=50] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=89, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=89, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=52] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=89, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=89, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=52] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=89, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=89, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=54] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=89, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=89, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=54] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=89, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=89, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=55] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=89, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=89, chan=56] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=89, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=89, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=89, chan=56] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/devlink/test_devlink_single_block.py::test_devlink_diff_rate_units[gbps] | 159.28 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-5589' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_diff_rate_units[gbps]">Starting testcase:test_devlink_diff_rate_units[gbps] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=89, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=90] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=90] Local address: 172.17.0.3, port 41800 INFO asyncssh:logging.py:92 [conn=90] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=90] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=90] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=90, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 22:04:51 UTC 2023 INFO asyncssh:logging.py:92 [conn=90, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=1] Channel closed DEBUG infra2:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=90, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=90, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=90, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 2] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=90, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=3] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=90, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=90, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=90, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=5] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=90, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=90, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=6] Channel closed DEBUG infra2:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=90, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=7] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=90, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=8] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 22:04:51 UTC 2023 INFO asyncssh:logging.py:92 [conn=90, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=90, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=90, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2.2.2.4/24', 'count': 1, 'ip': '2.2.2.4', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:2:7' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=90, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=11] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=90, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=12] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=90, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=90, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=13] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol 802.1q flower skip_sw dst_mac 02:26:87:ab:d0:dd vlan_id 2812 action trap action police rate 0.00199449925gbps burst 1000.00199449925 conform-exceed drop INFO asyncssh:logging.py:92 [conn=90, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=14] Command: tc filter add dev swp33 ingress protocol 802.1q flower skip_sw dst_mac 02:26:87:ab:d0:dd vlan_id 2812 action trap action police rate 0.00199449925gbps burst 1000.00199449925 conform-exceed drop INFO asyncssh:logging.py:92 [conn=90, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=90, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=15] Channel closed DEBUG infra2:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=90, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=16] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=90, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"802.1Q","pref":49152,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":2812,"dst_mac":"02:26:87:ab:d0:dd"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]},{"order":2,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_2812_dst_mac_02:26:87:ab:d0:dd INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=90, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=90, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=18] Received channel close DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=90, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=18] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=90, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=19] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=90, chan=20] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=90, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=19] Channel closed DEBUG infra2:Logger.py:156 2126 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 2126 expected 2119.5528692879916 for stat_code 195 INFO asyncssh:logging.py:92 [conn=90, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=20] Channel closed DEBUG infra2:Logger.py:156 2131 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 2131 expected 2119.5528692879916 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_diff_rate_units[gbps] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py INFO asyncssh:logging.py:92 [conn=90, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=21] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=90, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=22] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 22:07:30 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=90, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=23] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=90, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=90, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=24] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=90, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=25] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=90, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=90, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=90, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=26] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=90, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=27] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=90, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=90, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=90, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=28] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=90, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=29] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=90, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=90, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=90, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=30] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=90, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=31] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=90, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=90, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=90, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=32] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=90, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=33] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=90, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=90, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=90, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=34] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=90, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=35] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=90, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=90, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=90, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=36] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=90, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=37] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=90, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=90, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=90, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=38] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=90, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=90, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=90, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=90, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=40] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=90, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=90, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=90, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=90, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=42] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=90, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=90, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=90, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=90, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=90, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=90, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=46] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=90, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=90, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=46] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=90, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=90, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=48] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=90, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=48] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=90, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=90, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=50] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=90, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=90, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=50] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=90, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=90, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=52] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=90, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=90, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=52] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=90, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=90, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=54] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=90, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=90, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=54] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=90, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=90, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=55] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=90, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=90, chan=56] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=90, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=90, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=90, chan=56] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/devlink/test_devlink_single_block.py::test_devlink_diff_rate_units[tbps] | 161.36 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-5657' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_devlink_diff_rate_units[tbps]">Starting testcase:test_devlink_diff_rate_units[tbps] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=90, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=91] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=91] Local address: 172.17.0.3, port 52618 INFO asyncssh:logging.py:92 [conn=91] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=91] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=91] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=91, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 22:07:31 UTC 2023 INFO asyncssh:logging.py:92 [conn=91, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=1] Channel closed DEBUG infra2:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=91, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=91, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=91, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 2] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=91, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=3] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=91, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=91, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=91, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=5] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=91, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=91, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=6] Channel closed DEBUG infra2:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=91, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=7] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=91, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=8] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 22:07:31 UTC 2023 INFO asyncssh:logging.py:92 [conn=91, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=91, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=91, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2.2.2.4/24', 'count': 1, 'ip': '2.2.2.4', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:2:7' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=91, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=11] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=91, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=12] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=91, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=91, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=13] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol ipv4 flower skip_sw src_mac 02:95:b2:65:92:df dst_mac 02:ff:0f:17:6b:8f dst_ip 48.206.241.91 action trap action police rate 3.45795625e-07tbps burst 1000.0000003457956 conform-exceed drop INFO asyncssh:logging.py:92 [conn=91, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=14] Command: tc filter add dev swp33 ingress protocol ipv4 flower skip_sw src_mac 02:95:b2:65:92:df dst_mac 02:ff:0f:17:6b:8f dst_ip 48.206.241.91 action trap action police rate 3.45795625e-07tbps burst 1000.0000003457956 conform-exceed drop INFO asyncssh:logging.py:92 [conn=91, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=91, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=15] Channel closed DEBUG infra2:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=91, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=16] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=91, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"ip","pref":49152,"kind":"flower","chain":0},{"protocol":"ip","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:ff:0f:17:6b:8f","src_mac":"02:95:b2:65:92:df","eth_type":"ipv4","dst_ip":"48.206.241.91"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]},{"order":2,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:ff:0f:17:6b:8f_src_mac_02:95:b2:65:92:df_eth_type_ipv4_dst_ip_48.206.241.91 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=91, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=17] Channel closed INFO asyncssh:logging.py:92 [conn=91, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=18] Received channel close DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=91, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=18] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=91, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=19] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=91, chan=20] Command: get_devlink_cpu_traps_rate_avg acl_code_3 INFO asyncssh:logging.py:92 [conn=91, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=19] Channel closed DEBUG infra2:Logger.py:156 278 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 278 expected 277.74748995983936 for stat_code 195 INFO asyncssh:logging.py:92 [conn=91, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=20] Channel closed DEBUG infra2:Logger.py:156 279 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 279 expected 277.74748995983936 for trap_code acl_code_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_devlink_diff_rate_units[tbps] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/devlink/test_devlink_single_block.py INFO asyncssh:logging.py:92 [conn=91, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=21] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=91, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=22] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 22:10:11 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=91, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=23] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=91, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=91, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=24] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=91, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=25] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=91, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=91, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=91, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=26] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=91, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=27] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=91, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=91, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=91, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=28] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=91, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=29] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=91, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=91, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=91, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=30] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=91, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=31] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=91, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=91, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=91, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=32] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=91, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=33] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=91, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=91, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=91, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=34] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=91, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=35] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=91, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=91, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=91, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=36] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=91, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=37] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=91, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=91, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=91, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=38] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=91, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=91, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=91, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=91, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=40] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=91, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=91, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=91, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=91, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=42] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=91, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=91, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=91, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=91, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=91, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=91, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=46] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=91, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=91, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=46] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=91, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=91, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=48] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=91, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=48] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=91, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=91, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=50] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=91, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=91, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=50] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=91, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=91, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=52] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=91, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=91, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=52] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=91, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=91, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=54] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=91, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=91, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=54] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=91, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=91, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=55] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=91, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=91, chan=56] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=91, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=91, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=91, chan=56] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_addr.py::test_ipv4_addr | 144.24 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-5909' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_addr">Starting testcase:test_ipv4_addr from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_addr.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=98, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=99] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=99] Local address: 172.17.0.3, port 39226 INFO asyncssh:logging.py:92 [conn=99] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=99] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=99] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=99, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 22:32:46 UTC 2023 INFO asyncssh:logging.py:92 [conn=99, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=1] Channel closed DEBUG infra2:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=99, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=99, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=2] Channel closed DEBUG infra2:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=99, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=3] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=99, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=99, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=4] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=99, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=99, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=6] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 22:32:46 UTC 2023 INFO asyncssh:logging.py:92 [conn=99, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=99, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=8] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=99, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=99, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=99, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=99, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for dummy INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=99, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=11] Channel closed INFO asyncssh:logging.py:92 [conn=99, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=13] Received channel close DEBUG infra2:Logger.py:156 echo onl | sudo -S ping -c 10 1.1.1.2 INFO asyncssh:logging.py:92 [conn=99, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=12] Channel closed INFO asyncssh:logging.py:92 [conn=99, chan=13] Channel closed INFO asyncssh:logging.py:92 [conn=99, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=14] Received channel close DEBUG infra2:Logger.py:156 echo onl | sudo -S ping -c 10 2.2.2.2 INFO asyncssh:logging.py:92 [conn=99, chan=16] Requesting new SSH session DEBUG infra2:Logger.py:156 echo onl | sudo -S ping -c 10 3.3.3.2 INFO asyncssh:logging.py:92 [conn=99, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=14] Channel closed INFO asyncssh:logging.py:92 [conn=99, chan=15] Command: echo onl | sudo -S ping -c 10 1.1.1.2 DEBUG infra2:Logger.py:156 echo onl | sudo -S ping -c 10 4.4.4.2 INFO asyncssh:logging.py:92 [conn=99, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=16] Command: echo onl | sudo -S ping -c 10 2.2.2.2 INFO asyncssh:logging.py:92 [conn=99, chan=17] Command: echo onl | sudo -S ping -c 10 3.3.3.2 INFO asyncssh:logging.py:92 [conn=99, chan=18] Command: echo onl | sudo -S ping -c 10 4.4.4.2 INFO asyncssh:logging.py:92 [conn=99, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=15] Channel closed INFO asyncssh:logging.py:92 [conn=99, chan=16] Channel closed DEBUG infra2:Logger.py:156 PING 1.1.1.2 (1.1.1.2) 56(84) bytes of data. 64 bytes from 1.1.1.2: icmp_seq=1 ttl=64 time=0.355 ms 64 bytes from 1.1.1.2: icmp_seq=2 ttl=64 time=0.204 ms 64 bytes from 1.1.1.2: icmp_seq=3 ttl=64 time=0.175 ms 64 bytes from 1.1.1.2: icmp_seq=4 ttl=64 time=0.205 ms 64 bytes from 1.1.1.2: icmp_seq=5 ttl=64 time=0.175 ms 64 bytes from 1.1.1.2: icmp_seq=6 ttl=64 time=0.178 ms 64 bytes from 1.1.1.2: icmp_seq=7 ttl=64 time=0.168 ms 64 bytes from 1.1.1.2: icmp_seq=8 ttl=64 time=0.186 ms 64 bytes from 1.1.1.2: icmp_seq=9 ttl=64 time=0.164 ms 64 bytes from 1.1.1.2: icmp_seq=10 ttl=64 time=0.152 ms --- 1.1.1.2 ping statistics --- 10 packets transmitted, 10 received, 0% packet loss, time 9189ms rtt min/avg/max/mdev = 0.152/0.196/0.355/0.055 ms INFO DENT:Logger.py:84 [DENT infrastructure 2] Ran ping -c 10 1.1.1.2 on infra2 with rc 0 and out PING 1.1.1.2 (1.1.1.2) 56(84) bytes of data. 64 bytes from 1.1.1.2: icmp_seq=1 ttl=64 time=0.355 ms 64 bytes from 1.1.1.2: icmp_seq=2 ttl=64 time=0.204 ms 64 bytes from 1.1.1.2: icmp_seq=3 ttl=64 time=0.175 ms 64 bytes from 1.1.1.2: icmp_seq=4 ttl=64 time=0.205 ms 64 bytes from 1.1.1.2: icmp_seq=5 ttl=64 time=0.175 ms 64 bytes from 1.1.1.2: icmp_seq=6 ttl=64 time=0.178 ms 64 bytes from 1.1.1.2: icmp_seq=7 ttl=64 time=0.168 ms 64 bytes from 1.1.1.2: icmp_seq=8 ttl=64 time=0.186 ms 64 bytes from 1.1.1.2: icmp_seq=9 ttl=64 time=0.164 ms 64 bytes from 1.1.1.2: icmp_seq=10 ttl=64 time=0.152 ms --- 1.1.1.2 ping statistics --- 10 packets transmitted, 10 received, 0% packet loss, time 9189ms rtt min/avg/max/mdev = 0.152/0.196/0.355/0.055 ms DEBUG infra2:Logger.py:156 PING 2.2.2.2 (2.2.2.2) 56(84) bytes of data. 64 bytes from 2.2.2.2: icmp_seq=1 ttl=64 time=0.261 ms 64 bytes from 2.2.2.2: icmp_seq=2 ttl=64 time=0.204 ms 64 bytes from 2.2.2.2: icmp_seq=3 ttl=64 time=0.224 ms 64 bytes from 2.2.2.2: icmp_seq=4 ttl=64 time=0.205 ms 64 bytes from 2.2.2.2: icmp_seq=5 ttl=64 time=0.175 ms 64 bytes from 2.2.2.2: icmp_seq=6 ttl=64 time=0.179 ms 64 bytes from 2.2.2.2: icmp_seq=7 ttl=64 time=0.168 ms 64 bytes from 2.2.2.2: icmp_seq=8 ttl=64 time=0.187 ms 64 bytes from 2.2.2.2: icmp_seq=9 ttl=64 time=0.164 ms 64 bytes from 2.2.2.2: icmp_seq=10 ttl=64 time=0.152 ms --- 2.2.2.2 ping statistics --- 10 packets transmitted, 10 received, 0% packet loss, time 9188ms rtt min/avg/max/mdev = 0.152/0.191/0.261/0.036 ms INFO DENT:Logger.py:84 [DENT infrastructure 2] Ran ping -c 10 2.2.2.2 on infra2 with rc 0 and out PING 2.2.2.2 (2.2.2.2) 56(84) bytes of data. 64 bytes from 2.2.2.2: icmp_seq=1 ttl=64 time=0.261 ms 64 bytes from 2.2.2.2: icmp_seq=2 ttl=64 time=0.204 ms 64 bytes from 2.2.2.2: icmp_seq=3 ttl=64 time=0.224 ms 64 bytes from 2.2.2.2: icmp_seq=4 ttl=64 time=0.205 ms 64 bytes from 2.2.2.2: icmp_seq=5 ttl=64 time=0.175 ms 64 bytes from 2.2.2.2: icmp_seq=6 ttl=64 time=0.179 ms 64 bytes from 2.2.2.2: icmp_seq=7 ttl=64 time=0.168 ms 64 bytes from 2.2.2.2: icmp_seq=8 ttl=64 time=0.187 ms 64 bytes from 2.2.2.2: icmp_seq=9 ttl=64 time=0.164 ms 64 bytes from 2.2.2.2: icmp_seq=10 ttl=64 time=0.152 ms --- 2.2.2.2 ping statistics --- 10 packets transmitted, 10 received, 0% packet loss, time 9188ms rtt min/avg/max/mdev = 0.152/0.191/0.261/0.036 ms INFO asyncssh:logging.py:92 [conn=99, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=18] Channel closed INFO asyncssh:logging.py:92 [conn=99, chan=17] Received channel close DEBUG infra2:Logger.py:156 PING 4.4.4.2 (4.4.4.2) 56(84) bytes of data. 64 bytes from 4.4.4.2: icmp_seq=1 ttl=64 time=0.319 ms 64 bytes from 4.4.4.2: icmp_seq=2 ttl=64 time=0.202 ms 64 bytes from 4.4.4.2: icmp_seq=3 ttl=64 time=0.158 ms 64 bytes from 4.4.4.2: icmp_seq=4 ttl=64 time=0.158 ms 64 bytes from 4.4.4.2: icmp_seq=5 ttl=64 time=0.138 ms 64 bytes from 4.4.4.2: icmp_seq=6 ttl=64 time=0.146 ms 64 bytes from 4.4.4.2: icmp_seq=7 ttl=64 time=0.128 ms 64 bytes from 4.4.4.2: icmp_seq=8 ttl=64 time=0.148 ms 64 bytes from 4.4.4.2: icmp_seq=9 ttl=64 time=0.102 ms 64 bytes from 4.4.4.2: icmp_seq=10 ttl=64 time=0.184 ms --- 4.4.4.2 ping statistics --- 10 packets transmitted, 10 received, 0% packet loss, time 9223ms rtt min/avg/max/mdev = 0.102/0.168/0.319/0.057 ms INFO DENT:Logger.py:84 [DENT infrastructure 2] Ran ping -c 10 4.4.4.2 on infra2 with rc 0 and out PING 4.4.4.2 (4.4.4.2) 56(84) bytes of data. 64 bytes from 4.4.4.2: icmp_seq=1 ttl=64 time=0.319 ms 64 bytes from 4.4.4.2: icmp_seq=2 ttl=64 time=0.202 ms 64 bytes from 4.4.4.2: icmp_seq=3 ttl=64 time=0.158 ms 64 bytes from 4.4.4.2: icmp_seq=4 ttl=64 time=0.158 ms 64 bytes from 4.4.4.2: icmp_seq=5 ttl=64 time=0.138 ms 64 bytes from 4.4.4.2: icmp_seq=6 ttl=64 time=0.146 ms 64 bytes from 4.4.4.2: icmp_seq=7 ttl=64 time=0.128 ms 64 bytes from 4.4.4.2: icmp_seq=8 ttl=64 time=0.148 ms 64 bytes from 4.4.4.2: icmp_seq=9 ttl=64 time=0.102 ms 64 bytes from 4.4.4.2: icmp_seq=10 ttl=64 time=0.184 ms --- 4.4.4.2 ping statistics --- 10 packets transmitted, 10 received, 0% packet loss, time 9223ms rtt min/avg/max/mdev = 0.102/0.168/0.319/0.057 ms INFO asyncssh:logging.py:92 [conn=99, chan=17] Channel closed DEBUG infra2:Logger.py:156 PING 3.3.3.2 (3.3.3.2) 56(84) bytes of data. 64 bytes from 3.3.3.2: icmp_seq=1 ttl=64 time=0.319 ms 64 bytes from 3.3.3.2: icmp_seq=2 ttl=64 time=0.185 ms 64 bytes from 3.3.3.2: icmp_seq=3 ttl=64 time=0.157 ms 64 bytes from 3.3.3.2: icmp_seq=4 ttl=64 time=0.156 ms 64 bytes from 3.3.3.2: icmp_seq=5 ttl=64 time=0.132 ms 64 bytes from 3.3.3.2: icmp_seq=6 ttl=64 time=0.174 ms 64 bytes from 3.3.3.2: icmp_seq=7 ttl=64 time=0.126 ms 64 bytes from 3.3.3.2: icmp_seq=8 ttl=64 time=0.142 ms 64 bytes from 3.3.3.2: icmp_seq=9 ttl=64 time=0.123 ms 64 bytes from 3.3.3.2: icmp_seq=10 ttl=64 time=0.183 ms --- 3.3.3.2 ping statistics --- 10 packets transmitted, 10 received, 0% packet loss, time 9223ms rtt min/avg/max/mdev = 0.123/0.169/0.319/0.056 ms INFO DENT:Logger.py:84 [DENT infrastructure 2] Ran ping -c 10 3.3.3.2 on infra2 with rc 0 and out PING 3.3.3.2 (3.3.3.2) 56(84) bytes of data. 64 bytes from 3.3.3.2: icmp_seq=1 ttl=64 time=0.319 ms 64 bytes from 3.3.3.2: icmp_seq=2 ttl=64 time=0.185 ms 64 bytes from 3.3.3.2: icmp_seq=3 ttl=64 time=0.157 ms 64 bytes from 3.3.3.2: icmp_seq=4 ttl=64 time=0.156 ms 64 bytes from 3.3.3.2: icmp_seq=5 ttl=64 time=0.132 ms 64 bytes from 3.3.3.2: icmp_seq=6 ttl=64 time=0.174 ms 64 bytes from 3.3.3.2: icmp_seq=7 ttl=64 time=0.126 ms 64 bytes from 3.3.3.2: icmp_seq=8 ttl=64 time=0.142 ms 64 bytes from 3.3.3.2: icmp_seq=9 ttl=64 time=0.123 ms 64 bytes from 3.3.3.2: icmp_seq=10 ttl=64 time=0.183 ms --- 3.3.3.2 ping statistics --- 10 packets transmitted, 10 received, 0% packet loss, time 9223ms rtt min/avg/max/mdev = 0.123/0.169/0.319/0.056 ms -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_addr from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_addr.py INFO asyncssh:logging.py:92 [conn=99, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=19] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=99, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=20] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=99, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=20] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=99, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=21] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=99, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=22] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 22:35:10 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=99, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=23] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=99, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=24] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 22:35:10 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=99, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=25] Channel closed DEBUG infra2:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 INFO asyncssh:logging.py:92 [conn=99, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=26] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 INFO asyncssh:logging.py:92 [conn=99, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=26] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=99, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=27] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=99, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=28] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=99, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=28] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"f6:33:41:29:6d:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=99, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=99, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=29] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=99, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=99, chan=30] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=99, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=99, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=99, chan=30] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_arp.py::test_ipv4_dynamic_arp | 132.35 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-5955' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_dynamic_arp">Starting testcase:test_ipv4_dynamic_arp from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_arp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=99, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=100] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=100] Local address: 172.17.0.3, port 60332 INFO asyncssh:logging.py:92 [conn=100] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=100] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=100] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=100, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 22:35:10 UTC 2023 INFO asyncssh:logging.py:92 [conn=100, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=1] Channel closed DEBUG infra2:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=100, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=100, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=2] Channel closed DEBUG infra2:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=100, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=3] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=100, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=100, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=4] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=100, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=100, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=6] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 22:35:10 UTC 2023 INFO asyncssh:logging.py:92 [conn=100, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=100, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=100, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=100, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=100, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=10] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=100, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:5 <-> 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:5_1.1.1.2/24 to 10.36.118.199:2:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:7 <-> 10.36.118.199:2:8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:7_3.3.3.2/24 to 10.36.118.199:2:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f6f94490>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:5 <-> 10.36.118.199:2:6 Tx 10066 Rx 10066 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:7 <-> 10.36.118.199:2:8 Tx 10066 Rx 10066 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=100, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=11] Channel closed DEBUG infra2:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=100, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=12] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=100, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=12] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"4.4.4.2","dev":"swp36","lladdr":"00:14:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2.2.2.2","dev":"swp34","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"1.1.1.2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"3.3.3.2","dev":"swp35","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=100, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=100, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=14] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=100, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=14] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"4.4.4.2","dev":"swp36","lladdr":"00:14:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2.2.2.2","dev":"swp34","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"1.1.1.2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"3.3.3.2","dev":"swp35","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=100, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 2.2.2.2 dev swp34 && ip neigh delete 1.1.1.2 dev swp33 && ip neigh delete 3.3.3.2 dev swp35 INFO asyncssh:logging.py:92 [conn=100, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=16] Command: ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 2.2.2.2 dev swp34 && ip neigh delete 1.1.1.2 dev swp33 && ip neigh delete 3.3.3.2 dev swp35 INFO asyncssh:logging.py:92 [conn=100, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=100, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 2.2.2.2 dev swp34 && ip neigh delete 1.1.1.2 dev swp33 && ip neigh delete 3.3.3.2 dev swp35 INFO asyncssh:logging.py:92 [conn=100, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=18] Command: ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 2.2.2.2 dev swp34 && ip neigh delete 1.1.1.2 dev swp33 && ip neigh delete 3.3.3.2 dev swp35 INFO asyncssh:logging.py:92 [conn=100, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=100, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=100, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=20] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=100, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=20] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_dynamic_arp from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_arp.py INFO asyncssh:logging.py:92 [conn=100, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=21] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=100, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=22] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=100, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=22] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=100, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=23] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=100, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=24] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 22:37:22 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=100, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=25] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=100, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=26] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 22:37:22 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=100, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=27] Channel closed DEBUG infra2:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 INFO asyncssh:logging.py:92 [conn=100, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=28] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 INFO asyncssh:logging.py:92 [conn=100, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=28] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=100, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=29] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=100, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=30] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=100, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=30] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"f6:33:41:29:6d:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=100, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=100, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=31] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=100, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=100, chan=32] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=100, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=100, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=100, chan=32] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_arp.py::test_ipv4_static_arp | 1.64 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-5999' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_static_arp">Starting testcase:test_ipv4_static_arp from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_arp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=100, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=101] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=101] Local address: 172.17.0.3, port 59218 INFO asyncssh:logging.py:92 [conn=101] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=101] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=101] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=101, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 22:37:23 UTC 2023 INFO asyncssh:logging.py:92 [conn=101, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=1] Channel closed DEBUG infra2:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=101, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=101, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=2] Channel closed DEBUG infra2:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=101, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=3] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=101, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=101, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=4] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=101, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=101, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=6] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 22:37:23 UTC 2023 INFO asyncssh:logging.py:92 [conn=101, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=101, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=101, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=101, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=101, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=10] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=101, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=101, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=11] Channel closed DEBUG infra2:Logger.py:156 ip neigh add 1.1.1.2 lladdr 02:00:00:00:00:01 dev swp33 && ip neigh add 2.2.2.2 lladdr 02:00:00:00:00:02 dev swp34 && ip neigh add 3.3.3.2 lladdr 02:00:00:00:00:03 dev swp35 && ip neigh add 4.4.4.2 lladdr 02:00:00:00:00:04 dev swp36 INFO asyncssh:logging.py:92 [conn=101, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=12] Command: ip neigh add 1.1.1.2 lladdr 02:00:00:00:00:01 dev swp33 && ip neigh add 2.2.2.2 lladdr 02:00:00:00:00:02 dev swp34 && ip neigh add 3.3.3.2 lladdr 02:00:00:00:00:03 dev swp35 && ip neigh add 4.4.4.2 lladdr 02:00:00:00:00:04 dev swp36 INFO asyncssh:logging.py:92 [conn=101, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=101, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=101, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=14] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=101, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=14] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"4.4.4.2","dev":"swp36","lladdr":"02:00:00:00:00:04","offload":null,"state":["PERMANENT"]},{"dst":"2.2.2.2","dev":"swp34","lladdr":"02:00:00:00:00:02","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"1.1.1.2","dev":"swp33","lladdr":"02:00:00:00:00:01","offload":null,"state":["PERMANENT"]},{"dst":"3.3.3.2","dev":"swp35","lladdr":"02:00:00:00:00:03","offload":null,"state":["PERMANENT"]}] INFO asyncssh:logging.py:92 [conn=101, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=101, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=16] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=101, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"4.4.4.2","dev":"swp36","lladdr":"02:00:00:00:00:04","offload":null,"state":["PERMANENT"]},{"dst":"2.2.2.2","dev":"swp34","lladdr":"02:00:00:00:00:02","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"1.1.1.2","dev":"swp33","lladdr":"02:00:00:00:00:01","offload":null,"state":["PERMANENT"]},{"dst":"3.3.3.2","dev":"swp35","lladdr":"02:00:00:00:00:03","offload":null,"state":["PERMANENT"]}] INFO asyncssh:logging.py:92 [conn=101, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 2.2.2.2 dev swp34 && ip neigh delete 1.1.1.2 dev swp33 && ip neigh delete 3.3.3.2 dev swp35 INFO asyncssh:logging.py:92 [conn=101, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=18] Command: ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 2.2.2.2 dev swp34 && ip neigh delete 1.1.1.2 dev swp33 && ip neigh delete 3.3.3.2 dev swp35 INFO asyncssh:logging.py:92 [conn=101, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=101, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 2.2.2.2 dev swp34 && ip neigh delete 1.1.1.2 dev swp33 && ip neigh delete 3.3.3.2 dev swp35 INFO asyncssh:logging.py:92 [conn=101, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=20] Command: ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 2.2.2.2 dev swp34 && ip neigh delete 1.1.1.2 dev swp33 && ip neigh delete 3.3.3.2 dev swp35 INFO asyncssh:logging.py:92 [conn=101, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=101, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=101, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=22] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=101, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=22] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_static_arp from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_arp.py INFO asyncssh:logging.py:92 [conn=101, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=23] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=101, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=24] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=101, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=24] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=101, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=25] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=101, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=26] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 22:37:23 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=101, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=27] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=101, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=28] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 22:37:24 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=101, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=29] Channel closed DEBUG infra2:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 INFO asyncssh:logging.py:92 [conn=101, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=30] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 INFO asyncssh:logging.py:92 [conn=101, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=30] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=101, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=31] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=101, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=32] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=101, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=32] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"f6:33:41:29:6d:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=101, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=101, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=33] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=101, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=101, chan=34] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=101, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=101, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=101, chan=34] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_arp.py::test_ipv4_replace_dyn_stat_arp | 130.12 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-6045' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_replace_dyn_stat_arp">Starting testcase:test_ipv4_replace_dyn_stat_arp from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_arp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=101, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=102] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=102] Local address: 172.17.0.3, port 59232 INFO asyncssh:logging.py:92 [conn=102] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=102] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=102] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=102, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=102, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 22:37:24 UTC 2023 INFO asyncssh:logging.py:92 [conn=102, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=102, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=1] Channel closed DEBUG infra2:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=102, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=102, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=2] Channel closed DEBUG infra2:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=102, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=102, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=3] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=102, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=102, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=4] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=102, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=102, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=102, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=102, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=6] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 22:37:24 UTC 2023 INFO asyncssh:logging.py:92 [conn=102, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=102, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=102, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=102, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=102, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=102, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=102, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=10] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=102, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=102, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=102, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=11] Channel closed DEBUG infra2:Logger.py:156 ip neigh add 1.1.1.2 lladdr 02:00:00:00:00:01 dev swp33 && ip neigh add 2.2.2.2 lladdr 02:00:00:00:00:02 dev swp34 && ip neigh add 3.3.3.2 lladdr 02:00:00:00:00:03 dev swp35 && ip neigh add 4.4.4.2 lladdr 02:00:00:00:00:04 dev swp36 INFO asyncssh:logging.py:92 [conn=102, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=12] Command: ip neigh add 1.1.1.2 lladdr 02:00:00:00:00:01 dev swp33 && ip neigh add 2.2.2.2 lladdr 02:00:00:00:00:02 dev swp34 && ip neigh add 3.3.3.2 lladdr 02:00:00:00:00:03 dev swp35 && ip neigh add 4.4.4.2 lladdr 02:00:00:00:00:04 dev swp36 INFO asyncssh:logging.py:92 [conn=102, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=102, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=102, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=102, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=14] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=102, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=14] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"4.4.4.2","dev":"swp36","lladdr":"02:00:00:00:00:04","offload":null,"state":["PERMANENT"]},{"dst":"2.2.2.2","dev":"swp34","lladdr":"02:00:00:00:00:02","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"1.1.1.2","dev":"swp33","lladdr":"02:00:00:00:00:01","offload":null,"state":["PERMANENT"]},{"dst":"3.3.3.2","dev":"swp35","lladdr":"02:00:00:00:00:03","offload":null,"state":["PERMANENT"]}] INFO asyncssh:logging.py:92 [conn=102, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=102, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=102, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=16] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=102, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"4.4.4.2","dev":"swp36","lladdr":"02:00:00:00:00:04","offload":null,"state":["PERMANENT"]},{"dst":"2.2.2.2","dev":"swp34","lladdr":"02:00:00:00:00:02","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"1.1.1.2","dev":"swp33","lladdr":"02:00:00:00:00:01","offload":null,"state":["PERMANENT"]},{"dst":"3.3.3.2","dev":"swp35","lladdr":"02:00:00:00:00:03","offload":null,"state":["PERMANENT"]}] INFO asyncssh:logging.py:92 [conn=102, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=102, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 2.2.2.2 dev swp34 && ip neigh delete 1.1.1.2 dev swp33 && ip neigh delete 3.3.3.2 dev swp35 INFO asyncssh:logging.py:92 [conn=102, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=18] Command: ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 2.2.2.2 dev swp34 && ip neigh delete 1.1.1.2 dev swp33 && ip neigh delete 3.3.3.2 dev swp35 INFO asyncssh:logging.py:92 [conn=102, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=102, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=102, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 2.2.2.2 dev swp34 && ip neigh delete 1.1.1.2 dev swp33 && ip neigh delete 3.3.3.2 dev swp35 INFO asyncssh:logging.py:92 [conn=102, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=20] Command: ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 2.2.2.2 dev swp34 && ip neigh delete 1.1.1.2 dev swp33 && ip neigh delete 3.3.3.2 dev swp35 INFO asyncssh:logging.py:92 [conn=102, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=102, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=102, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=102, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=22] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=102, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=22] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:5 <-> 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:5_1.1.1.2/24 to 10.36.118.199:2:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:7 <-> 10.36.118.199:2:8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:7_3.3.3.2/24 to 10.36.118.199:2:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f73b4580>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:5 <-> 10.36.118.199:2:6 Tx 10140 Rx 10140 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:7 <-> 10.36.118.199:2:8 Tx 10140 Rx 10140 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=102, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=102, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=23] Channel closed DEBUG infra2:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=102, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=24] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=102, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=24] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"4.4.4.2","dev":"swp36","lladdr":"00:14:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2.2.2.2","dev":"swp34","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"1.1.1.2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"3.3.3.2","dev":"swp35","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=102, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=102, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=25] Channel closed DEBUG infra2:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=102, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=26] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=102, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=26] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"4.4.4.2","dev":"swp36","lladdr":"00:14:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2.2.2.2","dev":"swp34","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"1.1.1.2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"3.3.3.2","dev":"swp35","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=102, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=102, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=27] Channel closed DEBUG infra2:Logger.py:156 ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 2.2.2.2 dev swp34 && ip neigh delete 1.1.1.2 dev swp33 && ip neigh delete 3.3.3.2 dev swp35 INFO asyncssh:logging.py:92 [conn=102, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=28] Command: ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 2.2.2.2 dev swp34 && ip neigh delete 1.1.1.2 dev swp33 && ip neigh delete 3.3.3.2 dev swp35 INFO asyncssh:logging.py:92 [conn=102, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=28] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=102, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=102, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=29] Channel closed DEBUG infra2:Logger.py:156 ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 2.2.2.2 dev swp34 && ip neigh delete 1.1.1.2 dev swp33 && ip neigh delete 3.3.3.2 dev swp35 INFO asyncssh:logging.py:92 [conn=102, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=30] Command: ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 2.2.2.2 dev swp34 && ip neigh delete 1.1.1.2 dev swp33 && ip neigh delete 3.3.3.2 dev swp35 INFO asyncssh:logging.py:92 [conn=102, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=30] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=102, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=102, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=31] Channel closed DEBUG infra2:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=102, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=32] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=102, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=32] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=102, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=102, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=33] Channel closed DEBUG infra2:Logger.py:156 ip neigh add 1.1.1.2 lladdr 02:00:00:00:00:01 dev swp33 && ip neigh add 2.2.2.2 lladdr 02:00:00:00:00:02 dev swp34 && ip neigh add 3.3.3.2 lladdr 02:00:00:00:00:03 dev swp35 && ip neigh add 4.4.4.2 lladdr 02:00:00:00:00:04 dev swp36 INFO asyncssh:logging.py:92 [conn=102, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=34] Command: ip neigh add 1.1.1.2 lladdr 02:00:00:00:00:01 dev swp33 && ip neigh add 2.2.2.2 lladdr 02:00:00:00:00:02 dev swp34 && ip neigh add 3.3.3.2 lladdr 02:00:00:00:00:03 dev swp35 && ip neigh add 4.4.4.2 lladdr 02:00:00:00:00:04 dev swp36 INFO asyncssh:logging.py:92 [conn=102, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=34] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=102, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=102, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=35] Channel closed DEBUG infra2:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=102, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=36] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=102, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=36] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"4.4.4.2","dev":"swp36","lladdr":"02:00:00:00:00:04","offload":null,"state":["PERMANENT"]},{"dst":"2.2.2.2","dev":"swp34","lladdr":"02:00:00:00:00:02","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"1.1.1.2","dev":"swp33","lladdr":"02:00:00:00:00:01","offload":null,"state":["PERMANENT"]},{"dst":"3.3.3.2","dev":"swp35","lladdr":"02:00:00:00:00:03","offload":null,"state":["PERMANENT"]}] INFO asyncssh:logging.py:92 [conn=102, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=102, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=37] Channel closed DEBUG infra2:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=102, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=38] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=102, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=38] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"4.4.4.2","dev":"swp36","lladdr":"02:00:00:00:00:04","offload":null,"state":["PERMANENT"]},{"dst":"2.2.2.2","dev":"swp34","lladdr":"02:00:00:00:00:02","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"1.1.1.2","dev":"swp33","lladdr":"02:00:00:00:00:01","offload":null,"state":["PERMANENT"]},{"dst":"3.3.3.2","dev":"swp35","lladdr":"02:00:00:00:00:03","offload":null,"state":["PERMANENT"]}] INFO asyncssh:logging.py:92 [conn=102, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=102, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=39] Channel closed DEBUG infra2:Logger.py:156 ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 2.2.2.2 dev swp34 && ip neigh delete 1.1.1.2 dev swp33 && ip neigh delete 3.3.3.2 dev swp35 INFO asyncssh:logging.py:92 [conn=102, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=40] Command: ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 2.2.2.2 dev swp34 && ip neigh delete 1.1.1.2 dev swp33 && ip neigh delete 3.3.3.2 dev swp35 INFO asyncssh:logging.py:92 [conn=102, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=40] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=102, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=102, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=41] Channel closed DEBUG infra2:Logger.py:156 ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 2.2.2.2 dev swp34 && ip neigh delete 1.1.1.2 dev swp33 && ip neigh delete 3.3.3.2 dev swp35 INFO asyncssh:logging.py:92 [conn=102, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=42] Command: ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 2.2.2.2 dev swp34 && ip neigh delete 1.1.1.2 dev swp33 && ip neigh delete 3.3.3.2 dev swp35 INFO asyncssh:logging.py:92 [conn=102, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=42] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=102, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=102, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=43] Channel closed DEBUG infra2:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=102, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=44] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=102, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=44] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_replace_dyn_stat_arp from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_arp.py INFO asyncssh:logging.py:92 [conn=102, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=102, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=45] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=102, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=46] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=102, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=46] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=102, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=102, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=47] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=102, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=48] Command: date INFO asyncssh:logging.py:92 [conn=102, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=48] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 22:39:34 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=102, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=102, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=49] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=102, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=50] Command: date INFO asyncssh:logging.py:92 [conn=102, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=50] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 22:39:34 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=102, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=102, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=51] Channel closed DEBUG infra2:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 INFO asyncssh:logging.py:92 [conn=102, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=52] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 INFO asyncssh:logging.py:92 [conn=102, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=52] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=102, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=102, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=53] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=102, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=54] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=102, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=54] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"f6:33:41:29:6d:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=102, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=102, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=55] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=102, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=102, chan=56] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=102, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=102, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=102, chan=56] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_arp.py::test_ipv4_static_arp_with_traffic | 134.93 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-6113' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_static_arp_with_traffic">Starting testcase:test_ipv4_static_arp_with_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_arp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=102, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=103] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=103] Local address: 172.17.0.3, port 44808 INFO asyncssh:logging.py:92 [conn=103] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=103] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=103] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=103, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=103, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=103, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=103, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=103, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 22:39:34 UTC 2023 INFO asyncssh:logging.py:92 [conn=103, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=103, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=103, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=103, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=103, chan=1] Channel closed DEBUG infra2:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=103, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=103, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=103, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=103, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=103, chan=2] Channel closed DEBUG infra2:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=103, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=103, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=103, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=103, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=103, chan=3] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=103, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=103, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=103, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=103, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=103, chan=4] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=103, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=103, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=103, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=103, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=103, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=103, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=103, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=103, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=103, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=103, chan=6] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 22:39:35 UTC 2023 INFO asyncssh:logging.py:92 [conn=103, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=103, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=103, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=103, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=103, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=103, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=103, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=103, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=103, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=103, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=103, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=103, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=103, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=103, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=103, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=103, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=103, chan=10] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=103, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=103, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=103, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=103, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=103, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=103, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=103, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=103, chan=11] Channel closed DEBUG infra2:Logger.py:156 ip neigh add 1.1.1.2 lladdr 02:00:00:00:00:01 dev swp33 && ip neigh add 2.2.2.2 lladdr 02:00:00:00:00:02 dev swp34 && ip neigh add 3.3.3.2 lladdr 02:00:00:00:00:03 dev swp35 && ip neigh add 4.4.4.2 lladdr 02:00:00:00:00:04 dev swp36 INFO asyncssh:logging.py:92 [conn=103, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=103, chan=12] Command: ip neigh add 1.1.1.2 lladdr 02:00:00:00:00:01 dev swp33 && ip neigh add 2.2.2.2 lladdr 02:00:00:00:00:02 dev swp34 && ip neigh add 3.3.3.2 lladdr 02:00:00:00:00:03 dev swp35 && ip neigh add 4.4.4.2 lladdr 02:00:00:00:00:04 dev swp36 INFO asyncssh:logging.py:92 [conn=103, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=103, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=103, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=103, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=103, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=103, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=103, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=103, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=103, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=103, chan=14] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=103, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=103, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=103, chan=14] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"4.4.4.2","dev":"swp36","lladdr":"02:00:00:00:00:04","offload":null,"state":["PERMANENT"]},{"dst":"2.2.2.2","dev":"swp34","lladdr":"02:00:00:00:00:02","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"1.1.1.2","dev":"swp33","lladdr":"02:00:00:00:00:01","offload":null,"state":["PERMANENT"]},{"dst":"3.3.3.2","dev":"swp35","lladdr":"02:00:00:00:00:03","offload":null,"state":["PERMANENT"]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:5 <-> 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:5_1.1.1.2/24 to 10.36.118.199:2:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:7 <-> 10.36.118.199:2:8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:7_3.3.3.2/24 to 10.36.118.199:2:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f73b7370>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:5 <-> 10.36.118.199:2:6 Tx 10240 Rx 10240 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:7 <-> 10.36.118.199:2:8 Tx 10240 Rx 10240 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=103, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=103, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=103, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=103, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=103, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=103, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=103, chan=16] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=103, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=103, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=103, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"4.4.4.2","dev":"swp36","lladdr":"02:00:00:00:00:04","offload":null,"state":["PERMANENT"]},{"dst":"2.2.2.2","dev":"swp34","lladdr":"02:00:00:00:00:02","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"1.1.1.2","dev":"swp33","lladdr":"02:00:00:00:00:01","offload":null,"state":["PERMANENT"]},{"dst":"3.3.3.2","dev":"swp35","lladdr":"02:00:00:00:00:03","offload":null,"state":["PERMANENT"]}] INFO asyncssh:logging.py:92 [conn=103, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=103, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=103, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=103, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=103, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 2.2.2.2 dev swp34 && ip neigh delete 1.1.1.2 dev swp33 && ip neigh delete 3.3.3.2 dev swp35 INFO asyncssh:logging.py:92 [conn=103, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=103, chan=18] Command: ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 2.2.2.2 dev swp34 && ip neigh delete 1.1.1.2 dev swp33 && ip neigh delete 3.3.3.2 dev swp35 INFO asyncssh:logging.py:92 [conn=103, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=103, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=103, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=103, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=103, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=103, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=103, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=103, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 2.2.2.2 dev swp34 && ip neigh delete 1.1.1.2 dev swp33 && ip neigh delete 3.3.3.2 dev swp35 INFO asyncssh:logging.py:92 [conn=103, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=103, chan=20] Command: ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 2.2.2.2 dev swp34 && ip neigh delete 1.1.1.2 dev swp33 && ip neigh delete 3.3.3.2 dev swp35 INFO asyncssh:logging.py:92 [conn=103, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=103, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=103, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=103, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=103, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=103, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=103, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=103, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=103, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=103, chan=22] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=103, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=103, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=103, chan=22] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_static_arp_with_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_arp.py INFO asyncssh:logging.py:92 [conn=103, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=103, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=103, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=103, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=103, chan=23] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=103, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=103, chan=24] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=103, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=103, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=103, chan=24] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=103, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=103, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=103, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=103, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=103, chan=25] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=103, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=103, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=103, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=103, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=103, chan=26] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 22:41:49 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=103, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=103, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=103, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=103, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=103, chan=27] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=103, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=103, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=103, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=103, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=103, chan=28] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 22:41:49 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=103, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=103, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=103, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=103, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=103, chan=29] Channel closed DEBUG infra2:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 INFO asyncssh:logging.py:92 [conn=103, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=103, chan=30] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 INFO asyncssh:logging.py:92 [conn=103, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=103, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=103, chan=30] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=103, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=103, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=103, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=103, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=103, chan=31] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=103, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=103, chan=32] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=103, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=103, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=103, chan=32] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"f6:33:41:29:6d:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=103, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=103, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=103, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=103, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=103, chan=33] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=103, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=103, chan=34] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=103, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=103, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=103, chan=34] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_arp.py::test_ipv4_static_route_over_static_arp | 136.36 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-6159' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_static_route_over_static_arp">Starting testcase:test_ipv4_static_route_over_static_arp from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_arp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=103, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=104] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=104] Local address: 172.17.0.3, port 36900 INFO asyncssh:logging.py:92 [conn=104] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=104] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=104] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=104, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=104, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 22:41:49 UTC 2023 INFO asyncssh:logging.py:92 [conn=104, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=104, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=1] Channel closed DEBUG infra2:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=104, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=104, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=2] Channel closed DEBUG infra2:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=104, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=104, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=3] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=104, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=104, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=4] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=104, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=104, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=104, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=104, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=6] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 22:41:49 UTC 2023 INFO asyncssh:logging.py:92 [conn=104, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=104, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=104, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=104, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=104, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=104, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=104, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=10] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=104, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=104, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=104, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=11] Channel closed DEBUG infra2:Logger.py:156 bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=104, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=12] Command: bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=104, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=12] Channel closed DEBUG infra2:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'bridge -j vlan show dev swp33 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=104, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=104, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=104, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=14] Command: ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=104, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=14] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a5","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'ip -j address show swp33 ', 'rc': 0, 'result': '[{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a5","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO asyncssh:logging.py:92 [conn=104, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=104, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=15] Channel closed DEBUG infra2:Logger.py:156 bridge -j vlan show dev swp34 INFO asyncssh:logging.py:92 [conn=104, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=16] Command: bridge -j vlan show dev swp34 INFO asyncssh:logging.py:92 [conn=104, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=16] Channel closed DEBUG infra2:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'bridge -j vlan show dev swp34 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=104, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=104, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip -j address show swp34 INFO asyncssh:logging.py:92 [conn=104, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=18] Command: ip -j address show swp34 INFO asyncssh:logging.py:92 [conn=104, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=18] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"2.2.2.1","prefixlen":24,"scope":"global","label":"swp34","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a6","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'ip -j address show swp34 ', 'rc': 0, 'result': '[{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"2.2.2.1","prefixlen":24,"scope":"global","label":"swp34","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a6","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO asyncssh:logging.py:92 [conn=104, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=104, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip neigh add 1.1.1.2 lladdr 02:00:00:00:00:01 dev swp33 && ip neigh add 2.2.2.2 lladdr 02:00:00:00:00:02 dev swp34 INFO asyncssh:logging.py:92 [conn=104, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=20] Command: ip neigh add 1.1.1.2 lladdr 02:00:00:00:00:01 dev swp33 && ip neigh add 2.2.2.2 lladdr 02:00:00:00:00:02 dev swp34 INFO asyncssh:logging.py:92 [conn=104, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=104, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=104, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=104, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=22] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=104, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=22] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"2.2.2.2","dev":"swp34","lladdr":"02:00:00:00:00:02","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["DELAY"]},{"dst":"1.1.1.2","dev":"swp33","lladdr":"02:00:00:00:00:01","offload":null,"state":["PERMANENT"]}] INFO asyncssh:logging.py:92 [conn=104, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=104, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=23] Channel closed DEBUG infra2:Logger.py:156 ip route add 20.0.0.1 nexthop via 1.1.1.2 dev swp33 && ip route add 21.0.0.1 nexthop via 2.2.2.2 dev swp34 INFO asyncssh:logging.py:92 [conn=104, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=24] Command: ip route add 20.0.0.1 nexthop via 1.1.1.2 dev swp33 && ip route add 21.0.0.1 nexthop via 2.2.2.2 dev swp34 INFO asyncssh:logging.py:92 [conn=104, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=24] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=104, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=104, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=25] Channel closed DEBUG infra2:Logger.py:156 ip -j route show INFO asyncssh:logging.py:92 [conn=104, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=26] Command: ip -j route show INFO asyncssh:logging.py:92 [conn=104, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=26] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"1.1.1.0/24","dev":"swp33","protocol":"kernel","scope":"link","prefsrc":"1.1.1.1","flags":["rt_trap"]},{"dst":"2.2.2.0/24","dev":"swp34","protocol":"kernel","scope":"link","prefsrc":"2.2.2.1","flags":["rt_trap"]},{"dst":"3.3.3.0/24","dev":"swp35","protocol":"kernel","scope":"link","prefsrc":"3.3.3.1","flags":["rt_trap"]},{"dst":"4.4.4.0/24","dev":"swp36","protocol":"kernel","scope":"link","prefsrc":"4.4.4.1","flags":["rt_trap"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.23","flags":["rt_trap"]},{"dst":"20.0.0.1","gateway":"1.1.1.2","dev":"swp33","flags":["offload","rt_offload"]},{"dst":"21.0.0.1","gateway":"2.2.2.2","dev":"swp34","flags":["offload","rt_offload"]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:5 -> 21.0.0.1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:6 -> 20.0.0.1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:7 <-> 10.36.118.199:2:8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:7_3.3.3.2/24 to 10.36.118.199:2:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f73d6530>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:5 -> 21.0.0.1 Tx 5090 Rx 5090 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:6 -> 20.0.0.1 Tx 5090 Rx 5090 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:7 <-> 10.36.118.199:2:8 Tx 10180 Rx 10180 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=104, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=104, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=27] Channel closed DEBUG infra2:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=104, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=28] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=104, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=28] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"4.4.4.2","dev":"swp36","lladdr":"00:14:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2.2.2.2","dev":"swp34","lladdr":"02:00:00:00:00:02","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"1.1.1.2","dev":"swp33","lladdr":"02:00:00:00:00:01","offload":null,"state":["PERMANENT"]},{"dst":"3.3.3.2","dev":"swp35","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=104, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=104, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=29] Channel closed DEBUG infra2:Logger.py:156 ip route delete 20.0.0.1 nexthop via 1.1.1.2 dev swp33 && ip route delete 21.0.0.1 nexthop via 2.2.2.2 dev swp34 INFO asyncssh:logging.py:92 [conn=104, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=30] Command: ip route delete 20.0.0.1 nexthop via 1.1.1.2 dev swp33 && ip route delete 21.0.0.1 nexthop via 2.2.2.2 dev swp34 INFO asyncssh:logging.py:92 [conn=104, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=30] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=104, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=104, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=31] Channel closed DEBUG infra2:Logger.py:156 ip -j route show INFO asyncssh:logging.py:92 [conn=104, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=32] Command: ip -j route show INFO asyncssh:logging.py:92 [conn=104, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=32] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"1.1.1.0/24","dev":"swp33","protocol":"kernel","scope":"link","prefsrc":"1.1.1.1","flags":["rt_trap"]},{"dst":"2.2.2.0/24","dev":"swp34","protocol":"kernel","scope":"link","prefsrc":"2.2.2.1","flags":["rt_trap"]},{"dst":"3.3.3.0/24","dev":"swp35","protocol":"kernel","scope":"link","prefsrc":"3.3.3.1","flags":["rt_trap"]},{"dst":"4.4.4.0/24","dev":"swp36","protocol":"kernel","scope":"link","prefsrc":"4.4.4.1","flags":["rt_trap"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.23","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=104, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=104, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=33] Channel closed DEBUG infra2:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=104, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=34] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=104, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=34] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"4.4.4.2","dev":"swp36","lladdr":"00:14:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2.2.2.2","dev":"swp34","lladdr":"02:00:00:00:00:02","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"1.1.1.2","dev":"swp33","lladdr":"02:00:00:00:00:01","offload":null,"state":["PERMANENT"]},{"dst":"3.3.3.2","dev":"swp35","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=104, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=104, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=35] Channel closed DEBUG infra2:Logger.py:156 ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 2.2.2.2 dev swp34 && ip neigh delete 1.1.1.2 dev swp33 && ip neigh delete 3.3.3.2 dev swp35 INFO asyncssh:logging.py:92 [conn=104, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=36] Command: ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 2.2.2.2 dev swp34 && ip neigh delete 1.1.1.2 dev swp33 && ip neigh delete 3.3.3.2 dev swp35 INFO asyncssh:logging.py:92 [conn=104, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=36] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=104, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=104, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=37] Channel closed DEBUG infra2:Logger.py:156 ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 2.2.2.2 dev swp34 && ip neigh delete 1.1.1.2 dev swp33 && ip neigh delete 3.3.3.2 dev swp35 INFO asyncssh:logging.py:92 [conn=104, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=38] Command: ip neigh delete 4.4.4.2 dev swp36 && ip neigh delete 2.2.2.2 dev swp34 && ip neigh delete 1.1.1.2 dev swp33 && ip neigh delete 3.3.3.2 dev swp35 INFO asyncssh:logging.py:92 [conn=104, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=38] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=104, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=104, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=39] Channel closed DEBUG infra2:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=104, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=40] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=104, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=40] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_static_route_over_static_arp from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_arp.py INFO asyncssh:logging.py:92 [conn=104, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=104, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=41] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=104, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=42] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=104, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=42] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=104, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=104, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=43] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=104, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=44] Command: date INFO asyncssh:logging.py:92 [conn=104, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=44] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 22:44:05 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=104, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=104, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=45] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=104, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=46] Command: date INFO asyncssh:logging.py:92 [conn=104, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=46] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 22:44:05 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=104, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=104, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=47] Channel closed DEBUG infra2:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 INFO asyncssh:logging.py:92 [conn=104, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=48] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 INFO asyncssh:logging.py:92 [conn=104, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=48] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=104, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=104, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=49] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=104, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=50] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=104, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=50] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"f6:33:41:29:6d:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=104, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=104, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=51] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=104, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=104, chan=52] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=104, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=104, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=104, chan=52] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_arp.py::test_ipv4_arp_reachable_timeout | 147.98 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-6223' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_arp_reachable_timeout">Starting testcase:test_ipv4_arp_reachable_timeout from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_arp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=104, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=105] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=105] Local address: 172.17.0.3, port 57094 INFO asyncssh:logging.py:92 [conn=105] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=105] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=105] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=105, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=105, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 22:44:06 UTC 2023 INFO asyncssh:logging.py:92 [conn=105, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=105, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=1] Channel closed DEBUG infra2:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=105, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=105, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=2] Channel closed DEBUG infra2:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=105, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=105, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=3] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=105, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=105, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=4] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=105, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=105, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=105, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=105, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=6] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 22:44:06 UTC 2023 INFO asyncssh:logging.py:92 [conn=105, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=105, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=105, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=105, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=105, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=105, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=105, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=10] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=105, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=105, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=105, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=11] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.neigh.swp33.base_reachable_time_ms&& sysctl net.ipv4.neigh.swp34.base_reachable_time_ms&& sysctl net.ipv4.neigh.swp35.base_reachable_time_ms&& sysctl net.ipv4.neigh.swp36.base_reachable_time_ms INFO asyncssh:logging.py:92 [conn=105, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=12] Command: sysctl net.ipv4.neigh.swp33.base_reachable_time_ms&& sysctl net.ipv4.neigh.swp34.base_reachable_time_ms&& sysctl net.ipv4.neigh.swp35.base_reachable_time_ms&& sysctl net.ipv4.neigh.swp36.base_reachable_time_ms INFO asyncssh:logging.py:92 [conn=105, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=12] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.neigh.swp33.base_reachable_time_ms = 30000 net.ipv4.neigh.swp34.base_reachable_time_ms = 30000 net.ipv4.neigh.swp35.base_reachable_time_ms = 30000 net.ipv4.neigh.swp36.base_reachable_time_ms = 30000 INFO asyncssh:logging.py:92 [conn=105, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=105, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=13] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.neigh.swp33.base_reachable_time_ms=1000&& sysctl net.ipv4.neigh.swp34.base_reachable_time_ms=1000&& sysctl net.ipv4.neigh.swp35.base_reachable_time_ms=1000&& sysctl net.ipv4.neigh.swp36.base_reachable_time_ms=1000 INFO asyncssh:logging.py:92 [conn=105, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=14] Command: sysctl net.ipv4.neigh.swp33.base_reachable_time_ms=1000&& sysctl net.ipv4.neigh.swp34.base_reachable_time_ms=1000&& sysctl net.ipv4.neigh.swp35.base_reachable_time_ms=1000&& sysctl net.ipv4.neigh.swp36.base_reachable_time_ms=1000 INFO asyncssh:logging.py:92 [conn=105, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=14] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.neigh.swp33.base_reachable_time_ms = 1000 net.ipv4.neigh.swp34.base_reachable_time_ms = 1000 net.ipv4.neigh.swp35.base_reachable_time_ms = 1000 net.ipv4.neigh.swp36.base_reachable_time_ms = 1000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:5 <-> 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:5_1.1.1.2/24 to 10.36.118.199:2:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:7 <-> 10.36.118.199:2:8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:7_3.3.3.2/24 to 10.36.118.199:2:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f73d4640>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:5 <-> 10.36.118.199:2:6 Tx 10184 Rx 10184 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:7 <-> 10.36.118.199:2:8 Tx 10184 Rx 10184 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=105, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=105, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=105, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=16] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=105, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"4.4.4.2","dev":"swp36","lladdr":"00:14:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2.2.2.2","dev":"swp34","lladdr":"00:12:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["DELAY"]},{"dst":"1.1.1.2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"3.3.3.2","dev":"swp35","lladdr":"00:13:01:00:00:01","offload":null,"state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=105, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=105, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=17] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.neigh.swp33.base_reachable_time_ms=30000&& sysctl net.ipv4.neigh.swp34.base_reachable_time_ms=30000&& sysctl net.ipv4.neigh.swp35.base_reachable_time_ms=30000&& sysctl net.ipv4.neigh.swp36.base_reachable_time_ms=30000 INFO asyncssh:logging.py:92 [conn=105, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=18] Command: sysctl net.ipv4.neigh.swp33.base_reachable_time_ms=30000&& sysctl net.ipv4.neigh.swp34.base_reachable_time_ms=30000&& sysctl net.ipv4.neigh.swp35.base_reachable_time_ms=30000&& sysctl net.ipv4.neigh.swp36.base_reachable_time_ms=30000 INFO asyncssh:logging.py:92 [conn=105, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=18] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.neigh.swp33.base_reachable_time_ms = 30000 net.ipv4.neigh.swp34.base_reachable_time_ms = 30000 net.ipv4.neigh.swp35.base_reachable_time_ms = 30000 net.ipv4.neigh.swp36.base_reachable_time_ms = 30000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f73d6b90>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:5 <-> 10.36.118.199:2:6 Tx 11866 Rx 11866 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:7 <-> 10.36.118.199:2:8 Tx 11866 Rx 11866 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=105, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=105, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=105, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=20] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=105, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=20] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"4.4.4.2","dev":"swp36","lladdr":"00:14:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2.2.2.2","dev":"swp34","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"1.1.1.2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"3.3.3.2","dev":"swp35","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_arp_reachable_timeout from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_arp.py INFO asyncssh:logging.py:92 [conn=105, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=105, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=21] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=105, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=22] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=105, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=22] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=105, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=105, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=23] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=105, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=105, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=24] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 22:46:33 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=105, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=105, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=25] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=105, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=105, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=26] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 22:46:33 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=105, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=105, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=27] Channel closed DEBUG infra2:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 INFO asyncssh:logging.py:92 [conn=105, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=28] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 INFO asyncssh:logging.py:92 [conn=105, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=28] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=105, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=105, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=29] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=105, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=30] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=105, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=30] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"f6:33:41:29:6d:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=105, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=105, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=31] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=105, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=105, chan=32] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=105, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=105, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=105, chan=32] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_arp.py::test_ipv4_arp_ageing | 218.96 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-6267' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_arp_ageing">Starting testcase:test_ipv4_arp_ageing from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_arp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=105, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=106] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=106] Local address: 172.17.0.3, port 42744 INFO asyncssh:logging.py:92 [conn=106] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=106] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=106] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=106, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=106, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=106, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=106, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=106, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 22:46:34 UTC 2023 INFO asyncssh:logging.py:92 [conn=106, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=106, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=106, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=106, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=106, chan=1] Channel closed DEBUG infra2:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=106, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=106, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=106, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=106, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=106, chan=2] Channel closed DEBUG infra2:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=106, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=106, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=106, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=106, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=106, chan=3] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=106, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=106, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=106, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=106, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=106, chan=4] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=106, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=106, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=106, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=106, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=106, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=106, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=106, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=106, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=106, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=106, chan=6] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 22:46:34 UTC 2023 INFO asyncssh:logging.py:92 [conn=106, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=106, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=106, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=106, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=106, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=106, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=106, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=106, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=106, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=106, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=106, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=106, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=106, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=106, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=106, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=106, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=106, chan=10] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=106, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=106, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=106, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=106, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=106, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=106, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=106, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=106, chan=11] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.neigh.default.gc_thresh1&& sysctl net.ipv4.neigh.default.gc_stale_time INFO asyncssh:logging.py:92 [conn=106, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=106, chan=12] Command: sysctl net.ipv4.neigh.default.gc_thresh1&& sysctl net.ipv4.neigh.default.gc_stale_time INFO asyncssh:logging.py:92 [conn=106, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=106, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=106, chan=12] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.neigh.default.gc_thresh1 = 128 net.ipv4.neigh.default.gc_stale_time = 60 INFO asyncssh:logging.py:92 [conn=106, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=106, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=106, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=106, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=106, chan=13] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.neigh.default.gc_thresh1=0&& sysctl net.ipv4.neigh.default.gc_stale_time=1 INFO asyncssh:logging.py:92 [conn=106, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=106, chan=14] Command: sysctl net.ipv4.neigh.default.gc_thresh1=0&& sysctl net.ipv4.neigh.default.gc_stale_time=1 INFO asyncssh:logging.py:92 [conn=106, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=106, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=106, chan=14] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.neigh.default.gc_thresh1 = 0 net.ipv4.neigh.default.gc_stale_time = 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:5 <-> 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:5_1.1.1.2/24 to 10.36.118.199:2:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:7 <-> 10.36.118.199:2:8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:7_3.3.3.2/24 to 10.36.118.199:2:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f6f97910>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:5 <-> 10.36.118.199:2:6 Tx 10126 Rx 10126 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:7 <-> 10.36.118.199:2:8 Tx 10126 Rx 10126 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=106, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=106, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=106, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=106, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=106, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=106, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=106, chan=16] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=106, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=106, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=106, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["DELAY"]}] INFO asyncssh:logging.py:92 [conn=106, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=106, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=106, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=106, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=106, chan=17] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.neigh.default.gc_thresh1=128&& sysctl net.ipv4.neigh.default.gc_stale_time=60 INFO asyncssh:logging.py:92 [conn=106, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=106, chan=18] Command: sysctl net.ipv4.neigh.default.gc_thresh1=128&& sysctl net.ipv4.neigh.default.gc_stale_time=60 INFO asyncssh:logging.py:92 [conn=106, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=106, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=106, chan=18] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.neigh.default.gc_thresh1 = 128 net.ipv4.neigh.default.gc_stale_time = 60 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_arp_ageing from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_arp.py INFO asyncssh:logging.py:92 [conn=106, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=106, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=106, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=106, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=106, chan=19] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=106, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=106, chan=20] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=106, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=106, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=106, chan=20] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=106, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=106, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=106, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=106, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=106, chan=21] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=106, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=106, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=106, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=106, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=106, chan=22] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 22:50:12 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=106, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=106, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=106, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=106, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=106, chan=23] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=106, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=106, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=106, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=106, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=106, chan=24] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 22:50:12 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=106, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=106, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=106, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=106, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=106, chan=25] Channel closed DEBUG infra2:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 INFO asyncssh:logging.py:92 [conn=106, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=106, chan=26] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 INFO asyncssh:logging.py:92 [conn=106, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=106, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=106, chan=26] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=106, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=106, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=106, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=106, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=106, chan=27] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=106, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=106, chan=28] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=106, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=106, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=106, chan=28] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"f6:33:41:29:6d:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=106, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=106, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=106, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=106, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=106, chan=29] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=106, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=106, chan=30] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=106, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=106, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=106, chan=30] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_best_match.py::test_ipv4_bm_traffic_forwarding | 123.79 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-6309' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_bm_traffic_forwarding">Starting testcase:test_ipv4_bm_traffic_forwarding from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_best_match.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=106, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=107] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=107] Local address: 172.17.0.3, port 58870 INFO asyncssh:logging.py:92 [conn=107] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=107] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=107] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=107, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=107, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 22:50:13 UTC 2023 INFO asyncssh:logging.py:92 [conn=107, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=107, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=1] Channel closed DEBUG infra2:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=107, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=107, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=2] Channel closed DEBUG infra2:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=107, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=107, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=3] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=107, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=107, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=4] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=107, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=107, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=107, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=107, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=6] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 22:50:13 UTC 2023 INFO asyncssh:logging.py:92 [conn=107, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=107, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=7] Channel closed DEBUG infra2:Logger.py:156 bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=107, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=8] Command: bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=107, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=8] Channel closed DEBUG infra2:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'bridge -j vlan show dev swp33 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=107, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=107, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=107, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=10] Command: ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=107, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=10] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'ip -j address show swp33 ', 'rc': 0, 'result': '[{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}]\n'}}] INFO DENT:Logger.py:84 [DENT infrastructure 2] Cannot find the Vlan GW IP address INFO asyncssh:logging.py:92 [conn=107, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=107, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=11] Channel closed DEBUG infra2:Logger.py:156 bridge -j vlan show dev swp34 INFO asyncssh:logging.py:92 [conn=107, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=12] Command: bridge -j vlan show dev swp34 INFO asyncssh:logging.py:92 [conn=107, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=12] Channel closed DEBUG infra2:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'bridge -j vlan show dev swp34 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=107, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=107, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip -j address show swp34 INFO asyncssh:logging.py:92 [conn=107, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=14] Command: ip -j address show swp34 INFO asyncssh:logging.py:92 [conn=107, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=14] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'ip -j address show swp34 ', 'rc': 0, 'result': '[{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}]\n'}}] INFO DENT:Logger.py:84 [DENT infrastructure 2] Cannot find the Vlan GW IP address INFO asyncssh:logging.py:92 [conn=107, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=107, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up INFO asyncssh:logging.py:92 [conn=107, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=16] Command: ip link set dev swp33 up && ip link set dev swp34 up INFO asyncssh:logging.py:92 [conn=107, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=107, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=107, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip address add 192.168.1.1/24 dev swp34 INFO asyncssh:logging.py:92 [conn=107, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=18] Command: ip address add 192.168.1.1/24 dev swp34 INFO asyncssh:logging.py:92 [conn=107, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_20.1.1.2/24', 'count': 1, 'ip': '20.1.1.2', 'gw': '20.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_192.168.1.3/24', 'count': 1, 'ip': '192.168.1.3', 'gw': '192.168.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=107, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=107, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip address add 20.1.1.1/24 dev swp33 metric 20 && ip address add 20.1.1.1/24 dev lo metric 10 INFO asyncssh:logging.py:92 [conn=107, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=20] Command: ip address add 20.1.1.1/24 dev swp33 metric 20 && ip address add 20.1.1.1/24 dev lo metric 10 INFO asyncssh:logging.py:92 [conn=107, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=107, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=107, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip -j route show INFO asyncssh:logging.py:92 [conn=107, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=22] Command: ip -j route show INFO asyncssh:logging.py:92 [conn=107, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=22] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.23","flags":["rt_trap"]},{"dst":"20.1.1.0/24","dev":"swp33","protocol":"kernel","scope":"link","prefsrc":"20.1.1.1","metric":20,"flags":[]},{"dst":"192.168.1.0/24","dev":"swp34","protocol":"kernel","scope":"link","prefsrc":"192.168.1.1","flags":["rt_trap"]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:6 -> 10.36.118.199:2:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_20.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_192.168.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f6f94df0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:6 -> 10.36.118.199:2:5 Tx 6015 Rx 0 Frames Delta 6015 Loss 100.000 INFO asyncssh:logging.py:92 [conn=107, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=107, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=23] Channel closed DEBUG infra2:Logger.py:156 ip address delete 20.1.1.1/24 dev lo INFO asyncssh:logging.py:92 [conn=107, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=24] Command: ip address delete 20.1.1.1/24 dev lo INFO asyncssh:logging.py:92 [conn=107, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=24] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=107, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=107, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=25] Channel closed DEBUG infra2:Logger.py:156 ip -j route show INFO asyncssh:logging.py:92 [conn=107, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=26] Command: ip -j route show INFO asyncssh:logging.py:92 [conn=107, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=26] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.23","flags":["rt_trap"]},{"dst":"20.1.1.0/24","dev":"swp33","protocol":"kernel","scope":"link","prefsrc":"20.1.1.1","metric":20,"flags":["rt_trap"]},{"dst":"192.168.1.0/24","dev":"swp34","protocol":"kernel","scope":"link","prefsrc":"192.168.1.1","flags":["rt_trap"]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f6f956c0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:6 -> 10.36.118.199:2:5 Tx 5984 Rx 5984 Frames Delta 0 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_bm_traffic_forwarding from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_best_match.py INFO asyncssh:logging.py:92 [conn=107, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=107, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=27] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=107, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=28] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=107, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=28] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=107, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=107, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=29] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=107, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=107, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=30] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 22:52:14 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=107, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=107, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=31] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=107, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=107, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=32] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 22:52:16 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=107, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=107, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=33] Channel closed DEBUG infra2:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 INFO asyncssh:logging.py:92 [conn=107, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=34] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 INFO asyncssh:logging.py:92 [conn=107, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=34] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=107, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=107, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=35] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=107, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=36] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=107, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=36] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"f6:33:41:29:6d:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=107, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=107, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=37] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=107, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=107, chan=38] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=107, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=107, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=107, chan=38] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_class_x_discarded.py::test_ipv4_class_a_dis | 108.30 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-6359' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_class_a_dis">Starting testcase:test_ipv4_class_a_dis from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_class_x_discarded.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=107, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=108] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=108] Local address: 172.17.0.3, port 41062 INFO asyncssh:logging.py:92 [conn=108] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=108] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=108] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=108, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=108, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 22:52:17 UTC 2023 INFO asyncssh:logging.py:92 [conn=108, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=108, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=1] Channel closed DEBUG infra2:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=108, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=108, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=2] Channel closed DEBUG infra2:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=108, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=108, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=3] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=108, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=108, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=4] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=108, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=108, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=108, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=108, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=6] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 22:52:17 UTC 2023 INFO asyncssh:logging.py:92 [conn=108, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=108, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=108, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=108, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=108, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=108, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip address add 1.1.1.1/8 dev swp33 && ip address add 0.0.0.1/8 dev swp34 INFO asyncssh:logging.py:92 [conn=108, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=10] Command: ip address add 1.1.1.1/8 dev swp33 && ip address add 0.0.0.1/8 dev swp34 INFO asyncssh:logging.py:92 [conn=108, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/8', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 8, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_0.0.0.2/8', 'count': 1, 'ip': '0.0.0.2', 'gw': '0.0.0.1', 'plen': 8, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:5 -> 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:5_1.1.1.2/8 to 10.36.118.199:2:6_0.0.0.2/8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_0.0.0.2/8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f6f97640>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5 -> 10.36.118.199:2:6 SIP-DIP 1.1.1.2-0.0.0.2 Tx 6026 Rx 0 Loss 100.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_class_a_dis from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_class_x_discarded.py INFO asyncssh:logging.py:92 [conn=108, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=108, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=11] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=108, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=12] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=108, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=12] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=108, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=108, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=108, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=108, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=14] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 22:54:04 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=108, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=108, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=15] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=108, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=108, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=16] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 22:54:04 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=108, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=108, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 INFO asyncssh:logging.py:92 [conn=108, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=18] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 INFO asyncssh:logging.py:92 [conn=108, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=108, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=108, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=108, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=20] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=108, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=20] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"f6:33:41:29:6d:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=108, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=108, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=108, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=108, chan=22] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=108, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=108, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=108, chan=22] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_class_x_discarded.py::test_ipv4_class_b_dis | 110.37 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-6393' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_class_b_dis">Starting testcase:test_ipv4_class_b_dis from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_class_x_discarded.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=108, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=109] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=109] Local address: 172.17.0.3, port 59430 INFO asyncssh:logging.py:92 [conn=109] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=109] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=109] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=109, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=109, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 22:54:05 UTC 2023 INFO asyncssh:logging.py:92 [conn=109, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=109, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=1] Channel closed DEBUG infra2:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=109, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=109, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=2] Channel closed DEBUG infra2:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=109, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=109, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=3] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=109, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=109, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=4] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=109, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=109, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=109, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=109, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=6] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 22:54:05 UTC 2023 INFO asyncssh:logging.py:92 [conn=109, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=109, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=109, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=109, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=109, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=109, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip address add 128.1.1.1/16 dev swp33 && ip address add 191.255.1.1/16 dev swp34 INFO asyncssh:logging.py:92 [conn=109, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=10] Command: ip address add 128.1.1.1/16 dev swp33 && ip address add 191.255.1.1/16 dev swp34 INFO asyncssh:logging.py:92 [conn=109, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_128.1.1.2/16', 'count': 1, 'ip': '128.1.1.2', 'gw': '128.1.1.1', 'plen': 16, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_191.255.1.2/16', 'count': 1, 'ip': '191.255.1.2', 'gw': '191.255.1.1', 'plen': 16, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:5 -> 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:5_128.1.1.2/16 to 10.36.118.199:2:6_191.255.1.2/16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_128.1.1.2/16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_191.255.1.2/16 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f6f94d60>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5 -> 10.36.118.199:2:6 SIP-DIP 128.1.1.2-191.255.1.2 Tx 6009 Rx 6009 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_class_b_dis from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_class_x_discarded.py INFO asyncssh:logging.py:92 [conn=109, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=109, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=11] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=109, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=12] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=109, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=12] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=109, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=109, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=109, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=109, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=14] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 22:55:55 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=109, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=109, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=15] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=109, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=109, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=16] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 22:55:55 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=109, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=109, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 INFO asyncssh:logging.py:92 [conn=109, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=18] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 INFO asyncssh:logging.py:92 [conn=109, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=109, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=109, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=109, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=20] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=109, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=20] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"f6:33:41:29:6d:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=109, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=109, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=109, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=109, chan=22] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=109, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=109, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=109, chan=22] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_class_x_discarded.py::test_ipv4_class_c_dis | 112.14 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-6427' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_class_c_dis">Starting testcase:test_ipv4_class_c_dis from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_class_x_discarded.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=109, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=110] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=110] Local address: 172.17.0.3, port 49524 INFO asyncssh:logging.py:92 [conn=110] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=110] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=110] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=110, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=110, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 22:55:55 UTC 2023 INFO asyncssh:logging.py:92 [conn=110, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=110, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=1] Channel closed DEBUG infra2:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=110, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=110, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=2] Channel closed DEBUG infra2:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=110, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=110, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=3] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=110, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=110, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=4] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=110, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=110, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=110, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=110, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=6] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 22:55:55 UTC 2023 INFO asyncssh:logging.py:92 [conn=110, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=110, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=110, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=110, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=110, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=110, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip address add 192.1.1.1/24 dev swp33 && ip address add 223.255.255.1/24 dev swp34 INFO asyncssh:logging.py:92 [conn=110, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=10] Command: ip address add 192.1.1.1/24 dev swp33 && ip address add 223.255.255.1/24 dev swp34 INFO asyncssh:logging.py:92 [conn=110, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_192.1.1.2/24', 'count': 1, 'ip': '192.1.1.2', 'gw': '192.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_223.255.255.2/24', 'count': 1, 'ip': '223.255.255.2', 'gw': '223.255.255.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:5 -> 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:5_192.1.1.2/24 to 10.36.118.199:2:6_223.255.255.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_192.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_223.255.255.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f6f97190>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5 -> 10.36.118.199:2:6 SIP-DIP 192.1.1.2-223.255.255.2 Tx 5985 Rx 5985 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_class_c_dis from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_class_x_discarded.py INFO asyncssh:logging.py:92 [conn=110, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=110, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=11] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=110, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=12] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=110, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=12] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=110, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=110, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=110, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=110, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=14] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 22:57:47 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=110, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=110, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=15] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=110, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=110, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=16] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 22:57:47 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=110, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=110, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 INFO asyncssh:logging.py:92 [conn=110, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=18] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 INFO asyncssh:logging.py:92 [conn=110, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=110, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=110, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=110, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=20] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=110, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=20] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"f6:33:41:29:6d:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=110, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=110, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=110, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=110, chan=22] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=110, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=110, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=110, chan=22] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_class_x_discarded.py::test_ipv4_class_d_dis | 0.72 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-6461' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_class_d_dis">Starting testcase:test_ipv4_class_d_dis from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_class_x_discarded.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=110, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=111] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=111] Local address: 172.17.0.3, port 57446 INFO asyncssh:logging.py:92 [conn=111] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=111] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=111] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=111, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 22:57:47 UTC 2023 INFO asyncssh:logging.py:92 [conn=111, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=1] Channel closed DEBUG infra2:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=111, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=111, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=2] Channel closed DEBUG infra2:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=111, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=3] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=111, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=111, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=4] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=111, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=111, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=6] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 22:57:47 UTC 2023 INFO asyncssh:logging.py:92 [conn=111, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip address add 224.0.0.1/8 dev swp33 INFO asyncssh:logging.py:92 [conn=111, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=8] Command: ip address add 224.0.0.1/8 dev swp33 INFO asyncssh:logging.py:92 [conn=111, chan=8] Received exit status 2 INFO asyncssh:logging.py:92 [conn=111, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=8] Channel closed DEBUG infra2:Logger.py:156 RTNETLINK answers: Invalid argument -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_class_d_dis from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_class_x_discarded.py INFO asyncssh:logging.py:92 [conn=111, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=9] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=111, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=10] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=111, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=10] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=111, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=11] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=111, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=12] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 22:57:48 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=111, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=111, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=14] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 22:57:48 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=111, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 INFO asyncssh:logging.py:92 [conn=111, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=16] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 INFO asyncssh:logging.py:92 [conn=111, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=111, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=111, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=18] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=111, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=18] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"f6:33:41:29:6d:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=111, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=111, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 down && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=111, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=111, chan=20] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 down && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=111, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=111, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=111, chan=20] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_class_x_discarded.py::test_ipv4_class_e_dis | 107.72 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-6493' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_class_e_dis">Starting testcase:test_ipv4_class_e_dis from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_class_x_discarded.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=111, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=112] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=112] Local address: 172.17.0.3, port 57452 INFO asyncssh:logging.py:92 [conn=112] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=112] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=112] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=112, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 22:57:48 UTC 2023 INFO asyncssh:logging.py:92 [conn=112, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=1] Channel closed DEBUG infra2:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=112, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=112, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=2] Channel closed DEBUG infra2:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=112, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=3] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=112, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=112, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=4] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=112, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=112, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=6] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 22:57:48 UTC 2023 INFO asyncssh:logging.py:92 [conn=112, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=112, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=112, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=112, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip address add 240.0.0.0/32 dev swp33 && ip address add 223.255.254.1/32 dev swp34 INFO asyncssh:logging.py:92 [conn=112, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=10] Command: ip address add 240.0.0.0/32 dev swp33 && ip address add 223.255.254.1/32 dev swp34 INFO asyncssh:logging.py:92 [conn=112, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_240.0.0.1/32', 'count': 1, 'ip': '240.0.0.1', 'gw': '240.0.0.0', 'plen': 32, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_223.255.254.2/32', 'count': 1, 'ip': '223.255.254.2', 'gw': '223.255.254.1', 'plen': 32, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:5 -> 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:5_240.0.0.1/32 to 10.36.118.199:2:6_223.255.254.2/32 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_240.0.0.1/32 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_223.255.254.2/32 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f73d7760>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5 -> 10.36.118.199:2:6 SIP-DIP 240.0.0.1-223.255.254.2 Tx 5988 Rx 0 Loss 100.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_class_e_dis from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_class_x_discarded.py INFO asyncssh:logging.py:92 [conn=112, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=11] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=112, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=12] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=112, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=12] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=112, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=112, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=14] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 22:59:35 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=112, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=15] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=112, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=16] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 22:59:35 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=112, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 INFO asyncssh:logging.py:92 [conn=112, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=18] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 INFO asyncssh:logging.py:92 [conn=112, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=112, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=112, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=20] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=112, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=20] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"f6:33:41:29:6d:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=112, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=112, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=112, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=112, chan=22] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=112, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=112, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=112, chan=22] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_crc.py::test_ipv4_checksum | 133.67 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-6527' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_checksum">Starting testcase:test_ipv4_checksum from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_crc.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=112, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=113] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=113] Local address: 172.17.0.3, port 56772 INFO asyncssh:logging.py:92 [conn=113] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=113] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=113] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=113, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 22:59:36 UTC 2023 INFO asyncssh:logging.py:92 [conn=113, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=1] Channel closed DEBUG infra2:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=113, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=113, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=2] Channel closed DEBUG infra2:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=113, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=3] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=113, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=113, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=4] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=113, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=113, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=6] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 22:59:36 UTC 2023 INFO asyncssh:logging.py:92 [conn=113, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=113, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=113, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=113, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=113, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=10] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=113, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:5 <-> 10.36.118.199:2:6 bad crc INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:5_1.1.1.2/24 to 10.36.118.199:2:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:7 <-> 10.36.118.199:2:8 good crc INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:7_3.3.3.2/24 to 10.36.118.199:2:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=113, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=11] Channel closed DEBUG infra2:Logger.py:156 ethtool -S swp33 INFO asyncssh:logging.py:92 [conn=113, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=12] Command: ethtool -S swp33 INFO asyncssh:logging.py:92 [conn=113, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=12] Channel closed DEBUG infra2:Logger.py:156 NIC statistics: good_octets_received: 112459905179 bad_octets_received: 22992021 mac_trans_error: 0 broadcast_frames_received: 12734622 multicast_frames_received: 24855439 frames_64_octets: 2043 frames_65_to_127_octets: 2151400 frames_128_to_255_octets: 134741435 frames_256_to_511_octets: 67904370 frames_512_to_1023_octets: 62910098 frames_1024_to_max_octets: 16731717 excessive_collision: 0 multicast_frames_sent: 2953 broadcast_frames_sent: 1174 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 13723 fragments: 12036 oversize: 13989 jabber: 0 rx_error_frame_received: 0 bad_crc: 6809 collisions: 1 late_collision: 0 unicast_frames_received: 242653247 unicast_frames_sent: 4186819 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 2147214627 INFO asyncssh:logging.py:92 [conn=113, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=13] Channel closed DEBUG infra2:Logger.py:156 ethtool -S swp34 INFO asyncssh:logging.py:92 [conn=113, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=14] Command: ethtool -S swp34 INFO asyncssh:logging.py:92 [conn=113, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=14] Channel closed DEBUG infra2:Logger.py:156 NIC statistics: good_octets_received: 9281404131 bad_octets_received: 22895742 mac_trans_error: 0 broadcast_frames_received: 3466559 multicast_frames_received: 4711528 frames_64_octets: 2077 frames_65_to_127_octets: 1313231 frames_128_to_255_octets: 20136657 frames_256_to_511_octets: 5199524 frames_512_to_1023_octets: 12760884 frames_1024_to_max_octets: 3451280 excessive_collision: 0 multicast_frames_sent: 6745064 broadcast_frames_sent: 10497 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 13723 fragments: 13562 oversize: 13989 jabber: 0 rx_error_frame_received: 0 bad_crc: 6611 collisions: 0 late_collision: 0 unicast_frames_received: 18291444 unicast_frames_sent: 9631950 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 6555732138 INFO asyncssh:logging.py:92 [conn=113, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=15] Channel closed DEBUG infra2:Logger.py:156 ethtool -S swp35 INFO asyncssh:logging.py:92 [conn=113, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=16] Command: ethtool -S swp35 INFO asyncssh:logging.py:92 [conn=113, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=16] Channel closed DEBUG infra2:Logger.py:156 NIC statistics: good_octets_received: 6250237670 bad_octets_received: 22087192 mac_trans_error: 0 broadcast_frames_received: 1804038 multicast_frames_received: 2452476 frames_64_octets: 1166 frames_65_to_127_octets: 1306195 frames_128_to_255_octets: 10481352 frames_256_to_511_octets: 1222 frames_512_to_1023_octets: 9308598 frames_1024_to_max_octets: 2799631 excessive_collision: 0 multicast_frames_sent: 6540828 broadcast_frames_sent: 5404 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 13723 fragments: 0 oversize: 13989 jabber: 0 rx_error_frame_received: 0 bad_crc: 0 collisions: 0 late_collision: 0 unicast_frames_received: 10378209 unicast_frames_sent: 2717209 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 4188765002 INFO asyncssh:logging.py:92 [conn=113, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=17] Channel closed DEBUG infra2:Logger.py:156 ethtool -S swp36 INFO asyncssh:logging.py:92 [conn=113, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=18] Command: ethtool -S swp36 INFO asyncssh:logging.py:92 [conn=113, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=18] Channel closed DEBUG infra2:Logger.py:156 NIC statistics: good_octets_received: 5578965222 bad_octets_received: 22087192 mac_trans_error: 0 broadcast_frames_received: 1804022 multicast_frames_received: 2452476 frames_64_octets: 1160 frames_65_to_127_octets: 1306146 frames_128_to_255_octets: 10481351 frames_256_to_511_octets: 1207 frames_512_to_1023_octets: 9099979 frames_1024_to_max_octets: 2799631 excessive_collision: 0 multicast_frames_sent: 6332554 broadcast_frames_sent: 5421 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 13723 fragments: 0 oversize: 13989 jabber: 0 rx_error_frame_received: 0 bad_crc: 0 collisions: 0 late_collision: 0 unicast_frames_received: 9067132 unicast_frames_sent: 4027869 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 4753214324 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=113, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=19] Channel closed DEBUG infra2:Logger.py:156 ethtool -S swp33 INFO asyncssh:logging.py:92 [conn=113, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=20] Command: ethtool -S swp33 INFO asyncssh:logging.py:92 [conn=113, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=20] Channel closed DEBUG infra2:Logger.py:156 NIC statistics: good_octets_received: 112459905179 bad_octets_received: 25683093 mac_trans_error: 0 broadcast_frames_received: 12734622 multicast_frames_received: 24855439 frames_64_octets: 2043 frames_65_to_127_octets: 2151401 frames_128_to_255_octets: 134741436 frames_256_to_511_octets: 67904370 frames_512_to_1023_octets: 62915354 frames_1024_to_max_octets: 16731717 excessive_collision: 0 multicast_frames_sent: 2955 broadcast_frames_sent: 1174 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 13723 fragments: 12036 oversize: 13989 jabber: 0 rx_error_frame_received: 0 bad_crc: 12065 collisions: 1 late_collision: 0 unicast_frames_received: 242653247 unicast_frames_sent: 4186819 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 2147214949 INFO asyncssh:logging.py:92 [conn=113, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=21] Channel closed DEBUG infra2:Logger.py:156 ethtool -S swp34 INFO asyncssh:logging.py:92 [conn=113, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=22] Command: ethtool -S swp34 INFO asyncssh:logging.py:92 [conn=113, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=22] Channel closed DEBUG infra2:Logger.py:156 NIC statistics: good_octets_received: 9281404131 bad_octets_received: 25586814 mac_trans_error: 0 broadcast_frames_received: 3466559 multicast_frames_received: 4711528 frames_64_octets: 2077 frames_65_to_127_octets: 1313232 frames_128_to_255_octets: 20136658 frames_256_to_511_octets: 5199524 frames_512_to_1023_octets: 12766140 frames_1024_to_max_octets: 3451280 excessive_collision: 0 multicast_frames_sent: 6745066 broadcast_frames_sent: 10497 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 13723 fragments: 13562 oversize: 13989 jabber: 0 rx_error_frame_received: 0 bad_crc: 11867 collisions: 0 late_collision: 0 unicast_frames_received: 18291444 unicast_frames_sent: 9631950 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 6555732460 INFO asyncssh:logging.py:92 [conn=113, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=23] Channel closed DEBUG infra2:Logger.py:156 ethtool -S swp35 INFO asyncssh:logging.py:92 [conn=113, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=24] Command: ethtool -S swp35 INFO asyncssh:logging.py:92 [conn=113, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=24] Channel closed DEBUG infra2:Logger.py:156 NIC statistics: good_octets_received: 6252928806 bad_octets_received: 22087192 mac_trans_error: 0 broadcast_frames_received: 1804038 multicast_frames_received: 2452476 frames_64_octets: 1168 frames_65_to_127_octets: 1306196 frames_128_to_255_octets: 10481352 frames_256_to_511_octets: 1222 frames_512_to_1023_octets: 9319110 frames_1024_to_max_octets: 2799631 excessive_collision: 0 multicast_frames_sent: 6540829 broadcast_frames_sent: 5404 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 13723 fragments: 0 oversize: 13989 jabber: 0 rx_error_frame_received: 0 bad_crc: 0 collisions: 0 late_collision: 0 unicast_frames_received: 10383466 unicast_frames_sent: 2722466 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 4191456212 INFO asyncssh:logging.py:92 [conn=113, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=25] Channel closed DEBUG infra2:Logger.py:156 ethtool -S swp36 INFO asyncssh:logging.py:92 [conn=113, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=26] Command: ethtool -S swp36 INFO asyncssh:logging.py:92 [conn=113, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=26] Channel closed DEBUG infra2:Logger.py:156 NIC statistics: good_octets_received: 5581656358 bad_octets_received: 22087192 mac_trans_error: 0 broadcast_frames_received: 1804022 multicast_frames_received: 2452476 frames_64_octets: 1162 frames_65_to_127_octets: 1306147 frames_128_to_255_octets: 10481351 frames_256_to_511_octets: 1207 frames_512_to_1023_octets: 9110491 frames_1024_to_max_octets: 2799631 excessive_collision: 0 multicast_frames_sent: 6332555 broadcast_frames_sent: 5421 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 13723 fragments: 0 oversize: 13989 jabber: 0 rx_error_frame_received: 0 bad_crc: 0 collisions: 0 late_collision: 0 unicast_frames_received: 9072389 unicast_frames_sent: 4033126 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 4755905534 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f73477f0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:6 bad crc SIP-DIP 1.1.1.2-2.2.2.2 Tx 5256 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:6 bad crc SIP-DIP 2.2.2.2-1.1.1.2 Tx 5256 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:8 TI 10.36.118.199:2:7 <-> 10.36.118.199:2:8 good crc SIP-DIP 3.3.3.2-4.4.4.2 Tx 5256 Rx 5256 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:8 Rx 10.36.118.199:2:7 TI 10.36.118.199:2:7 <-> 10.36.118.199:2:8 good crc SIP-DIP 4.4.4.2-3.3.3.2 Tx 5256 Rx 5256 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_checksum from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_crc.py INFO asyncssh:logging.py:92 [conn=113, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=27] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=113, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=28] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=113, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=28] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=113, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=29] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=113, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=30] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 23:01:49 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=113, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=31] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=113, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=32] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 23:01:49 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=113, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=33] Channel closed DEBUG infra2:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 INFO asyncssh:logging.py:92 [conn=113, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=34] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 INFO asyncssh:logging.py:92 [conn=113, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=34] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=113, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=35] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=113, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=36] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=113, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=36] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"f6:33:41:29:6d:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=113, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=113, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=37] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=113, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=113, chan=38] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=113, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=113, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=113, chan=38] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_en_dis_fwd.py::test_ipv4_en_dis_fwd | 149.10 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-6577' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_en_dis_fwd">Starting testcase:test_ipv4_en_dis_fwd from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_en_dis_fwd.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=113, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=114] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=114] Local address: 172.17.0.3, port 60342 INFO asyncssh:logging.py:92 [conn=114] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=114] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=114] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=114, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 23:01:49 UTC 2023 INFO asyncssh:logging.py:92 [conn=114, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=1] Channel closed DEBUG infra2:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=114, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=114, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=2] Channel closed DEBUG infra2:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=114, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=3] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=114, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=114, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=4] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=114, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=114, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=6] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 23:01:50 UTC 2023 INFO asyncssh:logging.py:92 [conn=114, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=114, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=114, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=114, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=114, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=10] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=114, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:5 <-> 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:5_1.1.1.2/24 to 10.36.118.199:2:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:7 <-> 10.36.118.199:2:8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:7_3.3.3.2/24 to 10.36.118.199:2:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f73d5d80>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:6 SIP-DIP 1.1.1.2-2.2.2.2 Tx 5100 Rx 5100 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:6 SIP-DIP 2.2.2.2-1.1.1.2 Tx 5100 Rx 5100 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:8 TI 10.36.118.199:2:7 <-> 10.36.118.199:2:8 SIP-DIP 3.3.3.2-4.4.4.2 Tx 5100 Rx 5100 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:8 Rx 10.36.118.199:2:7 TI 10.36.118.199:2:7 <-> 10.36.118.199:2:8 SIP-DIP 4.4.4.2-3.3.3.2 Tx 5100 Rx 5100 Loss 0.000 INFO asyncssh:logging.py:92 [conn=114, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=11] Channel closed DEBUG infra2:Logger.py:156 sysctl -n net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=114, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=12] Command: sysctl -n net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=114, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=12] Channel closed DEBUG infra2:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=114, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip neigh flush dev swp33 && ip neigh flush dev swp34 && ip neigh flush dev swp35 && ip neigh flush dev swp36 && ip neigh flush dev swp33 && ip neigh flush dev swp34 && ip neigh flush dev swp35 && ip neigh flush dev swp36 INFO asyncssh:logging.py:92 [conn=114, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=14] Command: ip neigh flush dev swp33 && ip neigh flush dev swp34 && ip neigh flush dev swp35 && ip neigh flush dev swp36 && ip neigh flush dev swp33 && ip neigh flush dev swp34 && ip neigh flush dev swp35 && ip neigh flush dev swp36 INFO asyncssh:logging.py:92 [conn=114, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f73d40a0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:6 SIP-DIP 1.1.1.2-2.2.2.2 Tx 5933 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:6 SIP-DIP 2.2.2.2-1.1.1.2 Tx 5933 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:8 TI 10.36.118.199:2:7 <-> 10.36.118.199:2:8 SIP-DIP 3.3.3.2-4.4.4.2 Tx 5933 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:8 Rx 10.36.118.199:2:7 TI 10.36.118.199:2:7 <-> 10.36.118.199:2:8 SIP-DIP 4.4.4.2-3.3.3.2 Tx 5933 Rx 0 Loss 100.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_en_dis_fwd from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_en_dis_fwd.py INFO asyncssh:logging.py:92 [conn=114, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=15] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=114, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=16] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=114, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=16] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=114, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=17] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=114, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=18] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 23:04:15 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=114, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=19] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=114, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=20] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 23:04:18 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=114, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 INFO asyncssh:logging.py:92 [conn=114, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=22] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 INFO asyncssh:logging.py:92 [conn=114, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=22] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=114, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=23] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=114, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=24] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=114, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=24] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"f6:33:41:29:6d:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=114, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=114, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=25] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=114, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=114, chan=26] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=114, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=114, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=114, chan=26] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_gw.py::test_ipv4_default_gw | 147.65 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-6613' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_default_gw">Starting testcase:test_ipv4_default_gw from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_gw.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=114, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=115] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=115] Local address: 172.17.0.3, port 58766 INFO asyncssh:logging.py:92 [conn=115] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=115] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=115] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=115, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 23:04:19 UTC 2023 INFO asyncssh:logging.py:92 [conn=115, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=115, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=2] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=115, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=2] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.23","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=115, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=115, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=4] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=115, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=4] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":["linkdown"],"pref":"medium"}] INFO asyncssh:logging.py:92 [conn=115, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip route delete default via 10.36.118.1 dev ma1 INFO asyncssh:logging.py:92 [conn=115, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=6] Command: ip route delete default via 10.36.118.1 dev ma1 INFO asyncssh:logging.py:92 [conn=115, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=115, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=7] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=115, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=8] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 23:04:19 UTC 2023 INFO asyncssh:logging.py:92 [conn=115, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=9] Channel closed DEBUG infra2:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=115, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=10] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=115, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=10] Channel closed DEBUG infra2:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=115, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=11] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=115, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=12] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=115, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=12] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=115, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=115, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=14] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 23:04:19 UTC 2023 INFO asyncssh:logging.py:92 [conn=115, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=15] Channel closed DEBUG infra2:Logger.py:156 bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=115, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=16] Command: bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=115, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=16] Channel closed DEBUG infra2:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'bridge -j vlan show dev swp33 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=115, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=115, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=18] Command: ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=115, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=18] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'ip -j address show swp33 ', 'rc': 0, 'result': '[{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}]\n'}}] INFO DENT:Logger.py:84 [DENT infrastructure 2] Cannot find the Vlan GW IP address INFO asyncssh:logging.py:92 [conn=115, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=19] Channel closed DEBUG infra2:Logger.py:156 bridge -j vlan show dev swp34 INFO asyncssh:logging.py:92 [conn=115, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=20] Command: bridge -j vlan show dev swp34 INFO asyncssh:logging.py:92 [conn=115, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=20] Channel closed DEBUG infra2:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'bridge -j vlan show dev swp34 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=115, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip -j address show swp34 INFO asyncssh:logging.py:92 [conn=115, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=22] Command: ip -j address show swp34 INFO asyncssh:logging.py:92 [conn=115, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=22] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a6","prefixlen":64,"scope":"link","tentative":true,"valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'ip -j address show swp34 ', 'rc': 0, 'result': '[{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a6","prefixlen":64,"scope":"link","tentative":true,"valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [DENT infrastructure 2] Cannot find the Vlan GW IP address INFO asyncssh:logging.py:92 [conn=115, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=23] Channel closed DEBUG infra2:Logger.py:156 bridge -j vlan show dev swp35 INFO asyncssh:logging.py:92 [conn=115, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=24] Command: bridge -j vlan show dev swp35 INFO asyncssh:logging.py:92 [conn=115, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=24] Channel closed DEBUG infra2:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'bridge -j vlan show dev swp35 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=115, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=25] Channel closed DEBUG infra2:Logger.py:156 ip -j address show swp35 INFO asyncssh:logging.py:92 [conn=115, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=26] Command: ip -j address show swp35 INFO asyncssh:logging.py:92 [conn=115, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=26] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'ip -j address show swp35 ', 'rc': 0, 'result': '[{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}]\n'}}] INFO DENT:Logger.py:84 [DENT infrastructure 2] Cannot find the Vlan GW IP address INFO asyncssh:logging.py:92 [conn=115, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=27] Channel closed DEBUG infra2:Logger.py:156 bridge -j vlan show dev swp36 INFO asyncssh:logging.py:92 [conn=115, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=28] Command: bridge -j vlan show dev swp36 INFO asyncssh:logging.py:92 [conn=115, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=28] Channel closed DEBUG infra2:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'bridge -j vlan show dev swp36 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=115, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=29] Channel closed DEBUG infra2:Logger.py:156 ip -j address show swp36 INFO asyncssh:logging.py:92 [conn=115, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=30] Command: ip -j address show swp36 INFO asyncssh:logging.py:92 [conn=115, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=30] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'ip -j address show swp36 ', 'rc': 0, 'result': '[{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}]\n'}}] INFO DENT:Logger.py:84 [DENT infrastructure 2] Cannot find the Vlan GW IP address INFO asyncssh:logging.py:92 [conn=115, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=31] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=115, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=32] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=115, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=32] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=115, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=33] Channel closed DEBUG infra2:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=115, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=34] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=115, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=34] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:8 -> 10.36.118.199:2:5 5.5.5.5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:8 -> 10.36.118.199:2:6 5.5.5.5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:8 -> 10.36.118.199:2:7 5.5.5.5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=115, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=35] Channel closed DEBUG infra2:Logger.py:156 ip route add default metric 100 via 1.1.1.2 dev swp33 && ip route add default metric 200 via 2.2.2.2 dev swp34 INFO asyncssh:logging.py:92 [conn=115, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=36] Command: ip route add default metric 100 via 1.1.1.2 dev swp33 && ip route add default metric 200 via 2.2.2.2 dev swp34 INFO asyncssh:logging.py:92 [conn=115, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=36] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f73b4e80>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:8 -> 10.36.118.199:2:5 5.5.5.5 Tx 5314 Rx 5314 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:8 -> 10.36.118.199:2:6 5.5.5.5 Tx 5314 Rx 0 Frames Delta 5314 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:8 -> 10.36.118.199:2:7 5.5.5.5 Tx 5314 Rx 0 Frames Delta 5314 Loss 100.000 INFO asyncssh:logging.py:92 [conn=115, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=37] Channel closed DEBUG infra2:Logger.py:156 ip -j route show INFO asyncssh:logging.py:92 [conn=115, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=38] Command: ip -j route show INFO asyncssh:logging.py:92 [conn=115, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=38] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"default","gateway":"1.1.1.2","dev":"swp33","metric":100,"flags":["offload","rt_offload"]},{"dst":"default","gateway":"2.2.2.2","dev":"swp34","metric":200,"flags":[]},{"dst":"1.1.1.0/24","dev":"swp33","protocol":"kernel","scope":"link","prefsrc":"1.1.1.1","flags":["rt_trap"]},{"dst":"2.2.2.0/24","dev":"swp34","protocol":"kernel","scope":"link","prefsrc":"2.2.2.1","flags":["rt_trap"]},{"dst":"3.3.3.0/24","dev":"swp35","protocol":"kernel","scope":"link","prefsrc":"3.3.3.1","flags":["rt_trap"]},{"dst":"4.4.4.0/24","dev":"swp36","protocol":"kernel","scope":"link","prefsrc":"4.4.4.1","flags":["rt_trap"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.23","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=115, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=39] Channel closed DEBUG infra2:Logger.py:156 ip route add default via 3.3.3.2 dev swp35 INFO asyncssh:logging.py:92 [conn=115, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=40] Command: ip route add default via 3.3.3.2 dev swp35 INFO asyncssh:logging.py:92 [conn=115, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=40] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f73b7250>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:8 -> 10.36.118.199:2:5 5.5.5.5 Tx 5984 Rx 0 Frames Delta 5984 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:8 -> 10.36.118.199:2:6 5.5.5.5 Tx 5984 Rx 0 Frames Delta 5984 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:8 -> 10.36.118.199:2:7 5.5.5.5 Tx 5984 Rx 5984 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=115, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=41] Channel closed DEBUG infra2:Logger.py:156 ip -j route show INFO asyncssh:logging.py:92 [conn=115, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=42] Command: ip -j route show INFO asyncssh:logging.py:92 [conn=115, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=42] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"default","gateway":"3.3.3.2","dev":"swp35","flags":["offload","rt_offload"]},{"dst":"default","gateway":"1.1.1.2","dev":"swp33","metric":100,"flags":["offload"]},{"dst":"default","gateway":"2.2.2.2","dev":"swp34","metric":200,"flags":[]},{"dst":"1.1.1.0/24","dev":"swp33","protocol":"kernel","scope":"link","prefsrc":"1.1.1.1","flags":["rt_trap"]},{"dst":"2.2.2.0/24","dev":"swp34","protocol":"kernel","scope":"link","prefsrc":"2.2.2.1","flags":["rt_trap"]},{"dst":"3.3.3.0/24","dev":"swp35","protocol":"kernel","scope":"link","prefsrc":"3.3.3.1","flags":["rt_trap"]},{"dst":"4.4.4.0/24","dev":"swp36","protocol":"kernel","scope":"link","prefsrc":"4.4.4.1","flags":["rt_trap"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.23","flags":["rt_trap"]}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_default_gw from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_gw.py INFO asyncssh:logging.py:92 [conn=115, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=43] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=115, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=44] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=115, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=44] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=115, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=45] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=115, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=46] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=46] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 23:06:43 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=115, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=47] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=115, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=48] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=48] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 23:06:46 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=115, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=49] Channel closed DEBUG infra2:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 INFO asyncssh:logging.py:92 [conn=115, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=50] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 INFO asyncssh:logging.py:92 [conn=115, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=50] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=115, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=51] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=115, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=52] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=115, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=52] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"f6:33:41:29:6d:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=115, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=53] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=115, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=54] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=115, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=54] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=115, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=55] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=115, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=56] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=115, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=56] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.23","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=115, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=57] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=115, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=58] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=115, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=58] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"}] INFO asyncssh:logging.py:92 [conn=115, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=115, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=59] Channel closed DEBUG infra2:Logger.py:156 ip route replace default via 10.36.118.1 dev ma1 INFO asyncssh:logging.py:92 [conn=115, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=115, chan=60] Command: ip route replace default via 10.36.118.1 dev ma1 INFO asyncssh:logging.py:92 [conn=115, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=115, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=115, chan=60] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_gw.py::test_ipv4_not_connected_gw | 0.97 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-6689' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_not_connected_gw">Starting testcase:test_ipv4_not_connected_gw from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_gw.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=115, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=116] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=116] Local address: 172.17.0.3, port 45280 INFO asyncssh:logging.py:92 [conn=116] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=116] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=116] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=116, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 23:06:46 UTC 2023 INFO asyncssh:logging.py:92 [conn=116, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=1] Channel closed DEBUG infra2:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=116, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=116, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=2] Channel closed DEBUG infra2:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=116, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=3] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=116, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=116, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=4] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=116, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=116, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=6] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 23:06:46 UTC 2023 INFO asyncssh:logging.py:92 [conn=116, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 INFO asyncssh:logging.py:92 [conn=116, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=8] Command: ip address add 1.1.1.1/24 dev swp33 INFO asyncssh:logging.py:92 [conn=116, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=116, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip route add default via 5.5.5.5 dev swp33 INFO asyncssh:logging.py:92 [conn=116, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=10] Command: ip route add default via 5.5.5.5 dev swp33 INFO asyncssh:logging.py:92 [conn=116, chan=10] Received exit status 2 INFO asyncssh:logging.py:92 [conn=116, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=10] Channel closed DEBUG infra2:Logger.py:156 Error: Nexthop has invalid gateway. INFO asyncssh:logging.py:92 [conn=116, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=11] Channel closed DEBUG infra2:Logger.py:156 ip address add 2.2.2.2/24 dev swp34 INFO asyncssh:logging.py:92 [conn=116, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=12] Command: ip address add 2.2.2.2/24 dev swp34 INFO asyncssh:logging.py:92 [conn=116, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=116, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip route add default via 5.5.5.5 dev swp34 INFO asyncssh:logging.py:92 [conn=116, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=14] Command: ip route add default via 5.5.5.5 dev swp34 INFO asyncssh:logging.py:92 [conn=116, chan=14] Received exit status 2 INFO asyncssh:logging.py:92 [conn=116, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=14] Channel closed DEBUG infra2:Logger.py:156 Error: Nexthop has invalid gateway. INFO asyncssh:logging.py:92 [conn=116, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip address add 3.3.3.3/24 dev swp35 INFO asyncssh:logging.py:92 [conn=116, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=16] Command: ip address add 3.3.3.3/24 dev swp35 INFO asyncssh:logging.py:92 [conn=116, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=116, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip route add default via 5.5.5.5 dev swp35 INFO asyncssh:logging.py:92 [conn=116, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=18] Command: ip route add default via 5.5.5.5 dev swp35 INFO asyncssh:logging.py:92 [conn=116, chan=18] Received exit status 2 INFO asyncssh:logging.py:92 [conn=116, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=18] Channel closed DEBUG infra2:Logger.py:156 Error: Nexthop has invalid gateway. INFO asyncssh:logging.py:92 [conn=116, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip address add 4.4.4.4/24 dev swp36 INFO asyncssh:logging.py:92 [conn=116, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=20] Command: ip address add 4.4.4.4/24 dev swp36 INFO asyncssh:logging.py:92 [conn=116, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=116, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip route add default via 5.5.5.5 dev swp36 INFO asyncssh:logging.py:92 [conn=116, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=22] Command: ip route add default via 5.5.5.5 dev swp36 INFO asyncssh:logging.py:92 [conn=116, chan=22] Received exit status 2 INFO asyncssh:logging.py:92 [conn=116, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=22] Channel closed DEBUG infra2:Logger.py:156 Error: Nexthop has invalid gateway. -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_not_connected_gw from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_gw.py INFO asyncssh:logging.py:92 [conn=116, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=23] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=116, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=24] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=116, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=24] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=116, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=25] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=116, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=26] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 23:06:47 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=116, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=27] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=116, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=28] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 23:06:47 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=116, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=29] Channel closed DEBUG infra2:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 INFO asyncssh:logging.py:92 [conn=116, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=30] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 INFO asyncssh:logging.py:92 [conn=116, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=30] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=116, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=31] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=116, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=32] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=116, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=32] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"f6:33:41:29:6d:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=116, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=116, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=33] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=116, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=116, chan=34] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down INFO asyncssh:logging.py:92 [conn=116, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=116, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=116, chan=34] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_icmp.py::test_ipv4_icmp_disabled | 146.37 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-6735' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_icmp_disabled">Starting testcase:test_ipv4_icmp_disabled from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_icmp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=116, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=117] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=117] Local address: 172.17.0.3, port 45284 INFO asyncssh:logging.py:92 [conn=117] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=117] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=117] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=117, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 23:06:47 UTC 2023 INFO asyncssh:logging.py:92 [conn=117, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=1] Channel closed DEBUG infra2:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=117, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=117, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=2] Channel closed DEBUG infra2:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=117, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=3] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=117, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=117, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=4] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=117, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=117, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=6] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 23:06:47 UTC 2023 INFO asyncssh:logging.py:92 [conn=117, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=117, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=117, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=117, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=117, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=10] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=117, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=117, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=11] Channel closed DEBUG infra2:Logger.py:156 sysctl -n net.ipv4.icmp_echo_ignore_all INFO asyncssh:logging.py:92 [conn=117, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=12] Command: sysctl -n net.ipv4.icmp_echo_ignore_all INFO asyncssh:logging.py:92 [conn=117, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=12] Channel closed DEBUG infra2:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=117, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=13] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.icmp_echo_ignore_all=1 INFO asyncssh:logging.py:92 [conn=117, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=14] Command: sysctl net.ipv4.icmp_echo_ignore_all=1 INFO asyncssh:logging.py:92 [conn=117, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=14] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.icmp_echo_ignore_all = 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ipv4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:5_1.1.1.2/24 to 10.36.118.199:2:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f7346590>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI ipv4 SIP-DIP 1.1.1.2-2.2.2.2 Tx 607 Rx 607 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:2:5_1.1.1.2/24 to 1.1.1.1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:2:6_2.2.2.2/24 to 2.2.2.1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:2:7_3.3.3.2/24 to 3.3.3.1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:2:8_4.4.4.2/24 to 4.4.4.1 WARNING DENT:Logger.py:111 [Ixia Traffic Generator] Some pings did not reach their destination [{'ixia': {'command': 'send_ping&& send_ping&& send_ping&& send_ping', 'rc': 1, 'result': [{'success': False, 'info': '1 requests sent, 0 replies received., \nPing: 1.1.1.2 -> 1.1.1.1 failed - timeout', 'port': '10.36.118.199:2:5', 'src_ip': '1.1.1.2', 'dst_ip': '1.1.1.1'}, {'success': False, 'info': '1 requests sent, 0 replies received., \nPing: 2.2.2.2 -> 2.2.2.1 failed - timeout', 'port': '10.36.118.199:2:6', 'src_ip': '2.2.2.2', 'dst_ip': '2.2.2.1'}, {'success': False, 'info': '1 requests sent, 0 replies received., \nPing: 3.3.3.2 -> 3.3.3.1 failed - timeout', 'port': '10.36.118.199:2:7', 'src_ip': '3.3.3.2', 'dst_ip': '3.3.3.1'}, {'success': False, 'info': '1 requests sent, 0 replies received., \nPing: 4.4.4.2 -> 4.4.4.1 failed - timeout', 'port': '10.36.118.199:2:8', 'src_ip': '4.4.4.2', 'dst_ip': '4.4.4.1'}]}}] INFO asyncssh:logging.py:92 [conn=117, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=15] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.icmp_echo_ignore_all=0 INFO asyncssh:logging.py:92 [conn=117, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=16] Command: sysctl net.ipv4.icmp_echo_ignore_all=0 INFO asyncssh:logging.py:92 [conn=117, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=16] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.icmp_echo_ignore_all = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:2:5_1.1.1.2/24 to 1.1.1.1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:2:6_2.2.2.2/24 to 2.2.2.1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:2:7_3.3.3.2/24 to 3.3.3.1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:2:8_4.4.4.2/24 to 4.4.4.1 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_icmp_disabled from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_icmp.py INFO asyncssh:logging.py:92 [conn=117, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=17] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=117, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=18] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=117, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=18] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=117, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=19] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=117, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=20] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 23:09:13 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=117, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=21] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=117, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=22] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 23:09:13 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=117, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=23] Channel closed DEBUG infra2:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 INFO asyncssh:logging.py:92 [conn=117, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=24] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 INFO asyncssh:logging.py:92 [conn=117, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=24] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=117, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=25] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=117, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=26] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=117, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=26] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"f6:33:41:29:6d:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=117, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=117, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=27] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=117, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=117, chan=28] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=117, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=117, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=117, chan=28] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_icmp.py::test_ipv4_ping_stability | 230.50 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-6775' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_ping_stability">Starting testcase:test_ipv4_ping_stability from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_icmp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=117, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=118] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=118] Local address: 172.17.0.3, port 40256 INFO asyncssh:logging.py:92 [conn=118] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=118] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=118] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=118, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=118, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 23:09:14 UTC 2023 INFO asyncssh:logging.py:92 [conn=118, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=118, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=1] Channel closed DEBUG infra2:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=118, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=118, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=2] Channel closed DEBUG infra2:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=118, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=118, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=3] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=118, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=118, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=4] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=118, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=118, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=118, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=118, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=6] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 23:09:14 UTC 2023 INFO asyncssh:logging.py:92 [conn=118, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=118, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=118, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=118, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=118, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=118, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=118, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=10] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=118, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ipv4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:5_1.1.1.2/24 to 10.36.118.199:2:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=118, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=118, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=118, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=118, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=118, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=11] Channel closed INFO asyncssh:logging.py:92 [conn=118, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=13] Received channel close DEBUG infra2:Logger.py:156 ping -I swp33 -i 0.005 -w 120 1.1.1.2 | grep "bytes from" | wc -l INFO asyncssh:logging.py:92 [conn=118, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=12] Channel closed INFO asyncssh:logging.py:92 [conn=118, chan=13] Channel closed INFO asyncssh:logging.py:92 [conn=118, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=14] Received channel close DEBUG infra2:Logger.py:156 ping -I swp34 -i 0.005 -w 120 2.2.2.2 | grep "bytes from" | wc -l INFO asyncssh:logging.py:92 [conn=118, chan=16] Requesting new SSH session DEBUG infra2:Logger.py:156 ping -I swp35 -i 0.005 -w 120 3.3.3.2 | grep "bytes from" | wc -l INFO asyncssh:logging.py:92 [conn=118, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=14] Channel closed INFO asyncssh:logging.py:92 [conn=118, chan=15] Command: ping -I swp33 -i 0.005 -w 120 1.1.1.2 | grep "bytes from" | wc -l DEBUG infra2:Logger.py:156 ping -I swp36 -i 0.005 -w 120 4.4.4.2 | grep "bytes from" | wc -l INFO asyncssh:logging.py:92 [conn=118, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=16] Command: ping -I swp34 -i 0.005 -w 120 2.2.2.2 | grep "bytes from" | wc -l INFO asyncssh:logging.py:92 [conn=118, chan=17] Command: ping -I swp35 -i 0.005 -w 120 3.3.3.2 | grep "bytes from" | wc -l INFO asyncssh:logging.py:92 [conn=118, chan=18] Command: ping -I swp36 -i 0.005 -w 120 4.4.4.2 | grep "bytes from" | wc -l INFO asyncssh:logging.py:92 [conn=118, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=15] Channel closed DEBUG infra2:Logger.py:156 3024 INFO asyncssh:logging.py:92 [conn=118, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=16] Channel closed DEBUG infra2:Logger.py:156 2955 INFO asyncssh:logging.py:92 [conn=118, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=18] Channel closed DEBUG infra2:Logger.py:156 3063 INFO asyncssh:logging.py:92 [conn=118, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=17] Channel closed DEBUG infra2:Logger.py:156 2998 INFO DENT:Logger.py:84 [DENT infrastructure 2] Total run time: 120.07s, pings received: 12040 INFO DENT:Logger.py:84 [DENT infrastructure 2] Actual icmp rate: 100.27pps, expected: 100pps -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_ping_stability from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_icmp.py INFO asyncssh:logging.py:92 [conn=118, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=118, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=19] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=118, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=20] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=118, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=20] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=118, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=118, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=21] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=118, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=118, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=22] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 23:13:03 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=118, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=118, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=23] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=118, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=118, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=24] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 23:13:04 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=118, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=118, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=25] Channel closed DEBUG infra2:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 INFO asyncssh:logging.py:92 [conn=118, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=26] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 INFO asyncssh:logging.py:92 [conn=118, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=26] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=118, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=118, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=27] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=118, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=28] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=118, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=28] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"f6:33:41:29:6d:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=118, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=118, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=29] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=118, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=118, chan=30] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=118, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=118, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=118, chan=30] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_icmp.py::test_ipv4_ping_static_ip | 115.68 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-6879' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_ping_static_ip">Starting testcase:test_ipv4_ping_static_ip from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_icmp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=119, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=120] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=120] Local address: 172.17.0.3, port 45014 INFO asyncssh:logging.py:92 [conn=120] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=120] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=120] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=120, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 23:15:09 UTC 2023 INFO asyncssh:logging.py:92 [conn=120, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=1] Channel closed DEBUG infra2:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=120, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=120, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=2] Channel closed DEBUG infra2:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=120, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=3] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=120, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=120, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=4] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=120, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=120, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=6] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 23:15:09 UTC 2023 INFO asyncssh:logging.py:92 [conn=120, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=120, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=120, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=120, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=120, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=10] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=120, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ipv4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:5_1.1.1.2/24 to 10.36.118.199:2:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:2:5_1.1.1.2/24 to 1.1.1.1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:2:6_2.2.2.2/24 to 2.2.2.1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:2:7_3.3.3.2/24 to 3.3.3.1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:2:8_4.4.4.2/24 to 4.4.4.1 INFO asyncssh:logging.py:92 [conn=120, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=11] Channel closed INFO asyncssh:logging.py:92 [conn=120, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=13] Received channel close DEBUG infra2:Logger.py:156 ping -I swp33 -c 1 -i 0.1 -s 0 -w 120 1.1.1.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=120, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=12] Channel closed INFO asyncssh:logging.py:92 [conn=120, chan=13] Channel closed INFO asyncssh:logging.py:92 [conn=120, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=14] Received channel close DEBUG infra2:Logger.py:156 ping -I swp34 -c 1 -i 0.1 -s 0 -w 120 2.2.2.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=120, chan=16] Requesting new SSH session DEBUG infra2:Logger.py:156 ping -I swp35 -c 1 -i 0.1 -s 0 -w 120 3.3.3.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=120, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=14] Channel closed INFO asyncssh:logging.py:92 [conn=120, chan=15] Command: ping -I swp33 -c 1 -i 0.1 -s 0 -w 120 1.1.1.2 | grep "ping statistics" -A 2 DEBUG infra2:Logger.py:156 ping -I swp36 -c 1 -i 0.1 -s 0 -w 120 4.4.4.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=120, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=16] Command: ping -I swp34 -c 1 -i 0.1 -s 0 -w 120 2.2.2.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=120, chan=17] Command: ping -I swp35 -c 1 -i 0.1 -s 0 -w 120 3.3.3.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=120, chan=18] Command: ping -I swp36 -c 1 -i 0.1 -s 0 -w 120 4.4.4.2 | grep "ping statistics" -A 2 INFO asyncssh:logging.py:92 [conn=120, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=15] Channel closed INFO asyncssh:logging.py:92 [conn=120, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=18] Received channel close DEBUG infra2:Logger.py:156 --- 1.1.1.2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms INFO asyncssh:logging.py:92 [conn=120, chan=16] Channel closed INFO asyncssh:logging.py:92 [conn=120, chan=18] Channel closed INFO asyncssh:logging.py:92 [conn=120, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=17] Received channel close DEBUG infra2:Logger.py:156 --- 2.2.2.2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms DEBUG infra2:Logger.py:156 --- 4.4.4.2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms INFO asyncssh:logging.py:92 [conn=120, chan=17] Channel closed DEBUG infra2:Logger.py:156 --- 3.3.3.2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_ping_static_ip from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_icmp.py INFO asyncssh:logging.py:92 [conn=120, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=19] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=120, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=20] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=120, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=20] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=120, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=21] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=120, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=22] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 23:17:04 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=120, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=23] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=120, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=24] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 23:17:04 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=120, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=25] Channel closed DEBUG infra2:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 INFO asyncssh:logging.py:92 [conn=120, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=26] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 INFO asyncssh:logging.py:92 [conn=120, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=26] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=120, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=27] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=120, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=28] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=120, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=28] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"f6:33:41:29:6d:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=120, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=120, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=29] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=120, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=120, chan=30] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=120, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=120, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=120, chan=30] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_icmp.py::test_ipv4_fwd_disable | 122.84 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-6925' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_fwd_disable">Starting testcase:test_ipv4_fwd_disable from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_icmp.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=120, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=121] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=121] Local address: 172.17.0.3, port 43296 INFO asyncssh:logging.py:92 [conn=121] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=121] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=121] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=121, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=121, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 23:17:05 UTC 2023 INFO asyncssh:logging.py:92 [conn=121, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=121, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=1] Channel closed DEBUG infra2:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=121, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=121, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=2] Channel closed DEBUG infra2:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=121, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=121, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=3] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=121, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=121, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=4] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=121, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=121, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=121, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=121, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=6] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 23:17:05 UTC 2023 INFO asyncssh:logging.py:92 [conn=121, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=121, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=121, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=121, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=121, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=121, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=121, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=10] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=121, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ipv4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:5_1.1.1.2/24 to 10.36.118.199:2:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=121, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=121, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=11] Channel closed DEBUG infra2:Logger.py:156 ip neigh flush dev swp33 && ip neigh flush dev swp34 && ip neigh flush dev swp35 && ip neigh flush dev swp36 INFO asyncssh:logging.py:92 [conn=121, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=12] Command: ip neigh flush dev swp33 && ip neigh flush dev swp34 && ip neigh flush dev swp35 && ip neigh flush dev swp36 INFO asyncssh:logging.py:92 [conn=121, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=121, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=121, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=13] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=121, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=14] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=121, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=14] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP from 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP from 10.36.118.199:2:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:2:5_1.1.1.2/24 to 4.4.4.2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:2:6_2.2.2.2/24 to 3.3.3.2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:2:7_3.3.3.2/24 to 2.2.2.2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:2:8_4.4.4.2/24 to 1.1.1.2 WARNING DENT:Logger.py:111 [Ixia Traffic Generator] Some pings did not reach their destination [{'ixia': {'command': 'send_ping&& send_ping&& send_ping&& send_ping', 'rc': 1, 'result': [{'success': True, 'info': '1 requests sent, 1 replies received., \nPing: 1.1.1.2 -> 4.4.4.2 succeeded - reply received (sequence number = 0)', 'port': '10.36.118.199:2:5', 'src_ip': None, 'dst_ip': '4.4.4.2'}, {'success': False, 'info': '1 requests sent, 0 replies received., \nPing: 2.2.2.2 -> 3.3.3.2 failed - timeout', 'port': '10.36.118.199:2:6', 'src_ip': None, 'dst_ip': '3.3.3.2'}, {'success': False, 'info': '1 requests sent, 0 replies received., \nPing: 3.3.3.2 -> 2.2.2.2 failed - timeout', 'port': '10.36.118.199:2:7', 'src_ip': None, 'dst_ip': '2.2.2.2'}, {'success': True, 'info': '1 requests sent, 1 replies received., \nPing: 4.4.4.2 -> 1.1.1.2 succeeded - reply received (sequence number = 0)', 'port': '10.36.118.199:2:8', 'src_ip': None, 'dst_ip': '1.1.1.2'}]}}] INFO asyncssh:logging.py:92 [conn=121, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=121, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=15] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=121, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=16] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=121, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=16] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 1 INFO asyncssh:logging.py:92 [conn=121, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=121, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip neigh flush dev swp33 && ip neigh flush dev swp34 && ip neigh flush dev swp35 && ip neigh flush dev swp36 INFO asyncssh:logging.py:92 [conn=121, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=18] Command: ip neigh flush dev swp33 && ip neigh flush dev swp34 && ip neigh flush dev swp35 && ip neigh flush dev swp36 INFO asyncssh:logging.py:92 [conn=121, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:2:5_1.1.1.2/24 to 4.4.4.2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:2:6_2.2.2.2/24 to 3.3.3.2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:2:7_3.3.3.2/24 to 2.2.2.2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending Ping from 10.36.118.199:2:8_4.4.4.2/24 to 1.1.1.2 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_fwd_disable from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_icmp.py INFO asyncssh:logging.py:92 [conn=121, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=121, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=19] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=121, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=20] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=121, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=20] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=121, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=121, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=21] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=121, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=121, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=22] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 23:19:07 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=121, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=121, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=23] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=121, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=121, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=24] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 23:19:07 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=121, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=121, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=25] Channel closed DEBUG infra2:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 INFO asyncssh:logging.py:92 [conn=121, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=26] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 INFO asyncssh:logging.py:92 [conn=121, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=26] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=121, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=121, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=27] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=121, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=28] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=121, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=28] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"f6:33:41:29:6d:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=121, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=121, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=29] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=121, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=121, chan=30] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=121, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=121, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=121, chan=30] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_mtu.py::test_ipv4_oversized_mtu | 140.29 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-6965' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_oversized_mtu">Starting testcase:test_ipv4_oversized_mtu from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_mtu.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=121, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=122] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=122] Local address: 172.17.0.3, port 44458 INFO asyncssh:logging.py:92 [conn=122] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=122] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=122] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=122, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=122, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 23:19:08 UTC 2023 INFO asyncssh:logging.py:92 [conn=122, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=122, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=122, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=2] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=122, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=2] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"f6:33:41:29:6d:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=122, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=122, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=3] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=122, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=4] Command: date INFO asyncssh:logging.py:92 [conn=122, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=4] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 23:19:08 UTC 2023 INFO asyncssh:logging.py:92 [conn=122, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=122, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=5] Channel closed DEBUG infra2:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=122, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=6] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=122, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=6] Channel closed DEBUG infra2:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=122, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=122, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=7] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=122, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=8] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=122, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=8] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=122, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=122, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=9] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=122, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=10] Command: date INFO asyncssh:logging.py:92 [conn=122, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=10] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 23:19:08 UTC 2023 INFO asyncssh:logging.py:92 [conn=122, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=122, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=11] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=122, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=12] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=122, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=122, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=122, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=122, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=14] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=122, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:5 <-> 10.36.118.199:2:8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:5_1.1.1.2/24 to 10.36.118.199:2:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:6 <-> 10.36.118.199:2:7 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:6_2.2.2.2/24 to 10.36.118.199:2:7_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:7 <-> 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:7_3.3.3.2/24 to 10.36.118.199:2:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:8 <-> 10.36.118.199:2:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:8_4.4.4.2/24 to 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=122, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=122, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 mtu 1000 && ip link set dev swp34 mtu 1000 && ip link set dev swp35 mtu 1000 && ip link set dev swp36 mtu 1000 INFO asyncssh:logging.py:92 [conn=122, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=16] Command: ip link set dev swp33 mtu 1000 && ip link set dev swp34 mtu 1000 && ip link set dev swp35 mtu 1000 && ip link set dev swp36 mtu 1000 INFO asyncssh:logging.py:92 [conn=122, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=122, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=122, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=17] Channel closed DEBUG infra2:Logger.py:156 ethtool -S swp33 INFO asyncssh:logging.py:92 [conn=122, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=18] Command: ethtool -S swp33 INFO asyncssh:logging.py:92 [conn=122, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=18] Channel closed DEBUG infra2:Logger.py:156 NIC statistics: good_octets_received: 112468653997 bad_octets_received: 25683093 mac_trans_error: 0 broadcast_frames_received: 12734647 multicast_frames_received: 24855439 frames_64_octets: 2272 frames_65_to_127_octets: 2178344 frames_128_to_255_octets: 134741487 frames_256_to_511_octets: 67904370 frames_512_to_1023_octets: 62950807 frames_1024_to_max_octets: 16731862 excessive_collision: 0 multicast_frames_sent: 3131 broadcast_frames_sent: 1175 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 13723 fragments: 12036 oversize: 13989 jabber: 0 rx_error_frame_received: 0 bad_crc: 12065 collisions: 1 late_collision: 0 unicast_frames_received: 242681083 unicast_frames_sent: 4221602 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 2159611515 INFO asyncssh:logging.py:92 [conn=122, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=122, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=19] Channel closed DEBUG infra2:Logger.py:156 ethtool -S swp34 INFO asyncssh:logging.py:92 [conn=122, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=20] Command: ethtool -S swp34 INFO asyncssh:logging.py:92 [conn=122, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=20] Channel closed DEBUG infra2:Logger.py:156 NIC statistics: good_octets_received: 9289838467 bad_octets_received: 25586814 mac_trans_error: 0 broadcast_frames_received: 3466583 multicast_frames_received: 4711528 frames_64_octets: 2301 frames_65_to_127_octets: 1340094 frames_128_to_255_octets: 20136708 frames_256_to_511_octets: 5199524 frames_512_to_1023_octets: 12785651 frames_1024_to_max_octets: 3451425 excessive_collision: 0 multicast_frames_sent: 6745230 broadcast_frames_sent: 10498 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 13723 fragments: 13562 oversize: 13989 jabber: 0 rx_error_frame_received: 0 bad_crc: 11867 collisions: 0 late_collision: 0 unicast_frames_received: 18318637 unicast_frames_sent: 9651360 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 6560272586 INFO asyncssh:logging.py:92 [conn=122, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=122, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=21] Channel closed DEBUG infra2:Logger.py:156 ethtool -S swp35 INFO asyncssh:logging.py:92 [conn=122, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=22] Command: ethtool -S swp35 INFO asyncssh:logging.py:92 [conn=122, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=22] Channel closed DEBUG infra2:Logger.py:156 NIC statistics: good_octets_received: 6261365526 bad_octets_received: 22087192 mac_trans_error: 0 broadcast_frames_received: 1804062 multicast_frames_received: 2452476 frames_64_octets: 1390 frames_65_to_127_octets: 1333114 frames_128_to_255_octets: 10481402 frames_256_to_511_octets: 1222 frames_512_to_1023_octets: 9364846 frames_1024_to_max_octets: 2799776 excessive_collision: 0 multicast_frames_sent: 6541001 broadcast_frames_sent: 5405 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 13723 fragments: 0 oversize: 13989 jabber: 0 rx_error_frame_received: 0 bad_crc: 0 collisions: 0 late_collision: 0 unicast_frames_received: 10410682 unicast_frames_sent: 2768124 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 4209426590 INFO asyncssh:logging.py:92 [conn=122, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=122, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=23] Channel closed DEBUG infra2:Logger.py:156 ethtool -S swp36 INFO asyncssh:logging.py:92 [conn=122, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=24] Command: ethtool -S swp36 INFO asyncssh:logging.py:92 [conn=122, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=24] Channel closed DEBUG infra2:Logger.py:156 NIC statistics: good_octets_received: 5611996860 bad_octets_received: 22087192 mac_trans_error: 0 broadcast_frames_received: 1804047 multicast_frames_received: 2452476 frames_64_octets: 1388 frames_65_to_127_octets: 1333132 frames_128_to_255_octets: 10481401 frames_256_to_511_octets: 1207 frames_512_to_1023_octets: 9172169 frames_1024_to_max_octets: 2799775 excessive_collision: 0 multicast_frames_sent: 6332728 broadcast_frames_sent: 5422 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 13723 fragments: 0 oversize: 13989 jabber: 0 rx_error_frame_received: 0 bad_crc: 0 collisions: 0 late_collision: 0 unicast_frames_received: 9142413 unicast_frames_sent: 4051986 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 4760139998 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=122, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=122, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=25] Channel closed DEBUG infra2:Logger.py:156 ethtool -S swp33 INFO asyncssh:logging.py:92 [conn=122, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=26] Command: ethtool -S swp33 INFO asyncssh:logging.py:92 [conn=122, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=26] Channel closed DEBUG infra2:Logger.py:156 NIC statistics: good_octets_received: 112468653997 bad_octets_received: 31106847 mac_trans_error: 0 broadcast_frames_received: 12734647 multicast_frames_received: 24855439 frames_64_octets: 2272 frames_65_to_127_octets: 2178344 frames_128_to_255_octets: 134741488 frames_256_to_511_octets: 67904370 frames_512_to_1023_octets: 62950807 frames_1024_to_max_octets: 16731862 excessive_collision: 0 multicast_frames_sent: 3132 broadcast_frames_sent: 1175 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 13723 fragments: 12036 oversize: 19296 jabber: 0 rx_error_frame_received: 0 bad_crc: 12065 collisions: 1 late_collision: 0 unicast_frames_received: 242681083 unicast_frames_sent: 4221602 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 2159611763 INFO asyncssh:logging.py:92 [conn=122, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=122, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=27] Channel closed DEBUG infra2:Logger.py:156 ethtool -S swp34 INFO asyncssh:logging.py:92 [conn=122, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=28] Command: ethtool -S swp34 INFO asyncssh:logging.py:92 [conn=122, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=28] Channel closed DEBUG infra2:Logger.py:156 NIC statistics: good_octets_received: 9289838467 bad_octets_received: 31010568 mac_trans_error: 0 broadcast_frames_received: 3466583 multicast_frames_received: 4711528 frames_64_octets: 2301 frames_65_to_127_octets: 1340094 frames_128_to_255_octets: 20136709 frames_256_to_511_octets: 5199524 frames_512_to_1023_octets: 12785651 frames_1024_to_max_octets: 3451425 excessive_collision: 0 multicast_frames_sent: 6745231 broadcast_frames_sent: 10498 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 13723 fragments: 13562 oversize: 19296 jabber: 0 rx_error_frame_received: 0 bad_crc: 11867 collisions: 0 late_collision: 0 unicast_frames_received: 18318637 unicast_frames_sent: 9651360 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 6560272834 INFO asyncssh:logging.py:92 [conn=122, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=122, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=29] Channel closed DEBUG infra2:Logger.py:156 ethtool -S swp35 INFO asyncssh:logging.py:92 [conn=122, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=30] Command: ethtool -S swp35 INFO asyncssh:logging.py:92 [conn=122, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=30] Channel closed DEBUG infra2:Logger.py:156 NIC statistics: good_octets_received: 6261365526 bad_octets_received: 27510946 mac_trans_error: 0 broadcast_frames_received: 1804062 multicast_frames_received: 2452476 frames_64_octets: 1390 frames_65_to_127_octets: 1333114 frames_128_to_255_octets: 10481403 frames_256_to_511_octets: 1222 frames_512_to_1023_octets: 9364846 frames_1024_to_max_octets: 2799776 excessive_collision: 0 multicast_frames_sent: 6541002 broadcast_frames_sent: 5405 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 13723 fragments: 0 oversize: 19296 jabber: 0 rx_error_frame_received: 0 bad_crc: 0 collisions: 0 late_collision: 0 unicast_frames_received: 10410682 unicast_frames_sent: 2768124 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 4209426838 INFO asyncssh:logging.py:92 [conn=122, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=122, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=31] Channel closed DEBUG infra2:Logger.py:156 ethtool -S swp36 INFO asyncssh:logging.py:92 [conn=122, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=32] Command: ethtool -S swp36 INFO asyncssh:logging.py:92 [conn=122, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=32] Channel closed DEBUG infra2:Logger.py:156 NIC statistics: good_octets_received: 5611996860 bad_octets_received: 27510946 mac_trans_error: 0 broadcast_frames_received: 1804047 multicast_frames_received: 2452476 frames_64_octets: 1388 frames_65_to_127_octets: 1333132 frames_128_to_255_octets: 10481402 frames_256_to_511_octets: 1207 frames_512_to_1023_octets: 9172169 frames_1024_to_max_octets: 2799775 excessive_collision: 0 multicast_frames_sent: 6332729 broadcast_frames_sent: 5422 fc_sent: 0 fc_received: 0 buffer_overrun: 0 undersize: 13723 fragments: 0 oversize: 19296 jabber: 0 rx_error_frame_received: 0 bad_crc: 0 collisions: 0 late_collision: 0 unicast_frames_received: 9142413 unicast_frames_sent: 4051986 sent_multiple: 0 sent_deferred: 0 good_octets_sent: 4760140246 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f73441f0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:8 SIP-DIP 1.1.1.2-4.4.4.2 Tx 5307 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:7 TI 10.36.118.199:2:6 <-> 10.36.118.199:2:7 SIP-DIP 2.2.2.2-3.3.3.2 Tx 5307 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:7 <-> 10.36.118.199:2:6 SIP-DIP 3.3.3.2-2.2.2.2 Tx 5307 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:8 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:8 <-> 10.36.118.199:2:5 SIP-DIP 4.4.4.2-1.1.1.2 Tx 5307 Rx 0 Loss 100.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_oversized_mtu from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_mtu.py INFO asyncssh:logging.py:92 [conn=122, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=122, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=33] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=122, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=34] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=122, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=34] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=122, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=122, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=35] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=122, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=122, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=36] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 23:21:27 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=122, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=122, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=37] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=122, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=38] Command: date INFO asyncssh:logging.py:92 [conn=122, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=38] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 23:21:27 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=122, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=122, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=39] Channel closed DEBUG infra2:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 INFO asyncssh:logging.py:92 [conn=122, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=40] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 INFO asyncssh:logging.py:92 [conn=122, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=40] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=122, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=122, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=41] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=122, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=42] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=122, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=42] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"f6:33:41:29:6d:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1000,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1000,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1000,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1000,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=122, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=122, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=43] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=122, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=44] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=122, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=44] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=122, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=122, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=45] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 mtu 1500 && ip link set dev swp34 mtu 1500 && ip link set dev swp35 mtu 1500 && ip link set dev swp36 mtu 1500 INFO asyncssh:logging.py:92 [conn=122, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=122, chan=46] Command: ip link set dev swp33 mtu 1500 && ip link set dev swp34 mtu 1500 && ip link set dev swp35 mtu 1500 && ip link set dev swp36 mtu 1500 INFO asyncssh:logging.py:92 [conn=122, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=122, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=122, chan=46] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_routing.py::test_ipv4_random_routing | 154.91 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-7061' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_random_routing">Starting testcase:test_ipv4_random_routing from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_routing.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=123, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=124] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=124] Local address: 172.17.0.3, port 59098 INFO asyncssh:logging.py:92 [conn=124] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=124] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=124] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=124, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=124, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 23:23:41 UTC 2023 INFO asyncssh:logging.py:92 [conn=124, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=124, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=1] Channel closed DEBUG infra2:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=124, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=124, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=2] Channel closed DEBUG infra2:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=124, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=124, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=3] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=124, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=124, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=4] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=124, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=124, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=124, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=124, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=6] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 23:23:41 UTC 2023 INFO asyncssh:logging.py:92 [conn=124, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=124, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=124, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=124, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=124, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=124, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip address add 33.107.211.27/22 dev swp33 && ip address add 116.98.48.145/18 dev swp34 && ip address add 49.99.89.182/9 dev swp35 && ip address add 35.92.81.157/14 dev swp36 INFO asyncssh:logging.py:92 [conn=124, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=10] Command: ip address add 33.107.211.27/22 dev swp33 && ip address add 116.98.48.145/18 dev swp34 && ip address add 49.99.89.182/9 dev swp35 && ip address add 35.92.81.157/14 dev swp36 INFO asyncssh:logging.py:92 [conn=124, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_33.107.211.26/22', 'count': 1, 'ip': '33.107.211.26', 'gw': '33.107.211.27', 'plen': 22, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_116.98.48.144/18', 'count': 1, 'ip': '116.98.48.144', 'gw': '116.98.48.145', 'plen': 18, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_49.99.89.183/9', 'count': 1, 'ip': '49.99.89.183', 'gw': '49.99.89.182', 'plen': 9, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_35.92.81.156/14', 'count': 1, 'ip': '35.92.81.156', 'gw': '35.92.81.157', 'plen': 14, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ipv4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:5_33.107.211.26/22 to 10.36.118.199:2:6_116.98.48.144/18 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:5_33.107.211.26/22 to 10.36.118.199:2:7_49.99.89.183/9 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:5_33.107.211.26/22 to 10.36.118.199:2:8_35.92.81.156/14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:6_116.98.48.144/18 to 10.36.118.199:2:5_33.107.211.26/22 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:6_116.98.48.144/18 to 10.36.118.199:2:7_49.99.89.183/9 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:6_116.98.48.144/18 to 10.36.118.199:2:8_35.92.81.156/14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:7_49.99.89.183/9 to 10.36.118.199:2:5_33.107.211.26/22 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:7_49.99.89.183/9 to 10.36.118.199:2:6_116.98.48.144/18 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:7_49.99.89.183/9 to 10.36.118.199:2:8_35.92.81.156/14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:8_35.92.81.156/14 to 10.36.118.199:2:5_33.107.211.26/22 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:8_35.92.81.156/14 to 10.36.118.199:2:6_116.98.48.144/18 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:8_35.92.81.156/14 to 10.36.118.199:2:7_49.99.89.183/9 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_33.107.211.26/22 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_116.98.48.144/18 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_49.99.89.183/9 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_35.92.81.156/14 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f75b9ff0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI ipv4 SIP-DIP 33.107.211.26-35.92.81.156 Tx 5077 Rx 5077 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI ipv4 SIP-DIP 33.107.211.26-49.99.89.183 Tx 5078 Rx 5078 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI ipv4 SIP-DIP 33.107.211.26-116.98.48.144 Tx 5078 Rx 5078 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI ipv4 #1 SIP-DIP 116.98.48.144-33.107.211.26 Tx 5078 Rx 5078 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:8 TI ipv4 #1 SIP-DIP 116.98.48.144-35.92.81.156 Tx 5077 Rx 5077 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:7 TI ipv4 #1 SIP-DIP 116.98.48.144-49.99.89.183 Tx 5078 Rx 5078 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:5 TI ipv4 #2 SIP-DIP 49.99.89.183-33.107.211.26 Tx 5078 Rx 5078 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:8 TI ipv4 #2 SIP-DIP 49.99.89.183-35.92.81.156 Tx 5077 Rx 5077 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:6 TI ipv4 #2 SIP-DIP 49.99.89.183-116.98.48.144 Tx 5078 Rx 5078 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:8 Rx 10.36.118.199:2:5 TI ipv4 #3 SIP-DIP 35.92.81.156-33.107.211.26 Tx 5078 Rx 5078 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:8 Rx 10.36.118.199:2:7 TI ipv4 #3 SIP-DIP 35.92.81.156-49.99.89.183 Tx 5077 Rx 5077 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:8 Rx 10.36.118.199:2:6 TI ipv4 #3 SIP-DIP 35.92.81.156-116.98.48.144 Tx 5078 Rx 5078 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_random_routing from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_routing.py INFO asyncssh:logging.py:92 [conn=124, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=124, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=11] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=124, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=12] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=124, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=12] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=124, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=124, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=124, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=124, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=14] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 23:26:15 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=124, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=124, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=15] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=124, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=124, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=16] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 23:26:16 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=124, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=124, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 INFO asyncssh:logging.py:92 [conn=124, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=18] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 INFO asyncssh:logging.py:92 [conn=124, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=124, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=124, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=124, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=20] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=124, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=20] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"f6:33:41:29:6d:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=124, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=124, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=124, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=124, chan=22] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=124, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=124, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=124, chan=22] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_routing.py::test_ipv4_nexthop_route | 115.32 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-7095' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_nexthop_route">Starting testcase:test_ipv4_nexthop_route from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_routing.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=124, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=125] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=125] Local address: 172.17.0.3, port 44350 INFO asyncssh:logging.py:92 [conn=125] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=125] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=125] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=125, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 23:26:16 UTC 2023 INFO asyncssh:logging.py:92 [conn=125, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=1] Channel closed DEBUG infra2:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=125, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=125, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=2] Channel closed DEBUG infra2:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=125, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=3] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=125, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=125, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=4] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=125, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=125, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=6] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 23:26:16 UTC 2023 INFO asyncssh:logging.py:92 [conn=125, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=125, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=125, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=125, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 INFO asyncssh:logging.py:92 [conn=125, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=10] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 INFO asyncssh:logging.py:92 [conn=125, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=125, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=11] Channel closed DEBUG infra2:Logger.py:156 ip neigh add 1.1.1.5 lladdr aa:bb:cc:dd:ee:01 dev swp33 && ip neigh add 2.2.2.5 lladdr aa:bb:cc:dd:ee:02 dev swp34 INFO asyncssh:logging.py:92 [conn=125, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=12] Command: ip neigh add 1.1.1.5 lladdr aa:bb:cc:dd:ee:01 dev swp33 && ip neigh add 2.2.2.5 lladdr aa:bb:cc:dd:ee:02 dev swp34 INFO asyncssh:logging.py:92 [conn=125, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=125, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip route add 48.0.0.0/24 nexthop via 1.1.1.5 && ip route add 16.0.0.0/24 nexthop via 2.2.2.5 INFO asyncssh:logging.py:92 [conn=125, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=14] Command: ip route add 48.0.0.0/24 nexthop via 1.1.1.5 && ip route add 16.0.0.0/24 nexthop via 2.2.2.5 INFO asyncssh:logging.py:92 [conn=125, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=125, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=15] Channel closed DEBUG infra2:Logger.py:156 bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=125, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=16] Command: bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=125, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=16] Channel closed DEBUG infra2:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'bridge -j vlan show dev swp33 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=125, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=125, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=18] Command: ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=125, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=18] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a5","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'ip -j address show swp33 ', 'rc': 0, 'result': '[{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"1.1.1.1","prefixlen":24,"scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a5","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO asyncssh:logging.py:92 [conn=125, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=19] Channel closed DEBUG infra2:Logger.py:156 bridge -j vlan show dev swp34 INFO asyncssh:logging.py:92 [conn=125, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=20] Command: bridge -j vlan show dev swp34 INFO asyncssh:logging.py:92 [conn=125, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=20] Channel closed DEBUG infra2:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'bridge -j vlan show dev swp34 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=125, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip -j address show swp34 INFO asyncssh:logging.py:92 [conn=125, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=22] Command: ip -j address show swp34 INFO asyncssh:logging.py:92 [conn=125, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=22] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"2.2.2.1","prefixlen":24,"scope":"global","label":"swp34","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a6","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'ip -j address show swp34 ', 'rc': 0, 'result': '[{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"2.2.2.1","prefixlen":24,"scope":"global","label":"swp34","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a6","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:5 -> 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:6 -> 10.36.118.199:2:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f7447070>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:5 -> 10.36.118.199:2:6 Tx 5811 Rx 5811 Frames Delta 0 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:6 -> 10.36.118.199:2:5 Tx 5811 Rx 5811 Frames Delta 0 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_nexthop_route from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_routing.py INFO asyncssh:logging.py:92 [conn=125, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=23] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=125, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=24] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=125, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=24] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=125, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=25] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=125, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=26] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 23:28:11 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=125, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=27] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=125, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=28] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 23:28:11 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=125, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=29] Channel closed DEBUG infra2:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 INFO asyncssh:logging.py:92 [conn=125, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=30] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 INFO asyncssh:logging.py:92 [conn=125, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=30] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=125, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=31] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=125, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=32] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=125, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=32] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"f6:33:41:29:6d:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=125, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=125, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=33] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=125, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=125, chan=34] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=125, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=125, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=125, chan=34] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_routing.py::test_ipv4_route_between_vlan_devs | 130.05 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-7142' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_route_between_vlan_devs">Starting testcase:test_ipv4_route_between_vlan_devs from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_routing.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=125, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=126] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=126] Local address: 172.17.0.3, port 56872 INFO asyncssh:logging.py:92 [conn=126] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=126] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=126] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=126, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 23:28:11 UTC 2023 INFO asyncssh:logging.py:92 [conn=126, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=1] Channel closed DEBUG infra2:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=126, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=126, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=2] Channel closed DEBUG infra2:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=126, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=3] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=126, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=126, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=4] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=126, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=126, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=6] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 23:28:11 UTC 2023 INFO asyncssh:logging.py:92 [conn=126, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=126, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=8] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=126, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=126, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 master br0 && ip link set dev swp34 master br0 INFO asyncssh:logging.py:92 [conn=126, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=10] Command: ip link set dev swp33 master br0 && ip link set dev swp34 master br0 INFO asyncssh:logging.py:92 [conn=126, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=126, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=11] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp33 vid 10 && bridge vlan add dev swp34 vid 20 && bridge vlan add dev br0 vid 10 self && bridge vlan add dev br0 vid 20 self INFO asyncssh:logging.py:92 [conn=126, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=12] Command: bridge vlan add dev swp33 vid 10 && bridge vlan add dev swp34 vid 20 && bridge vlan add dev br0 vid 10 self && bridge vlan add dev br0 vid 20 self INFO asyncssh:logging.py:92 [conn=126, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=126, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip link add link br0 name br0.10 type vlan id 10 && ip link add link br0 name br0.20 type vlan id 20 INFO asyncssh:logging.py:92 [conn=126, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=14] Command: ip link add link br0 name br0.10 type vlan id 10 && ip link add link br0 name br0.20 type vlan id 20 INFO asyncssh:logging.py:92 [conn=126, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=126, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev br0 up && ip link set dev br0.10 up && ip link set dev br0.20 up INFO asyncssh:logging.py:92 [conn=126, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=16] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev br0 up && ip link set dev br0.10 up && ip link set dev br0.20 up INFO asyncssh:logging.py:92 [conn=126, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=126, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip address add 1.1.1.1/24 dev br0.10 && ip address add 2.2.2.1/24 dev br0.20 INFO asyncssh:logging.py:92 [conn=126, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=18] Command: ip address add 1.1.1.1/24 dev br0.10 && ip address add 2.2.2.1/24 dev br0.20 INFO asyncssh:logging.py:92 [conn=126, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': 10, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': 20, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=126, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip -j route show INFO asyncssh:logging.py:92 [conn=126, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=20] Command: ip -j route show INFO asyncssh:logging.py:92 [conn=126, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=20] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"1.1.1.0/24","dev":"br0.10","protocol":"kernel","scope":"link","prefsrc":"1.1.1.1","flags":["rt_trap"]},{"dst":"2.2.2.0/24","dev":"br0.20","protocol":"kernel","scope":"link","prefsrc":"2.2.2.1","flags":["rt_trap"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.23","flags":["rt_trap"]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:5_1.1.1.2/24 to 10.36.118.199:2:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:6_2.2.2.2/24 to 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f7446110>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 1.1.1.2-2.2.2.2 Tx 5768 Rx 5768 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI traffic #1 SIP-DIP 2.2.2.2-1.1.1.2 Tx 5768 Rx 5768 Loss 0.000 INFO asyncssh:logging.py:92 [conn=126, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip address flush br0.10 && ip address flush br0.20 INFO asyncssh:logging.py:92 [conn=126, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=22] Command: ip address flush br0.10 && ip address flush br0.20 INFO asyncssh:logging.py:92 [conn=126, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=22] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=126, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=23] Channel closed DEBUG infra2:Logger.py:156 ip address add 1.1.1.1/24 dev br0.10 && ip address add 2.2.2.1/24 dev br0.20 INFO asyncssh:logging.py:92 [conn=126, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=24] Command: ip address add 1.1.1.1/24 dev br0.10 && ip address add 2.2.2.1/24 dev br0.20 INFO asyncssh:logging.py:92 [conn=126, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=24] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=126, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=25] Channel closed DEBUG infra2:Logger.py:156 ip -j route show INFO asyncssh:logging.py:92 [conn=126, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=26] Command: ip -j route show INFO asyncssh:logging.py:92 [conn=126, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=26] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"1.1.1.0/24","dev":"br0.10","protocol":"kernel","scope":"link","prefsrc":"1.1.1.1","flags":["rt_trap"]},{"dst":"2.2.2.0/24","dev":"br0.20","protocol":"kernel","scope":"link","prefsrc":"2.2.2.1","flags":["rt_trap"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.23","flags":["rt_trap"]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f7309660>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 1.1.1.2-2.2.2.2 Tx 5968 Rx 5968 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI traffic #1 SIP-DIP 2.2.2.2-1.1.1.2 Tx 5968 Rx 5968 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_route_between_vlan_devs from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_routing.py INFO asyncssh:logging.py:92 [conn=126, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=27] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=126, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=28] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=126, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=28] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=126, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=29] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=126, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=30] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 23:30:16 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=126, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=31] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=126, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=32] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 23:30:21 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=126, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=33] Channel closed DEBUG infra2:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 INFO asyncssh:logging.py:92 [conn=126, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=34] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 INFO asyncssh:logging.py:92 [conn=126, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=34] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=126, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=35] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=126, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=36] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=126, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=36] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"f6:33:41:29:6d:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":128,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":129,"link":"br0","ifname":"br0.10","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":130,"link":"br0","ifname":"br0.20","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=126, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=37] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=126, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=38] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=126, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=38] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=126, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=39] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=126, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=40] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=40] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 23:30:21 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=126, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=41] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=126, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=42] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=126, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=42] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":128,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=126, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=126, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=43] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=126, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=126, chan=44] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=126, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=126, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=126, chan=44] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_routing.py::test_ipv4_nexthop_static_route | 128.45 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-7200' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_nexthop_static_route">Starting testcase:test_ipv4_nexthop_static_route from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_routing.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=126, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=127] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=127] Local address: 172.17.0.3, port 59380 INFO asyncssh:logging.py:92 [conn=127] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=127] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=127] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=127, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=127, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 23:30:21 UTC 2023 INFO asyncssh:logging.py:92 [conn=127, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=127, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=1] Channel closed DEBUG infra2:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=127, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=127, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=2] Channel closed DEBUG infra2:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=127, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=127, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=3] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=127, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=127, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=4] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=127, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=127, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=127, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=127, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=6] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 23:30:21 UTC 2023 INFO asyncssh:logging.py:92 [conn=127, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=127, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=7] Channel closed DEBUG infra2:Logger.py:156 bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=127, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=8] Command: bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=127, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=8] Channel closed DEBUG infra2:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'bridge -j vlan show dev swp33 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=127, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=127, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=127, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=10] Command: ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=127, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=10] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'ip -j address show swp33 ', 'rc': 0, 'result': '[{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}]\n'}}] INFO DENT:Logger.py:84 [DENT infrastructure 2] Cannot find the Vlan GW IP address INFO asyncssh:logging.py:92 [conn=127, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=127, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=11] Channel closed DEBUG infra2:Logger.py:156 bridge -j vlan show dev swp34 INFO asyncssh:logging.py:92 [conn=127, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=12] Command: bridge -j vlan show dev swp34 INFO asyncssh:logging.py:92 [conn=127, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=12] Channel closed DEBUG infra2:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'bridge -j vlan show dev swp34 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=127, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=127, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip -j address show swp34 INFO asyncssh:logging.py:92 [conn=127, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=14] Command: ip -j address show swp34 INFO asyncssh:logging.py:92 [conn=127, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=14] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'ip -j address show swp34 ', 'rc': 0, 'result': '[{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}]\n'}}] INFO DENT:Logger.py:84 [DENT infrastructure 2] Cannot find the Vlan GW IP address INFO asyncssh:logging.py:92 [conn=127, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=127, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=15] Channel closed DEBUG infra2:Logger.py:156 bridge -j vlan show dev swp35 INFO asyncssh:logging.py:92 [conn=127, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=16] Command: bridge -j vlan show dev swp35 INFO asyncssh:logging.py:92 [conn=127, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=16] Channel closed DEBUG infra2:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'bridge -j vlan show dev swp35 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=127, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=127, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip -j address show swp35 INFO asyncssh:logging.py:92 [conn=127, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=18] Command: ip -j address show swp35 INFO asyncssh:logging.py:92 [conn=127, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=18] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'ip -j address show swp35 ', 'rc': 0, 'result': '[{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}]\n'}}] INFO DENT:Logger.py:84 [DENT infrastructure 2] Cannot find the Vlan GW IP address INFO asyncssh:logging.py:92 [conn=127, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=127, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=19] Channel closed DEBUG infra2:Logger.py:156 bridge -j vlan show dev swp36 INFO asyncssh:logging.py:92 [conn=127, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=20] Command: bridge -j vlan show dev swp36 INFO asyncssh:logging.py:92 [conn=127, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=20] Channel closed DEBUG infra2:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'bridge -j vlan show dev swp36 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=127, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=127, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip -j address show swp36 INFO asyncssh:logging.py:92 [conn=127, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=22] Command: ip -j address show swp36 INFO asyncssh:logging.py:92 [conn=127, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=22] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'ip -j address show swp36 ', 'rc': 0, 'result': '[{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}]\n'}}] INFO DENT:Logger.py:84 [DENT infrastructure 2] Cannot find the Vlan GW IP address INFO asyncssh:logging.py:92 [conn=127, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=127, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=23] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=127, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=24] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=127, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=24] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=127, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=127, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=25] Channel closed DEBUG infra2:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=127, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=26] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 2.2.2.1/24 dev swp34 && ip address add 3.3.3.1/24 dev swp35 && ip address add 4.4.4.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=127, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=26] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_3.3.3.2/24', 'count': 1, 'ip': '3.3.3.2', 'gw': '3.3.3.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_4.4.4.2/24', 'count': 1, 'ip': '4.4.4.2', 'gw': '4.4.4.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=127, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=127, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=27] Channel closed DEBUG infra2:Logger.py:156 ip route add 100.0.0.1 nexthop via 1.1.1.2 dev swp33 && ip route add 101.0.0.1 nexthop via 2.2.2.2 dev swp34 INFO asyncssh:logging.py:92 [conn=127, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=28] Command: ip route add 100.0.0.1 nexthop via 1.1.1.2 dev swp33 && ip route add 101.0.0.1 nexthop via 2.2.2.2 dev swp34 INFO asyncssh:logging.py:92 [conn=127, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=28] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=127, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=127, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=29] Channel closed DEBUG infra2:Logger.py:156 ip -j route show INFO asyncssh:logging.py:92 [conn=127, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=30] Command: ip -j route show INFO asyncssh:logging.py:92 [conn=127, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=30] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"1.1.1.0/24","dev":"swp33","protocol":"kernel","scope":"link","prefsrc":"1.1.1.1","flags":["rt_trap"]},{"dst":"2.2.2.0/24","dev":"swp34","protocol":"kernel","scope":"link","prefsrc":"2.2.2.1","flags":["rt_trap"]},{"dst":"3.3.3.0/24","dev":"swp35","protocol":"kernel","scope":"link","prefsrc":"3.3.3.1","flags":["rt_trap"]},{"dst":"4.4.4.0/24","dev":"swp36","protocol":"kernel","scope":"link","prefsrc":"4.4.4.1","flags":["rt_trap"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.23","flags":["rt_trap"]},{"dst":"100.0.0.1","gateway":"1.1.1.2","dev":"swp33","flags":["trap","rt_offload"]},{"dst":"101.0.0.1","gateway":"2.2.2.2","dev":"swp34","flags":["trap","rt_offload"]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:8 -> 10.36.118.199:2:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:7 -> 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_3.3.3.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_4.4.4.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=127, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=127, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=31] Channel closed DEBUG infra2:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=127, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=32] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=127, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=32] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"4.4.4.2","dev":"swp36","lladdr":"00:14:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2.2.2.2","dev":"swp34","lladdr":"00:12:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"1.1.1.2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"3.3.3.2","dev":"swp35","lladdr":"00:13:01:00:00:01","offload":null,"state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=127, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=127, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=33] Channel closed DEBUG infra2:Logger.py:156 ip route delete 100.0.0.1 dev swp33 && ip route delete 101.0.0.1 dev swp34 INFO asyncssh:logging.py:92 [conn=127, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=34] Command: ip route delete 100.0.0.1 dev swp33 && ip route delete 101.0.0.1 dev swp34 INFO asyncssh:logging.py:92 [conn=127, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=34] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=127, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=127, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=35] Channel closed DEBUG infra2:Logger.py:156 ip -j route show INFO asyncssh:logging.py:92 [conn=127, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=36] Command: ip -j route show INFO asyncssh:logging.py:92 [conn=127, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=36] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"1.1.1.0/24","dev":"swp33","protocol":"kernel","scope":"link","prefsrc":"1.1.1.1","flags":["rt_trap"]},{"dst":"2.2.2.0/24","dev":"swp34","protocol":"kernel","scope":"link","prefsrc":"2.2.2.1","flags":["rt_trap"]},{"dst":"3.3.3.0/24","dev":"swp35","protocol":"kernel","scope":"link","prefsrc":"3.3.3.1","flags":["rt_trap"]},{"dst":"4.4.4.0/24","dev":"swp36","protocol":"kernel","scope":"link","prefsrc":"4.4.4.1","flags":["rt_trap"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.23","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=127, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=127, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=37] Channel closed DEBUG infra2:Logger.py:156 ip neigh delete 1.1.1.2 dev swp33 && ip neigh delete 2.2.2.2 dev swp34 && ip neigh delete 3.3.3.2 dev swp35 && ip neigh delete 4.4.4.2 dev swp36 INFO asyncssh:logging.py:92 [conn=127, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=38] Command: ip neigh delete 1.1.1.2 dev swp33 && ip neigh delete 2.2.2.2 dev swp34 && ip neigh delete 3.3.3.2 dev swp35 && ip neigh delete 4.4.4.2 dev swp36 INFO asyncssh:logging.py:92 [conn=127, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=38] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=127, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=127, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=39] Channel closed DEBUG infra2:Logger.py:156 ip -j neigh show INFO asyncssh:logging.py:92 [conn=127, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=40] Command: ip -j neigh show INFO asyncssh:logging.py:92 [conn=127, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=40] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"4.4.4.2","dev":"swp36","state":["FAILED"]},{"dst":"2.2.2.2","dev":"swp34","state":["FAILED"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]},{"dst":"1.1.1.2","dev":"swp33","state":["FAILED"]},{"dst":"3.3.3.2","dev":"swp35","state":["FAILED"]}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_nexthop_static_route from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_routing.py INFO asyncssh:logging.py:92 [conn=127, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=127, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=41] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=127, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=42] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=127, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=42] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=127, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=127, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=43] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=127, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=44] Command: date INFO asyncssh:logging.py:92 [conn=127, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=44] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 23:32:25 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=127, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=127, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=45] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=127, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=46] Command: date INFO asyncssh:logging.py:92 [conn=127, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=46] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 23:32:29 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=127, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=127, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=47] Channel closed DEBUG infra2:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 INFO asyncssh:logging.py:92 [conn=127, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=48] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 INFO asyncssh:logging.py:92 [conn=127, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=48] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=127, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=127, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=49] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=127, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=50] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=127, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=50] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"f6:33:41:29:6d:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=127, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=127, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=51] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=127, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=127, chan=52] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=127, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=127, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=127, chan=52] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/ipv4/test_ipv4_routing.py::test_ipv4_two_routes_to_same_net | 121.11 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-7264' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv4_two_routes_to_same_net">Starting testcase:test_ipv4_two_routes_to_same_net from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_routing.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=127, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=128] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=128] Local address: 172.17.0.3, port 49226 INFO asyncssh:logging.py:92 [conn=128] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=128] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=128] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=128, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=128, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 23:32:30 UTC 2023 INFO asyncssh:logging.py:92 [conn=128, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=128, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=1] Channel closed DEBUG infra2:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=128, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=2] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=128, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=2] Channel closed DEBUG infra2:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=128, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=128, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=3] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=128, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=4] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=128, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=4] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=128, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=128, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=128, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=128, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=6] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 23:32:30 UTC 2023 INFO asyncssh:logging.py:92 [conn=128, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=128, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up INFO asyncssh:logging.py:92 [conn=128, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up INFO asyncssh:logging.py:92 [conn=128, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2.2.2.2/24', 'count': 1, 'ip': '2.2.2.2', 'gw': '2.2.2.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=128, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=128, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 INFO asyncssh:logging.py:92 [conn=128, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=10] Command: ip address add 1.1.1.1/24 dev swp33 INFO asyncssh:logging.py:92 [conn=128, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=128, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=128, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=11] Channel closed DEBUG infra2:Logger.py:156 ip route add 2.2.2.0/24 nexthop via 1.1.1.2 dev swp33 INFO asyncssh:logging.py:92 [conn=128, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=12] Command: ip route add 2.2.2.0/24 nexthop via 1.1.1.2 dev swp33 INFO asyncssh:logging.py:92 [conn=128, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=128, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=128, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip address add 2.2.2.1/24 dev swp34 INFO asyncssh:logging.py:92 [conn=128, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=14] Command: ip address add 2.2.2.1/24 dev swp34 INFO asyncssh:logging.py:92 [conn=128, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=128, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=128, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip -j route show INFO asyncssh:logging.py:92 [conn=128, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=16] Command: ip -j route show INFO asyncssh:logging.py:92 [conn=128, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"1.1.1.0/24","dev":"swp33","protocol":"kernel","scope":"link","prefsrc":"1.1.1.1","flags":["rt_trap"]},{"dst":"2.2.2.0/24","gateway":"1.1.1.2","dev":"swp33","flags":["trap","rt_offload"]},{"dst":"2.2.2.0/24","dev":"swp34","protocol":"kernel","scope":"link","prefsrc":"2.2.2.1","flags":["linkdown"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.23","flags":["rt_trap"]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:5 -> 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:5_1.1.1.2/24 to 10.36.118.199:2:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file /tmp/ixia/tgen_ipv4_two_routes_to_same_net_config.ixncfg INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2.2.2.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f7445780>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item 10.36.118.199:2:5 -> 10.36.118.199:2:6 Tx 9975 Rx 0 Frames Delta 9975 Loss 100.000 INFO asyncssh:logging.py:92 [conn=128, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=128, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip address delete 2.2.2.1/24 dev swp34 INFO asyncssh:logging.py:92 [conn=128, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=18] Command: ip address delete 2.2.2.1/24 dev swp34 INFO asyncssh:logging.py:92 [conn=128, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=128, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=128, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip -j route show INFO asyncssh:logging.py:92 [conn=128, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=20] Command: ip -j route show INFO asyncssh:logging.py:92 [conn=128, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=20] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"1.1.1.0/24","dev":"swp33","protocol":"kernel","scope":"link","prefsrc":"1.1.1.1","flags":["rt_trap"]},{"dst":"2.2.2.0/24","gateway":"1.1.1.2","dev":"swp33","flags":["offload","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.23","flags":["rt_trap"]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f730ab30>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:5 Tx 19957 Rx 19958 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:6 Tx 0 Rx 0 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv4_two_routes_to_same_net from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv4/test_ipv4_routing.py INFO asyncssh:logging.py:92 [conn=128, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=128, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=21] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=128, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=22] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=128, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=22] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=128, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=128, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=23] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=128, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=128, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=24] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 23:34:30 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=128, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=128, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=25] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=128, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=128, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=26] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 23:34:31 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=128, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=128, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=27] Channel closed DEBUG infra2:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 INFO asyncssh:logging.py:92 [conn=128, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=28] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 INFO asyncssh:logging.py:92 [conn=128, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=28] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=128, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=128, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=29] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=128, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=30] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=128, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=30] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"f6:33:41:29:6d:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=128, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=128, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=31] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=128, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=128, chan=32] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=128, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=128, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=128, chan=32] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/ipv6/test_ipv6.py::test_ipv6_basic_config | 135.11 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-7307' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv6_basic_config">Starting testcase:test_ipv6_basic_config from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=128, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=129] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=129] Local address: 172.17.0.3, port 49158 INFO asyncssh:logging.py:92 [conn=129] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=129] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=129] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=129, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 23:34:31 UTC 2023 INFO asyncssh:logging.py:92 [conn=129, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=1] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=129, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=2] Command: sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=129, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=2] Channel closed DEBUG infra2:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO asyncssh:logging.py:92 [conn=129, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=3] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=129, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=4] Command: sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=129, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=4] Channel closed DEBUG infra2:Logger.py:156 net.ipv6.conf.all.forwarding = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=129, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=129, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=6] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 23:34:31 UTC 2023 INFO asyncssh:logging.py:92 [conn=129, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up INFO asyncssh:logging.py:92 [conn=129, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up INFO asyncssh:logging.py:92 [conn=129, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=129, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip address add 2001:1111:10:1::1/64 dev swp33 && ip address add 2001:2222:20:2::1/64 dev swp33 && ip address add 2001:3333:30:3::1/64 dev swp34 INFO asyncssh:logging.py:92 [conn=129, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=10] Command: ip address add 2001:1111:10:1::1/64 dev swp33 && ip address add 2001:2222:20:2::1/64 dev swp33 && ip address add 2001:3333:30:3::1/64 dev swp34 INFO asyncssh:logging.py:92 [conn=129, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_2001:1111:10:1::2/64', 'count': 1, 'ip': '2001:1111:10:1::2', 'gw': '2001:1111:10:1::1', 'plen': 64, 'vlan': None, 'version': 'ipv6'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_2001:2222:20:2::2/64', 'count': 1, 'ip': '2001:2222:20:2::2', 'gw': '2001:2222:20:2::1', 'plen': 64, 'vlan': None, 'version': 'ipv6'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2001:3333:30:3::2/64', 'count': 1, 'ip': '2001:3333:30:3::2', 'gw': '2001:3333:30:3::1', 'plen': 64, 'vlan': None, 'version': 'ipv6'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=129, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=11] Channel closed DEBUG infra2:Logger.py:156 ip -j address show INFO asyncssh:logging.py:92 [conn=129, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=12] Command: ip -j address show INFO asyncssh:logging.py:92 [conn=129, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=12] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","addr_info":[{"family":"inet","local":"127.0.0.1","prefixlen":8,"scope":"host","label":"lo","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet","local":"20.20.0.1","prefixlen":32,"scope":"global","label":"lo","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"::1","prefixlen":128,"scope":"host","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"f6:33:41:29:6d:87","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","addr_info":[]},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"10.36.118.23","prefixlen":24,"broadcast":"10.36.118.255","scope":"global","label":"ma1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:6482","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:2222:20:2::1","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"2001:1111:10:1::1","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a5","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:3333:30:3::1","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a6","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a7","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a8","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}] INFO asyncssh:logging.py:92 [conn=129, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=129, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=14] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=129, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=14] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.23","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=129, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=129, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=16] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=129, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"2001:1111:10:1::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:2222:20:2::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:3333:30:3::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:5 <-> 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:6_2001:3333:30:3::2/64 to 10.36.118.199:2:5_2001:1111:10:1::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:6_2001:3333:30:3::2/64 to 10.36.118.199:2:5_2001:2222:20:2::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_2001:1111:10:1::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_2001:2222:20:2::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2001:3333:30:3::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f75b83d0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:6 SIP-DIP 2001:1111:10:1:0:0:0:2-2001:3333:30:3:0:0:0:2 Tx 58119 Rx 58119 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:6 SIP-DIP 2001:2222:20:2:0:0:0:2-2001:3333:30:3:0:0:0:2 Tx 58119 Rx 58119 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:6 SIP-DIP 2001:3333:30:3:0:0:0:2-2001:1111:10:1:0:0:0:2 Tx 58119 Rx 58119 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:6 SIP-DIP 2001:3333:30:3:0:0:0:2-2001:2222:20:2:0:0:0:2 Tx 58119 Rx 58119 Loss 0.000 INFO asyncssh:logging.py:92 [conn=129, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=129, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=18] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=129, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=18] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=129, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=129, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=20] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=129, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=20] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"2001:3333:30:3::2","dev":"swp34","lladdr":"00:13:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp33","lladdr":"00:12:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["STALE"]},{"dst":"2001:1111:10:1::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:2222:20:2::2","dev":"swp33","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp34","lladdr":"00:13:01:00:00:01","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=129, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip address delete 2001:1111:10:1::1/64 dev swp33 && ip address delete 2001:2222:20:2::1/64 dev swp33 && ip address delete 2001:3333:30:3::1/64 dev swp34 INFO asyncssh:logging.py:92 [conn=129, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=22] Command: ip address delete 2001:1111:10:1::1/64 dev swp33 && ip address delete 2001:2222:20:2::1/64 dev swp33 && ip address delete 2001:3333:30:3::1/64 dev swp34 INFO asyncssh:logging.py:92 [conn=129, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=22] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f7444760>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:6 SIP-DIP 2001:1111:10:1:0:0:0:2-2001:3333:30:3:0:0:0:2 Tx 94481 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:6 SIP-DIP 2001:2222:20:2:0:0:0:2-2001:3333:30:3:0:0:0:2 Tx 94480 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:6 SIP-DIP 2001:3333:30:3:0:0:0:2-2001:1111:10:1:0:0:0:2 Tx 94481 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:6 SIP-DIP 2001:3333:30:3:0:0:0:2-2001:2222:20:2:0:0:0:2 Tx 94480 Rx 0 Loss 100.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv6_basic_config from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6.py INFO DENT:Logger.py:147 Restoring sysctl values INFO asyncssh:logging.py:92 [conn=129, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=23] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=129, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=24] Command: sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=129, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=24] Channel closed DEBUG infra2:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO DENT:Logger.py:147 Restoring sysctl values INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=129, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=25] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=129, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=26] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 23:36:46 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=129, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=27] Channel closed DEBUG infra2:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 INFO asyncssh:logging.py:92 [conn=129, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=28] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 INFO asyncssh:logging.py:92 [conn=129, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=28] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=129, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=29] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=129, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=30] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=129, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=30] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"f6:33:41:29:6d:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=129, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=129, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=31] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=129, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=129, chan=32] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=129, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=129, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=129, chan=32] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/ipv6/test_ipv6.py::test_ipv6_flags | 158.34 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-7351' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv6_flags">Starting testcase:test_ipv6_flags from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=129, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=130] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=130] Local address: 172.17.0.3, port 51412 INFO asyncssh:logging.py:92 [conn=130] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=130] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=130] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=130, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=130, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 23:36:46 UTC 2023 INFO asyncssh:logging.py:92 [conn=130, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=130, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=1] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=130, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=2] Command: sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=130, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=2] Channel closed DEBUG infra2:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO asyncssh:logging.py:92 [conn=130, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=130, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=3] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=130, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=4] Command: sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=130, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=4] Channel closed DEBUG infra2:Logger.py:156 net.ipv6.conf.all.forwarding = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=130, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=130, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=130, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=130, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=6] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 23:36:46 UTC 2023 INFO asyncssh:logging.py:92 [conn=130, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=130, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up INFO asyncssh:logging.py:92 [conn=130, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=8] Command: ip link set dev swp33 up && ip link set dev swp34 up INFO asyncssh:logging.py:92 [conn=130, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=130, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=130, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip address change 2001:1111::1/64 dev swp33 valid_lft 960 preferred_lft 900 && ip address change 2001:2222::1/64 dev swp34 INFO asyncssh:logging.py:92 [conn=130, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=10] Command: ip address change 2001:1111::1/64 dev swp33 valid_lft 960 preferred_lft 900 && ip address change 2001:2222::1/64 dev swp34 INFO asyncssh:logging.py:92 [conn=130, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=130, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=130, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=11] Channel closed DEBUG infra2:Logger.py:156 ip address replace 2001:3333::1/64 dev swp33 && ip address replace 2001:4444::1/64 dev swp34 valid_lft 960 preferred_lft 900 INFO asyncssh:logging.py:92 [conn=130, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=12] Command: ip address replace 2001:3333::1/64 dev swp33 && ip address replace 2001:4444::1/64 dev swp34 valid_lft 960 preferred_lft 900 INFO asyncssh:logging.py:92 [conn=130, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=130, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=130, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip -j address show INFO asyncssh:logging.py:92 [conn=130, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=14] Command: ip -j address show INFO asyncssh:logging.py:92 [conn=130, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=14] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","addr_info":[{"family":"inet","local":"127.0.0.1","prefixlen":8,"scope":"host","label":"lo","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet","local":"20.20.0.1","prefixlen":32,"scope":"global","label":"lo","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"::1","prefixlen":128,"scope":"host","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"f6:33:41:29:6d:87","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","addr_info":[]},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"10.36.118.23","prefixlen":24,"broadcast":"10.36.118.255","scope":"global","label":"ma1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:6482","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:3333::1","prefixlen":64,"scope":"global","tentative":true,"valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"2001:1111::1","prefixlen":64,"scope":"global","tentative":true,"dynamic":true,"valid_life_time":960,"preferred_life_time":900}]},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:4444::1","prefixlen":64,"scope":"global","tentative":true,"dynamic":true,"valid_life_time":960,"preferred_life_time":900},{"family":"inet6","local":"2001:2222::1","prefixlen":64,"scope":"global","tentative":true,"valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a6","prefixlen":64,"scope":"link","tentative":true,"valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a7","prefixlen":64,"scope":"link","tentative":true,"valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_2001:1111::2/64', 'count': 1, 'ip': '2001:1111::2', 'gw': '2001:1111::1', 'plen': 64, 'vlan': None, 'version': 'ipv6'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_2001:3333::2/64', 'count': 1, 'ip': '2001:3333::2', 'gw': '2001:3333::1', 'plen': 64, 'vlan': None, 'version': 'ipv6'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2001:2222::2/64', 'count': 1, 'ip': '2001:2222::2', 'gw': '2001:2222::1', 'plen': 64, 'vlan': None, 'version': 'ipv6'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2001:4444::2/64', 'count': 1, 'ip': '2001:4444::2', 'gw': '2001:4444::1', 'plen': 64, 'vlan': None, 'version': 'ipv6'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:5 <-> 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:5_2001:1111::2/64 to 10.36.118.199:2:6_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:5_2001:1111::2/64 to 10.36.118.199:2:6_2001:4444::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:5_2001:3333::2/64 to 10.36.118.199:2:6_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:5_2001:3333::2/64 to 10.36.118.199:2:6_2001:4444::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_2001:1111::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_2001:3333::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2001:4444::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f7446290>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:6 SIP-DIP 2001:1111:0:0:0:0:0:2-2001:2222:0:0:0:0:0:2 Tx 58216 Rx 58216 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:6 SIP-DIP 2001:1111:0:0:0:0:0:2-2001:4444:0:0:0:0:0:2 Tx 58215 Rx 58215 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:6 SIP-DIP 2001:2222:0:0:0:0:0:2-2001:1111:0:0:0:0:0:2 Tx 58216 Rx 58216 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:6 SIP-DIP 2001:4444:0:0:0:0:0:2-2001:1111:0:0:0:0:0:2 Tx 58215 Rx 58215 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:6 #1 SIP-DIP 2001:2222:0:0:0:0:0:2-2001:3333:0:0:0:0:0:2 Tx 58216 Rx 58216 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:6 #1 SIP-DIP 2001:3333:0:0:0:0:0:2-2001:2222:0:0:0:0:0:2 Tx 58216 Rx 58216 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:6 #1 SIP-DIP 2001:3333:0:0:0:0:0:2-2001:4444:0:0:0:0:0:2 Tx 58215 Rx 58215 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:6 #1 SIP-DIP 2001:4444:0:0:0:0:0:2-2001:3333:0:0:0:0:0:2 Tx 58215 Rx 58215 Loss 0.000 INFO asyncssh:logging.py:92 [conn=130, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=130, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip -j address show INFO asyncssh:logging.py:92 [conn=130, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=16] Command: ip -j address show INFO asyncssh:logging.py:92 [conn=130, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","addr_info":[{"family":"inet","local":"127.0.0.1","prefixlen":8,"scope":"host","label":"lo","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet","local":"20.20.0.1","prefixlen":32,"scope":"global","label":"lo","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"::1","prefixlen":128,"scope":"host","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"f6:33:41:29:6d:87","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","addr_info":[]},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"10.36.118.23","prefixlen":24,"broadcast":"10.36.118.255","scope":"global","label":"ma1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:6482","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:3333::1","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"2001:1111::1","prefixlen":64,"scope":"global","dynamic":true,"valid_life_time":843,"preferred_life_time":783},{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a5","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:4444::1","prefixlen":64,"scope":"global","dynamic":true,"valid_life_time":843,"preferred_life_time":783},{"family":"inet6","local":"2001:2222::1","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a6","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a7","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a8","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}] INFO asyncssh:logging.py:92 [conn=130, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=130, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip address change 2001:1111::1/64 dev swp33 valid_lft 120 preferred_lft 0 INFO asyncssh:logging.py:92 [conn=130, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=18] Command: ip address change 2001:1111::1/64 dev swp33 valid_lft 120 preferred_lft 0 INFO asyncssh:logging.py:92 [conn=130, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=130, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=130, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip address replace 2001:4444::1/64 dev swp34 valid_lft 120 preferred_lft 0 INFO asyncssh:logging.py:92 [conn=130, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=20] Command: ip address replace 2001:4444::1/64 dev swp34 valid_lft 120 preferred_lft 0 INFO asyncssh:logging.py:92 [conn=130, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f7446e90>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:6 SIP-DIP 2001:1111:0:0:0:0:0:2-2001:2222:0:0:0:0:0:2 Tx 94695 Rx 94695 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:6 SIP-DIP 2001:1111:0:0:0:0:0:2-2001:4444:0:0:0:0:0:2 Tx 94694 Rx 94694 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:6 SIP-DIP 2001:2222:0:0:0:0:0:2-2001:1111:0:0:0:0:0:2 Tx 94695 Rx 94695 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:6 SIP-DIP 2001:4444:0:0:0:0:0:2-2001:1111:0:0:0:0:0:2 Tx 94694 Rx 94694 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:6 #1 SIP-DIP 2001:2222:0:0:0:0:0:2-2001:3333:0:0:0:0:0:2 Tx 94695 Rx 94695 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:6 #1 SIP-DIP 2001:3333:0:0:0:0:0:2-2001:2222:0:0:0:0:0:2 Tx 94695 Rx 94695 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:6 #1 SIP-DIP 2001:3333:0:0:0:0:0:2-2001:4444:0:0:0:0:0:2 Tx 94694 Rx 94694 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:6 #1 SIP-DIP 2001:4444:0:0:0:0:0:2-2001:3333:0:0:0:0:0:2 Tx 94694 Rx 94694 Loss 0.000 INFO asyncssh:logging.py:92 [conn=130, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=130, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip -j address show INFO asyncssh:logging.py:92 [conn=130, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=22] Command: ip -j address show INFO asyncssh:logging.py:92 [conn=130, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=22] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","addr_info":[{"family":"inet","local":"127.0.0.1","prefixlen":8,"scope":"host","label":"lo","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet","local":"20.20.0.1","prefixlen":32,"scope":"global","label":"lo","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"::1","prefixlen":128,"scope":"host","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"f6:33:41:29:6d:87","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","addr_info":[]},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"10.36.118.23","prefixlen":24,"broadcast":"10.36.118.255","scope":"global","label":"ma1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:6482","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:3333::1","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"2001:1111::1","prefixlen":64,"scope":"global","deprecated":true,"dynamic":true,"valid_life_time":103,"preferred_life_time":0},{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a5","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:4444::1","prefixlen":64,"scope":"global","deprecated":true,"dynamic":true,"valid_life_time":103,"preferred_life_time":0},{"family":"inet6","local":"2001:2222::1","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a6","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a7","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a8","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}] INFO asyncssh:logging.py:92 [conn=130, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=130, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=23] Channel closed DEBUG infra2:Logger.py:156 ip address change 2001:1111::1/64 dev swp33 valid_lft 1 preferred_lft 0 INFO asyncssh:logging.py:92 [conn=130, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=24] Command: ip address change 2001:1111::1/64 dev swp33 valid_lft 1 preferred_lft 0 INFO asyncssh:logging.py:92 [conn=130, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=24] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=130, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=130, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=25] Channel closed DEBUG infra2:Logger.py:156 ip address replace 2001:4444::1/64 dev swp34 valid_lft 1 preferred_lft 0 INFO asyncssh:logging.py:92 [conn=130, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=26] Command: ip address replace 2001:4444::1/64 dev swp34 valid_lft 1 preferred_lft 0 INFO asyncssh:logging.py:92 [conn=130, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=26] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=130, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=130, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=27] Channel closed DEBUG infra2:Logger.py:156 ip -j address show INFO asyncssh:logging.py:92 [conn=130, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=28] Command: ip -j address show INFO asyncssh:logging.py:92 [conn=130, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=28] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","addr_info":[{"family":"inet","local":"127.0.0.1","prefixlen":8,"scope":"host","label":"lo","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet","local":"20.20.0.1","prefixlen":32,"scope":"global","label":"lo","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"::1","prefixlen":128,"scope":"host","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"f6:33:41:29:6d:87","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","addr_info":[]},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"10.36.118.23","prefixlen":24,"broadcast":"10.36.118.255","scope":"global","label":"ma1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:6482","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:3333::1","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a5","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:2222::1","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a6","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a7","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a8","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}] INFO asyncssh:logging.py:92 [conn=130, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=130, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=29] Channel closed DEBUG infra2:Logger.py:156 ip neigh flush dev swp33 && ip neigh flush dev swp34 && ip neigh flush dev swp33 && ip neigh flush dev swp34 INFO asyncssh:logging.py:92 [conn=130, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=30] Command: ip neigh flush dev swp33 && ip neigh flush dev swp34 && ip neigh flush dev swp33 && ip neigh flush dev swp34 INFO asyncssh:logging.py:92 [conn=130, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=30] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f730a620>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:6 SIP-DIP 2001:1111:0:0:0:0:0:2-2001:2222:0:0:0:0:0:2 Tx 94501 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:6 SIP-DIP 2001:1111:0:0:0:0:0:2-2001:4444:0:0:0:0:0:2 Tx 94501 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:6 SIP-DIP 2001:2222:0:0:0:0:0:2-2001:1111:0:0:0:0:0:2 Tx 94501 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:6 SIP-DIP 2001:4444:0:0:0:0:0:2-2001:1111:0:0:0:0:0:2 Tx 94501 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:6 #1 SIP-DIP 2001:2222:0:0:0:0:0:2-2001:3333:0:0:0:0:0:2 Tx 94501 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:6 #1 SIP-DIP 2001:3333:0:0:0:0:0:2-2001:2222:0:0:0:0:0:2 Tx 94501 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:6 #1 SIP-DIP 2001:3333:0:0:0:0:0:2-2001:4444:0:0:0:0:0:2 Tx 94501 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:6 #1 SIP-DIP 2001:4444:0:0:0:0:0:2-2001:3333:0:0:0:0:0:2 Tx 94501 Rx 0 Loss 100.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv6_flags from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6.py INFO DENT:Logger.py:147 Restoring sysctl values INFO asyncssh:logging.py:92 [conn=130, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=130, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=31] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=130, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=32] Command: sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=130, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=32] Channel closed DEBUG infra2:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO DENT:Logger.py:147 Restoring sysctl values INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=130, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=130, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=33] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=130, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=130, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=34] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 23:39:24 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=130, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=130, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=35] Channel closed DEBUG infra2:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 INFO asyncssh:logging.py:92 [conn=130, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=36] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 INFO asyncssh:logging.py:92 [conn=130, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=36] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=130, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=130, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=37] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=130, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=38] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=130, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=38] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"f6:33:41:29:6d:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=130, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=130, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=39] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=130, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=130, chan=40] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=130, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=130, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=130, chan=40] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/ipv6/test_ipv6.py::test_ipv6_secondary_addr | 182.39 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-7403' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv6_secondary_addr">Starting testcase:test_ipv6_secondary_addr from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=130, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=131] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=131] Local address: 172.17.0.3, port 44346 INFO asyncssh:logging.py:92 [conn=131] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=131] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=131] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=131, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=131, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 23:39:24 UTC 2023 INFO asyncssh:logging.py:92 [conn=131, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=131, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=1] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=131, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=2] Command: sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=131, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=2] Channel closed DEBUG infra2:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO asyncssh:logging.py:92 [conn=131, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=131, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=3] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=131, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=4] Command: sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=131, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=4] Channel closed DEBUG infra2:Logger.py:156 net.ipv6.conf.all.forwarding = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=131, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=131, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=131, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=131, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=6] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 23:39:24 UTC 2023 INFO asyncssh:logging.py:92 [conn=131, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=131, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=7] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv6.neigh.swp33.base_reachable_time_ms&& sysctl net.ipv6.neigh.swp34.base_reachable_time_ms INFO asyncssh:logging.py:92 [conn=131, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=8] Command: sysctl net.ipv6.neigh.swp33.base_reachable_time_ms&& sysctl net.ipv6.neigh.swp34.base_reachable_time_ms INFO asyncssh:logging.py:92 [conn=131, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=8] Channel closed DEBUG infra2:Logger.py:156 net.ipv6.neigh.swp33.base_reachable_time_ms = 30000 net.ipv6.neigh.swp34.base_reachable_time_ms = 30000 INFO asyncssh:logging.py:92 [conn=131, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=131, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=9] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv6.neigh.swp33.base_reachable_time_ms=150000&& sysctl net.ipv6.neigh.swp34.base_reachable_time_ms=150000 INFO asyncssh:logging.py:92 [conn=131, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=10] Command: sysctl net.ipv6.neigh.swp33.base_reachable_time_ms=150000&& sysctl net.ipv6.neigh.swp34.base_reachable_time_ms=150000 INFO asyncssh:logging.py:92 [conn=131, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=10] Channel closed DEBUG infra2:Logger.py:156 net.ipv6.neigh.swp33.base_reachable_time_ms = 150000 net.ipv6.neigh.swp34.base_reachable_time_ms = 150000 INFO asyncssh:logging.py:92 [conn=131, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=131, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=11] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up INFO asyncssh:logging.py:92 [conn=131, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=12] Command: ip link set dev swp33 up && ip link set dev swp34 up INFO asyncssh:logging.py:92 [conn=131, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=131, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=131, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip address add 2001:1111::1/64 dev swp33 && ip address add 2001:2222::1/64 dev swp34 && ip address add 2001:1111::3/64 dev swp33 && ip address add 2001:2222::3/64 dev swp34 && ip address add 2001:1111::5/64 dev swp33 && ip address add 2001:2222::5/64 dev swp34 INFO asyncssh:logging.py:92 [conn=131, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=14] Command: ip address add 2001:1111::1/64 dev swp33 && ip address add 2001:2222::1/64 dev swp34 && ip address add 2001:1111::3/64 dev swp33 && ip address add 2001:2222::3/64 dev swp34 && ip address add 2001:1111::5/64 dev swp33 && ip address add 2001:2222::5/64 dev swp34 INFO asyncssh:logging.py:92 [conn=131, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_2001:1111::2/64', 'count': 1, 'ip': '2001:1111::2', 'gw': '2001:1111::1', 'plen': 64, 'vlan': None, 'version': 'ipv6'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_2001:1111::4/64', 'count': 1, 'ip': '2001:1111::4', 'gw': '2001:1111::3', 'plen': 64, 'vlan': None, 'version': 'ipv6'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_2001:1111::6/64', 'count': 1, 'ip': '2001:1111::6', 'gw': '2001:1111::5', 'plen': 64, 'vlan': None, 'version': 'ipv6'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2001:2222::2/64', 'count': 1, 'ip': '2001:2222::2', 'gw': '2001:2222::1', 'plen': 64, 'vlan': None, 'version': 'ipv6'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2001:2222::4/64', 'count': 1, 'ip': '2001:2222::4', 'gw': '2001:2222::3', 'plen': 64, 'vlan': None, 'version': 'ipv6'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2001:2222::6/64', 'count': 1, 'ip': '2001:2222::6', 'gw': '2001:2222::5', 'plen': 64, 'vlan': None, 'version': 'ipv6'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=131, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=131, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip -j address show INFO asyncssh:logging.py:92 [conn=131, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=16] Command: ip -j address show INFO asyncssh:logging.py:92 [conn=131, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","addr_info":[{"family":"inet","local":"127.0.0.1","prefixlen":8,"scope":"host","label":"lo","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet","local":"20.20.0.1","prefixlen":32,"scope":"global","label":"lo","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"::1","prefixlen":128,"scope":"host","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"f6:33:41:29:6d:87","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","addr_info":[]},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"10.36.118.23","prefixlen":24,"broadcast":"10.36.118.255","scope":"global","label":"ma1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:6482","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:1111::5","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"2001:1111::3","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"2001:1111::1","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a5","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:2222::5","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"2001:2222::3","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"2001:2222::1","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a6","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a7","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a8","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}] INFO asyncssh:logging.py:92 [conn=131, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=131, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=131, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=18] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=131, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=18] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.23","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=131, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=131, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=131, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=20] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=131, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=20] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"2001:1111::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:2222::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:5_2001:1111::2/64 <-> 10.36.118.199:2:6_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:5_2001:1111::2/64 to 10.36.118.199:2:6_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:5_2001:1111::4/64 <-> 10.36.118.199:2:6_2001:2222::4/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:5_2001:1111::4/64 to 10.36.118.199:2:6_2001:2222::4/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:5_2001:1111::6/64 <-> 10.36.118.199:2:6_2001:2222::6/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:5_2001:1111::6/64 to 10.36.118.199:2:6_2001:2222::6/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_2001:1111::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_2001:1111::4/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_2001:1111::6/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2001:2222::4/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2001:2222::6/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f73b75e0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5_2001:1111::2/64 <-> 10.36.118.199:2:6_2001:2222::2/64 SIP-DIP 2001:1111:0:0:0:0:0:2-2001:2222:0:0:0:0:0:2 Tx 58425 Rx 58425 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:5_2001:1111::2/64 <-> 10.36.118.199:2:6_2001:2222::2/64 SIP-DIP 2001:2222:0:0:0:0:0:2-2001:1111:0:0:0:0:0:2 Tx 58425 Rx 58425 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5_2001:1111::4/64 <-> 10.36.118.199:2:6_2001:2222::4/64 SIP-DIP 2001:1111:0:0:0:0:0:4-2001:2222:0:0:0:0:0:4 Tx 58425 Rx 58425 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:5_2001:1111::4/64 <-> 10.36.118.199:2:6_2001:2222::4/64 SIP-DIP 2001:2222:0:0:0:0:0:4-2001:1111:0:0:0:0:0:4 Tx 58425 Rx 58425 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5_2001:1111::6/64 <-> 10.36.118.199:2:6_2001:2222::6/64 SIP-DIP 2001:1111:0:0:0:0:0:6-2001:2222:0:0:0:0:0:6 Tx 58425 Rx 58425 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:5_2001:1111::6/64 <-> 10.36.118.199:2:6_2001:2222::6/64 SIP-DIP 2001:2222:0:0:0:0:0:6-2001:1111:0:0:0:0:0:6 Tx 58425 Rx 58425 Loss 0.000 INFO asyncssh:logging.py:92 [conn=131, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=131, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=131, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=22] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=131, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=22] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=131, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=131, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=23] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=131, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=24] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=131, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=24] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::216:1ff:fe00:1","dev":"swp34","lladdr":"00:16:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:2222::6","dev":"swp34","lladdr":"00:16:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["STALE"]},{"dst":"fe80::215:1ff:fe00:1","dev":"swp34","lladdr":"00:15:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::20c:29ff:fefe:dd05","dev":"ma1","lladdr":"00:0c:29:fe:dd:05","state":["STALE"]},{"dst":"2001:2222::4","dev":"swp34","lladdr":"00:15:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:1111::6","dev":"swp33","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:2222::2","dev":"swp34","lladdr":"00:14:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:1111::4","dev":"swp33","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"swp34","lladdr":"00:14:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"swp33","lladdr":"00:13:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp33","lladdr":"00:12:01:00:00:01","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=131, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=131, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=25] Channel closed DEBUG infra2:Logger.py:156 ip address delete 2001:1111::3/64 dev swp33 && ip address delete 2001:2222::3/64 dev swp34 INFO asyncssh:logging.py:92 [conn=131, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=26] Command: ip address delete 2001:1111::3/64 dev swp33 && ip address delete 2001:2222::3/64 dev swp34 INFO asyncssh:logging.py:92 [conn=131, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=26] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=131, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=131, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=27] Channel closed DEBUG infra2:Logger.py:156 ip -j address show INFO asyncssh:logging.py:92 [conn=131, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=28] Command: ip -j address show INFO asyncssh:logging.py:92 [conn=131, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=28] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","addr_info":[{"family":"inet","local":"127.0.0.1","prefixlen":8,"scope":"host","label":"lo","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet","local":"20.20.0.1","prefixlen":32,"scope":"global","label":"lo","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"::1","prefixlen":128,"scope":"host","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"f6:33:41:29:6d:87","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","addr_info":[]},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"10.36.118.23","prefixlen":24,"broadcast":"10.36.118.255","scope":"global","label":"ma1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:6482","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:1111::5","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"2001:1111::1","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a5","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:2222::5","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"2001:2222::1","prefixlen":64,"scope":"global","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a6","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a7","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a8","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f7345750>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5_2001:1111::2/64 <-> 10.36.118.199:2:6_2001:2222::2/64 SIP-DIP 2001:1111:0:0:0:0:0:2-2001:2222:0:0:0:0:0:2 Tx 95401 Rx 95401 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:5_2001:1111::2/64 <-> 10.36.118.199:2:6_2001:2222::2/64 SIP-DIP 2001:2222:0:0:0:0:0:2-2001:1111:0:0:0:0:0:2 Tx 95401 Rx 95401 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5_2001:1111::4/64 <-> 10.36.118.199:2:6_2001:2222::4/64 SIP-DIP 2001:1111:0:0:0:0:0:4-2001:2222:0:0:0:0:0:4 Tx 95401 Rx 95401 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:5_2001:1111::4/64 <-> 10.36.118.199:2:6_2001:2222::4/64 SIP-DIP 2001:2222:0:0:0:0:0:4-2001:1111:0:0:0:0:0:4 Tx 95401 Rx 95401 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5_2001:1111::6/64 <-> 10.36.118.199:2:6_2001:2222::6/64 SIP-DIP 2001:1111:0:0:0:0:0:6-2001:2222:0:0:0:0:0:6 Tx 95401 Rx 95401 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:5_2001:1111::6/64 <-> 10.36.118.199:2:6_2001:2222::6/64 SIP-DIP 2001:2222:0:0:0:0:0:6-2001:1111:0:0:0:0:0:6 Tx 95401 Rx 95401 Loss 0.000 INFO asyncssh:logging.py:92 [conn=131, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=131, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=29] Channel closed DEBUG infra2:Logger.py:156 ip address delete 2001:1111::5/64 dev swp33 && ip address delete 2001:2222::5/64 dev swp34 && ip address delete 2001:1111::1/64 dev swp33 && ip address delete 2001:2222::1/64 dev swp34 INFO asyncssh:logging.py:92 [conn=131, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=30] Command: ip address delete 2001:1111::5/64 dev swp33 && ip address delete 2001:2222::5/64 dev swp34 && ip address delete 2001:1111::1/64 dev swp33 && ip address delete 2001:2222::1/64 dev swp34 INFO asyncssh:logging.py:92 [conn=131, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=30] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=131, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=131, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=31] Channel closed DEBUG infra2:Logger.py:156 ip -j address show INFO asyncssh:logging.py:92 [conn=131, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=32] Command: ip -j address show INFO asyncssh:logging.py:92 [conn=131, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=32] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","addr_info":[{"family":"inet","local":"127.0.0.1","prefixlen":8,"scope":"host","label":"lo","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet","local":"20.20.0.1","prefixlen":32,"scope":"global","label":"lo","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"::1","prefixlen":128,"scope":"host","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"f6:33:41:29:6d:87","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","addr_info":[]},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"10.36.118.23","prefixlen":24,"broadcast":"10.36.118.255","scope":"global","label":"ma1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:6482","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a5","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a6","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a7","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a8","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f7444970>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5_2001:1111::2/64 <-> 10.36.118.199:2:6_2001:2222::2/64 SIP-DIP 2001:1111:0:0:0:0:0:2-2001:2222:0:0:0:0:0:2 Tx 94711 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:5_2001:1111::2/64 <-> 10.36.118.199:2:6_2001:2222::2/64 SIP-DIP 2001:2222:0:0:0:0:0:2-2001:1111:0:0:0:0:0:2 Tx 94711 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5_2001:1111::4/64 <-> 10.36.118.199:2:6_2001:2222::4/64 SIP-DIP 2001:1111:0:0:0:0:0:4-2001:2222:0:0:0:0:0:4 Tx 94711 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:5_2001:1111::4/64 <-> 10.36.118.199:2:6_2001:2222::4/64 SIP-DIP 2001:2222:0:0:0:0:0:4-2001:1111:0:0:0:0:0:4 Tx 94711 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5_2001:1111::6/64 <-> 10.36.118.199:2:6_2001:2222::6/64 SIP-DIP 2001:1111:0:0:0:0:0:6-2001:2222:0:0:0:0:0:6 Tx 94711 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:5_2001:1111::6/64 <-> 10.36.118.199:2:6_2001:2222::6/64 SIP-DIP 2001:2222:0:0:0:0:0:6-2001:1111:0:0:0:0:0:6 Tx 94711 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=131, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=131, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=33] Channel closed DEBUG infra2:Logger.py:156 ip address add 2001:1111::1/64 dev swp33 && ip address add 2001:2222::1/64 dev swp34 && ip address add 2001:1111::3/64 dev swp33 && ip address add 2001:2222::3/64 dev swp34 && ip address add 2001:1111::5/64 dev swp33 && ip address add 2001:2222::5/64 dev swp34 INFO asyncssh:logging.py:92 [conn=131, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=34] Command: ip address add 2001:1111::1/64 dev swp33 && ip address add 2001:2222::1/64 dev swp34 && ip address add 2001:1111::3/64 dev swp33 && ip address add 2001:2222::3/64 dev swp34 && ip address add 2001:1111::5/64 dev swp33 && ip address add 2001:2222::5/64 dev swp34 INFO asyncssh:logging.py:92 [conn=131, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=34] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=131, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=131, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=35] Channel closed DEBUG infra2:Logger.py:156 ip -j address show INFO asyncssh:logging.py:92 [conn=131, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=36] Command: ip -j address show INFO asyncssh:logging.py:92 [conn=131, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=36] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","addr_info":[{"family":"inet","local":"127.0.0.1","prefixlen":8,"scope":"host","label":"lo","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet","local":"20.20.0.1","prefixlen":32,"scope":"global","label":"lo","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"::1","prefixlen":128,"scope":"host","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"f6:33:41:29:6d:87","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","addr_info":[]},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"10.36.118.23","prefixlen":24,"broadcast":"10.36.118.255","scope":"global","label":"ma1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:6482","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:1111::5","prefixlen":64,"scope":"global","tentative":true,"valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"2001:1111::3","prefixlen":64,"scope":"global","tentative":true,"valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"2001:1111::1","prefixlen":64,"scope":"global","tentative":true,"valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a5","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:2222::5","prefixlen":64,"scope":"global","tentative":true,"valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"2001:2222::3","prefixlen":64,"scope":"global","tentative":true,"valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"2001:2222::1","prefixlen":64,"scope":"global","tentative":true,"valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a6","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a7","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a8","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f73457b0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5_2001:1111::2/64 <-> 10.36.118.199:2:6_2001:2222::2/64 SIP-DIP 2001:1111:0:0:0:0:0:2-2001:2222:0:0:0:0:0:2 Tx 94587 Rx 94587 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:5_2001:1111::2/64 <-> 10.36.118.199:2:6_2001:2222::2/64 SIP-DIP 2001:2222:0:0:0:0:0:2-2001:1111:0:0:0:0:0:2 Tx 94587 Rx 94587 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5_2001:1111::4/64 <-> 10.36.118.199:2:6_2001:2222::4/64 SIP-DIP 2001:1111:0:0:0:0:0:4-2001:2222:0:0:0:0:0:4 Tx 94587 Rx 94587 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:5_2001:1111::4/64 <-> 10.36.118.199:2:6_2001:2222::4/64 SIP-DIP 2001:2222:0:0:0:0:0:4-2001:1111:0:0:0:0:0:4 Tx 94587 Rx 94587 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5_2001:1111::6/64 <-> 10.36.118.199:2:6_2001:2222::6/64 SIP-DIP 2001:1111:0:0:0:0:0:6-2001:2222:0:0:0:0:0:6 Tx 94587 Rx 94587 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:5_2001:1111::6/64 <-> 10.36.118.199:2:6_2001:2222::6/64 SIP-DIP 2001:2222:0:0:0:0:0:6-2001:1111:0:0:0:0:0:6 Tx 94587 Rx 94587 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv6_secondary_addr from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6.py INFO DENT:Logger.py:147 Restoring sysctl values INFO asyncssh:logging.py:92 [conn=131, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=131, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=37] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=0&& sysctl net.ipv6.neigh.swp33.base_reachable_time_ms=30000&& sysctl net.ipv6.neigh.swp34.base_reachable_time_ms=30000 INFO asyncssh:logging.py:92 [conn=131, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=38] Command: sysctl net.ipv6.conf.all.forwarding=0&& sysctl net.ipv6.neigh.swp33.base_reachable_time_ms=30000&& sysctl net.ipv6.neigh.swp34.base_reachable_time_ms=30000 INFO asyncssh:logging.py:92 [conn=131, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=38] Channel closed DEBUG infra2:Logger.py:156 net.ipv6.conf.all.forwarding = 0 net.ipv6.neigh.swp33.base_reachable_time_ms = 30000 net.ipv6.neigh.swp34.base_reachable_time_ms = 30000 INFO DENT:Logger.py:147 Restoring sysctl values INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=131, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=131, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=39] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=131, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=40] Command: date INFO asyncssh:logging.py:92 [conn=131, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=40] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 23:42:26 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=131, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=131, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=41] Channel closed DEBUG infra2:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 INFO asyncssh:logging.py:92 [conn=131, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=42] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 INFO asyncssh:logging.py:92 [conn=131, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=42] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=131, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=131, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=43] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=131, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=44] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=131, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=44] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"f6:33:41:29:6d:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=131, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=131, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=45] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=131, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=131, chan=46] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=131, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=131, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=131, chan=46] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/ipv6/test_ipv6_bridge.py::test_ipv6_on_bridge | 155.47 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-7461' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv6_on_bridge">Starting testcase:test_ipv6_on_bridge from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_bridge.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=131, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=132] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=132] Local address: 172.17.0.3, port 45742 INFO asyncssh:logging.py:92 [conn=132] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=132] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=132] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=132, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 23:42:27 UTC 2023 INFO asyncssh:logging.py:92 [conn=132, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=1] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=132, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=2] Command: sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=132, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=2] Channel closed DEBUG infra2:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO asyncssh:logging.py:92 [conn=132, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=3] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=132, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=4] Command: sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=132, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=4] Channel closed DEBUG infra2:Logger.py:156 net.ipv6.conf.all.forwarding = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=132, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=132, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=6] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 23:42:27 UTC 2023 INFO asyncssh:logging.py:92 [conn=132, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge vlan_filtering 0 && ip link add br1 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=132, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=8] Command: ip link add br0 type bridge vlan_filtering 0 && ip link add br1 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=132, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=132, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br1 && ip link set dev br0 up && ip link set dev br1 up INFO asyncssh:logging.py:92 [conn=132, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br1 && ip link set dev br0 up && ip link set dev br1 up INFO asyncssh:logging.py:92 [conn=132, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=132, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=11] Channel closed DEBUG infra2:Logger.py:156 ip address add 2001:1111::1/64 dev swp33 && ip address add 2001:2222::1/64 dev br0 && ip address add 2001:3333::1/64 dev br1 && ip address add 2001:4444::1/64 dev swp33 && ip address add 2001:5555::1/64 dev br0 && ip address add 2001:6666::1/64 dev br1 INFO asyncssh:logging.py:92 [conn=132, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=12] Command: ip address add 2001:1111::1/64 dev swp33 && ip address add 2001:2222::1/64 dev br0 && ip address add 2001:3333::1/64 dev br1 && ip address add 2001:4444::1/64 dev swp33 && ip address add 2001:5555::1/64 dev br0 && ip address add 2001:6666::1/64 dev br1 INFO asyncssh:logging.py:92 [conn=132, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_2001:1111::2/64', 'count': 1, 'ip': '2001:1111::2', 'gw': '2001:1111::1', 'plen': 64, 'vlan': None, 'version': 'ipv6'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_2001:4444::2/64', 'count': 1, 'ip': '2001:4444::2', 'gw': '2001:4444::1', 'plen': 64, 'vlan': None, 'version': 'ipv6'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2001:2222::2/64', 'count': 1, 'ip': '2001:2222::2', 'gw': '2001:2222::1', 'plen': 64, 'vlan': None, 'version': 'ipv6'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2001:5555::2/64', 'count': 1, 'ip': '2001:5555::2', 'gw': '2001:5555::1', 'plen': 64, 'vlan': None, 'version': 'ipv6'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_2001:3333::2/64', 'count': 1, 'ip': '2001:3333::2', 'gw': '2001:3333::1', 'plen': 64, 'vlan': None, 'version': 'ipv6'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_2001:6666::2/64', 'count': 1, 'ip': '2001:6666::2', 'gw': '2001:6666::1', 'plen': 64, 'vlan': None, 'version': 'ipv6'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:5 <-> 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:5_2001:1111::2/64 to 10.36.118.199:2:6_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:5_2001:1111::2/64 to 10.36.118.199:2:6_2001:5555::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:5_2001:4444::2/64 to 10.36.118.199:2:6_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:5_2001:4444::2/64 to 10.36.118.199:2:6_2001:5555::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:5 <-> 10.36.118.199:2:7 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:5_2001:1111::2/64 to 10.36.118.199:2:7_2001:3333::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:5_2001:1111::2/64 to 10.36.118.199:2:7_2001:6666::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:5_2001:4444::2/64 to 10.36.118.199:2:7_2001:3333::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:5_2001:4444::2/64 to 10.36.118.199:2:7_2001:6666::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:6 <-> 10.36.118.199:2:7 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:6_2001:2222::2/64 to 10.36.118.199:2:7_2001:3333::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:6_2001:2222::2/64 to 10.36.118.199:2:7_2001:6666::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:6_2001:5555::2/64 to 10.36.118.199:2:7_2001:3333::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:6_2001:5555::2/64 to 10.36.118.199:2:7_2001:6666::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_2001:1111::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_2001:4444::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2001:5555::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_2001:3333::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_2001:6666::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=132, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=132, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=14] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=132, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=14] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.23","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=132, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=132, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=16] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=132, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"2001:1111::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:2222::/64","dev":"br0","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:3333::/64","dev":"br1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:4444::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:5555::/64","dev":"br0","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:6666::/64","dev":"br1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"br0","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"br1","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f75b9ff0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:6 SIP-DIP 2001:1111:0:0:0:0:0:2-2001:2222:0:0:0:0:0:2 Tx 54896 Rx 54896 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:6 SIP-DIP 2001:1111:0:0:0:0:0:2-2001:5555:0:0:0:0:0:2 Tx 54896 Rx 54896 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:6 SIP-DIP 2001:2222:0:0:0:0:0:2-2001:1111:0:0:0:0:0:2 Tx 54896 Rx 54896 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:6 SIP-DIP 2001:5555:0:0:0:0:0:2-2001:1111:0:0:0:0:0:2 Tx 54896 Rx 54896 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:6 #1 SIP-DIP 2001:2222:0:0:0:0:0:2-2001:4444:0:0:0:0:0:2 Tx 54896 Rx 54896 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:6 #1 SIP-DIP 2001:4444:0:0:0:0:0:2-2001:2222:0:0:0:0:0:2 Tx 54896 Rx 54896 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:6 #1 SIP-DIP 2001:4444:0:0:0:0:0:2-2001:5555:0:0:0:0:0:2 Tx 54896 Rx 54896 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:6 #1 SIP-DIP 2001:5555:0:0:0:0:0:2-2001:4444:0:0:0:0:0:2 Tx 54896 Rx 54896 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:7 SIP-DIP 2001:1111:0:0:0:0:0:2-2001:3333:0:0:0:0:0:2 Tx 54896 Rx 54896 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:7 SIP-DIP 2001:1111:0:0:0:0:0:2-2001:6666:0:0:0:0:0:2 Tx 54896 Rx 54896 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:7 SIP-DIP 2001:3333:0:0:0:0:0:2-2001:1111:0:0:0:0:0:2 Tx 54896 Rx 54896 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:7 SIP-DIP 2001:6666:0:0:0:0:0:2-2001:1111:0:0:0:0:0:2 Tx 54896 Rx 54896 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:7 #1 SIP-DIP 2001:3333:0:0:0:0:0:2-2001:4444:0:0:0:0:0:2 Tx 54896 Rx 54896 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:7 #1 SIP-DIP 2001:4444:0:0:0:0:0:2-2001:3333:0:0:0:0:0:2 Tx 54896 Rx 54896 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:7 #1 SIP-DIP 2001:4444:0:0:0:0:0:2-2001:6666:0:0:0:0:0:2 Tx 54896 Rx 54896 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:7 #1 SIP-DIP 2001:6666:0:0:0:0:0:2-2001:4444:0:0:0:0:0:2 Tx 54896 Rx 54896 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:7 TI 10.36.118.199:2:6 <-> 10.36.118.199:2:7 SIP-DIP 2001:2222:0:0:0:0:0:2-2001:3333:0:0:0:0:0:2 Tx 54896 Rx 54896 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:7 TI 10.36.118.199:2:6 <-> 10.36.118.199:2:7 SIP-DIP 2001:2222:0:0:0:0:0:2-2001:6666:0:0:0:0:0:2 Tx 54896 Rx 54896 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:6 <-> 10.36.118.199:2:7 SIP-DIP 2001:3333:0:0:0:0:0:2-2001:2222:0:0:0:0:0:2 Tx 54896 Rx 54896 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:6 <-> 10.36.118.199:2:7 SIP-DIP 2001:6666:0:0:0:0:0:2-2001:2222:0:0:0:0:0:2 Tx 54896 Rx 54896 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:6 <-> 10.36.118.199:2:7 #1 SIP-DIP 2001:3333:0:0:0:0:0:2-2001:5555:0:0:0:0:0:2 Tx 54896 Rx 54896 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:7 TI 10.36.118.199:2:6 <-> 10.36.118.199:2:7 #1 SIP-DIP 2001:5555:0:0:0:0:0:2-2001:3333:0:0:0:0:0:2 Tx 54896 Rx 54896 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:7 TI 10.36.118.199:2:6 <-> 10.36.118.199:2:7 #1 SIP-DIP 2001:5555:0:0:0:0:0:2-2001:6666:0:0:0:0:0:2 Tx 54896 Rx 54896 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:6 <-> 10.36.118.199:2:7 #1 SIP-DIP 2001:6666:0:0:0:0:0:2-2001:5555:0:0:0:0:0:2 Tx 54896 Rx 54896 Loss 0.000 INFO asyncssh:logging.py:92 [conn=132, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=132, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=18] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=132, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=18] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=132, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=132, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=20] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=132, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=20] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"2001:2222::2","dev":"br0","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::216:1ff:fe00:1","dev":"br1","lladdr":"00:16:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:5555::2","dev":"br0","lladdr":"00:14:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:4444::2","dev":"swp33","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::215:1ff:fe00:1","dev":"br1","lladdr":"00:15:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["STALE"]},{"dst":"fe80::20c:29ff:fefe:dd05","dev":"ma1","lladdr":"00:0c:29:fe:dd:05","state":["STALE"]},{"dst":"2001:3333::2","dev":"br1","lladdr":"00:15:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"br0","lladdr":"00:14:01:00:00:01","state":["STALE"]},{"dst":"2001:6666::2","dev":"br1","lladdr":"00:16:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"br0","lladdr":"00:13:01:00:00:01","state":["STALE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp33","lladdr":"00:12:01:00:00:01","state":["STALE"]}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv6_on_bridge from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_bridge.py INFO asyncssh:logging.py:92 [conn=132, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=21] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=132, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=22] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 23:45:01 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=132, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=23] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=132, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=24] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=132, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=24] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":131,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":132,"ifname":"br1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=132, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=25] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 && ip link delete br1 INFO asyncssh:logging.py:92 [conn=132, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=26] Command: ip link delete br0 && ip link delete br1 INFO asyncssh:logging.py:92 [conn=132, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=26] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:147 Restoring sysctl values INFO asyncssh:logging.py:92 [conn=132, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=27] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=132, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=28] Command: sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=132, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=28] Channel closed DEBUG infra2:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=132, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=29] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=132, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=30] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 23:45:02 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=132, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=31] Channel closed DEBUG infra2:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 INFO asyncssh:logging.py:92 [conn=132, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=32] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 INFO asyncssh:logging.py:92 [conn=132, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=32] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=132, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=33] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=132, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=34] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=132, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=34] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"f6:33:41:29:6d:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=132, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=132, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=35] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=132, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=132, chan=36] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=132, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=132, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=132, chan=36] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/ipv6/test_ipv6_bridge.py::test_ipv6_on_bridge_vlan | 143.92 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-7510' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv6_on_bridge_vlan">Starting testcase:test_ipv6_on_bridge_vlan from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_bridge.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=132, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=133] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=133] Local address: 172.17.0.3, port 48254 INFO asyncssh:logging.py:92 [conn=133] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=133] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=133] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=133, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=133, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 23:45:02 UTC 2023 INFO asyncssh:logging.py:92 [conn=133, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=133, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=1] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=133, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=2] Command: sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=133, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=2] Channel closed DEBUG infra2:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO asyncssh:logging.py:92 [conn=133, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=133, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=3] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=133, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=4] Command: sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=133, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=4] Channel closed DEBUG infra2:Logger.py:156 net.ipv6.conf.all.forwarding = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=133, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=133, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=133, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=133, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=6] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 23:45:02 UTC 2023 INFO asyncssh:logging.py:92 [conn=133, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=133, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=133, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=8] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=133, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=133, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=133, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp34 master br0 && ip link set dev swp35 master br0 INFO asyncssh:logging.py:92 [conn=133, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=10] Command: ip link set dev swp34 master br0 && ip link set dev swp35 master br0 INFO asyncssh:logging.py:92 [conn=133, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=133, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=133, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=11] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev br0 vid 3099 self && bridge vlan add dev br0 vid 3101 self && bridge vlan add dev br0 vid 3255 self && bridge vlan add dev br0 vid 536 self && bridge vlan add dev swp34 vid 3099 && bridge vlan add dev swp35 vid 3101 && bridge vlan add dev swp34 vid 3255 && bridge vlan add dev swp35 vid 536 INFO asyncssh:logging.py:92 [conn=133, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=12] Command: bridge vlan add dev br0 vid 3099 self && bridge vlan add dev br0 vid 3101 self && bridge vlan add dev br0 vid 3255 self && bridge vlan add dev br0 vid 536 self && bridge vlan add dev swp34 vid 3099 && bridge vlan add dev swp35 vid 3101 && bridge vlan add dev swp34 vid 3255 && bridge vlan add dev swp35 vid 536 INFO asyncssh:logging.py:92 [conn=133, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=133, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=133, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip link add link br0 name br0.3099 type vlan id 3099 && ip link add link br0 name br0.3101 type vlan id 3101 && ip link add link br0 name br0.3255 type vlan id 3255 && ip link add link br0 name br0.536 type vlan id 536 INFO asyncssh:logging.py:92 [conn=133, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=14] Command: ip link add link br0 name br0.3099 type vlan id 3099 && ip link add link br0 name br0.3101 type vlan id 3101 && ip link add link br0 name br0.3255 type vlan id 3255 && ip link add link br0 name br0.536 type vlan id 536 INFO asyncssh:logging.py:92 [conn=133, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=133, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=133, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev br0.3099 up && ip link set dev br0.3101 up && ip link set dev br0.3255 up && ip link set dev br0.536 up INFO asyncssh:logging.py:92 [conn=133, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=16] Command: ip link set dev br0 up && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev br0.3099 up && ip link set dev br0.3101 up && ip link set dev br0.3255 up && ip link set dev br0.536 up INFO asyncssh:logging.py:92 [conn=133, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=133, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=133, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip address add 2001:10::1/64 dev br0.3099 && ip address add 2001:20::1/64 dev br0.3101 && ip address add 2001:30::1/64 dev br0.3255 && ip address add 2001:40::1/64 dev br0.536 && ip address add 2001:100::1/64 dev swp33 INFO asyncssh:logging.py:92 [conn=133, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=18] Command: ip address add 2001:10::1/64 dev br0.3099 && ip address add 2001:20::1/64 dev br0.3101 && ip address add 2001:30::1/64 dev br0.3255 && ip address add 2001:40::1/64 dev br0.536 && ip address add 2001:100::1/64 dev swp33 INFO asyncssh:logging.py:92 [conn=133, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_2001:100::2/64', 'count': 1, 'ip': '2001:100::2', 'gw': '2001:100::1', 'plen': 64, 'vlan': None, 'version': 'ipv6'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2001:10::2/64', 'count': 1, 'ip': '2001:10::2', 'gw': '2001:10::1', 'plen': 64, 'vlan': 3099, 'version': 'ipv6'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2001:30::2/64', 'count': 1, 'ip': '2001:30::2', 'gw': '2001:30::1', 'plen': 64, 'vlan': 3255, 'version': 'ipv6'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_2001:20::2/64', 'count': 1, 'ip': '2001:20::2', 'gw': '2001:20::1', 'plen': 64, 'vlan': 3101, 'version': 'ipv6'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_2001:40::2/64', 'count': 1, 'ip': '2001:40::2', 'gw': '2001:40::1', 'plen': 64, 'vlan': 536, 'version': 'ipv6'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:5 <-> 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:5_2001:100::2/64 to 10.36.118.199:2:6_2001:10::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:5_2001:100::2/64 to 10.36.118.199:2:6_2001:30::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:5 <-> 10.36.118.199:2:7 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:5_2001:100::2/64 to 10.36.118.199:2:7_2001:20::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:5_2001:100::2/64 to 10.36.118.199:2:7_2001:40::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:6 <-> 10.36.118.199:2:7 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:6_2001:10::2/64 to 10.36.118.199:2:7_2001:20::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:6_2001:10::2/64 to 10.36.118.199:2:7_2001:40::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:6_2001:30::2/64 to 10.36.118.199:2:7_2001:20::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:6_2001:30::2/64 to 10.36.118.199:2:7_2001:40::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_2001:100::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2001:10::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2001:30::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_2001:20::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_2001:40::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f7578a00>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:6 SIP-DIP 2001:10:0:0:0:0:0:2-2001:100:0:0:0:0:0:2 Tx 616736 Rx 616736 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:6 SIP-DIP 2001:30:0:0:0:0:0:2-2001:100:0:0:0:0:0:2 Tx 616735 Rx 616735 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:6 SIP-DIP 2001:100:0:0:0:0:0:2-2001:10:0:0:0:0:0:2 Tx 54273 Rx 54273 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:6 SIP-DIP 2001:100:0:0:0:0:0:2-2001:30:0:0:0:0:0:2 Tx 54273 Rx 54273 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:7 SIP-DIP 2001:20:0:0:0:0:0:2-2001:100:0:0:0:0:0:2 Tx 616736 Rx 616736 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:7 SIP-DIP 2001:40:0:0:0:0:0:2-2001:100:0:0:0:0:0:2 Tx 616735 Rx 616735 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:7 SIP-DIP 2001:100:0:0:0:0:0:2-2001:20:0:0:0:0:0:2 Tx 54273 Rx 54273 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:7 SIP-DIP 2001:100:0:0:0:0:0:2-2001:40:0:0:0:0:0:2 Tx 54273 Rx 54273 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:7 TI 10.36.118.199:2:6 <-> 10.36.118.199:2:7 SIP-DIP 2001:10:0:0:0:0:0:2-2001:20:0:0:0:0:0:2 Tx 54273 Rx 54273 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:7 TI 10.36.118.199:2:6 <-> 10.36.118.199:2:7 SIP-DIP 2001:10:0:0:0:0:0:2-2001:40:0:0:0:0:0:2 Tx 54273 Rx 54273 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:6 <-> 10.36.118.199:2:7 SIP-DIP 2001:20:0:0:0:0:0:2-2001:10:0:0:0:0:0:2 Tx 54273 Rx 54273 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:6 <-> 10.36.118.199:2:7 SIP-DIP 2001:40:0:0:0:0:0:2-2001:10:0:0:0:0:0:2 Tx 54273 Rx 54273 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:6 <-> 10.36.118.199:2:7 #1 SIP-DIP 2001:20:0:0:0:0:0:2-2001:30:0:0:0:0:0:2 Tx 54273 Rx 54273 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:7 TI 10.36.118.199:2:6 <-> 10.36.118.199:2:7 #1 SIP-DIP 2001:30:0:0:0:0:0:2-2001:20:0:0:0:0:0:2 Tx 54273 Rx 54273 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:7 TI 10.36.118.199:2:6 <-> 10.36.118.199:2:7 #1 SIP-DIP 2001:30:0:0:0:0:0:2-2001:40:0:0:0:0:0:2 Tx 54273 Rx 54273 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:6 <-> 10.36.118.199:2:7 #1 SIP-DIP 2001:40:0:0:0:0:0:2-2001:30:0:0:0:0:0:2 Tx 54273 Rx 54273 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv6_on_bridge_vlan from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_bridge.py INFO asyncssh:logging.py:92 [conn=133, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=133, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=19] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=133, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=133, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=20] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 23:47:25 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=133, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=133, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=133, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=22] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=133, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=22] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":133,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=133, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=133, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=23] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=133, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=24] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=133, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=24] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:147 Restoring sysctl values INFO asyncssh:logging.py:92 [conn=133, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=133, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=25] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=133, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=26] Command: sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=133, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=26] Channel closed DEBUG infra2:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=133, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=133, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=27] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=133, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=133, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=28] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 23:47:26 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=133, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=133, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=29] Channel closed DEBUG infra2:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 INFO asyncssh:logging.py:92 [conn=133, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=30] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 INFO asyncssh:logging.py:92 [conn=133, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=30] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=133, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=133, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=31] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=133, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=32] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=133, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=32] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"f6:33:41:29:6d:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=133, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=133, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=33] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=133, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=133, chan=34] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=133, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=133, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=133, chan=34] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/ipv6/test_ipv6_bridge.py::test_ipv6_move_host_on_bridge | 235.45 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-7557' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv6_move_host_on_bridge">Starting testcase:test_ipv6_move_host_on_bridge from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_bridge.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=133, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=134] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=134] Local address: 172.17.0.3, port 33116 INFO asyncssh:logging.py:92 [conn=134] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=134] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=134] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=134, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=134, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 23:47:26 UTC 2023 INFO asyncssh:logging.py:92 [conn=134, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=134, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=1] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=134, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=2] Command: sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=134, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=2] Channel closed DEBUG infra2:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO asyncssh:logging.py:92 [conn=134, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=134, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=3] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=134, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=4] Command: sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=134, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=4] Channel closed DEBUG infra2:Logger.py:156 net.ipv6.conf.all.forwarding = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=134, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=134, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=134, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=134, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=6] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 23:47:26 UTC 2023 INFO asyncssh:logging.py:92 [conn=134, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=134, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=134, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=8] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=134, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=134, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=134, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=134, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=10] Command: ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=134, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=134, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=134, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=11] Channel closed DEBUG infra2:Logger.py:156 ip address add 2001:1111::1/64 dev swp33 && ip address add 2001:2222::1/64 dev br0 INFO asyncssh:logging.py:92 [conn=134, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=12] Command: ip address add 2001:1111::1/64 dev swp33 && ip address add 2001:2222::1/64 dev br0 INFO asyncssh:logging.py:92 [conn=134, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_2001:1111::2/64', 'count': 1, 'ip': '2001:1111::2', 'gw': '2001:1111::1', 'plen': 64, 'vlan': None, 'version': 'ipv6'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp br0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2001:2222::2/64', 'count': 1, 'ip': '2001:2222::2', 'gw': '2001:2222::1', 'plen': 64, 'vlan': None, 'version': 'ipv6'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:5 <-> 10.36.118.199:2:6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:5_2001:1111::2/64 to 10.36.118.199:2:6_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_2001:1111::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=134, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=134, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=134, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=14] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=134, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=14] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.23","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=134, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=134, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=134, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=16] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=134, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"2001:1111::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:2222::/64","dev":"br0","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"br0","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f73b5e70>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:6 SIP-DIP 2001:1111:0:0:0:0:0:2-2001:2222:0:0:0:0:0:2 Tx 58966 Rx 58966 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:6 SIP-DIP 2001:2222:0:0:0:0:0:2-2001:1111:0:0:0:0:0:2 Tx 58966 Rx 58966 Loss 0.000 INFO asyncssh:logging.py:92 [conn=134, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=134, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=134, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=18] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=134, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=18] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=134, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=134, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=134, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=20] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=134, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=20] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"br0","lladdr":"00:12:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["STALE"]},{"dst":"fe80::20c:29ff:fefe:dd05","dev":"ma1","lladdr":"00:0c:29:fe:dd:05","state":["STALE"]},{"dst":"2001:2222::2","dev":"br0","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_2001:1111::2/64', 'count': 1, 'ip': '2001:1111::2', 'gw': '2001:1111::1', 'plen': 64, 'vlan': None, 'version': 'ipv6'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_::/64', 'count': 1, 'ip': '::', 'gw': '::', 'plen': 64, 'vlan': None, 'version': 'ipv6'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_2001:2222::2/64', 'count': 1, 'ip': '2001:2222::2', 'gw': '2001:2222::1', 'plen': 64, 'vlan': None, 'version': 'ipv6'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:5 <-> 10.36.118.199:2:7 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:5_2001:1111::2/64 to 10.36.118.199:2:7_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_2001:1111::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_::/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f730ae60>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:7 SIP-DIP 2001:1111:0:0:0:0:0:2-2001:2222:0:0:0:0:0:2 Tx 57253 Rx 57253 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:5 <-> 10.36.118.199:2:7 SIP-DIP 2001:2222:0:0:0:0:0:2-2001:1111:0:0:0:0:0:2 Tx 57253 Rx 57253 Loss 0.000 INFO asyncssh:logging.py:92 [conn=134, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=134, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=134, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=22] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=134, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=22] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.23","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=134, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=134, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=23] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=134, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=24] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=134, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=24] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"2001:1111::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:2222::/64","dev":"br0","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"br0","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] INFO asyncssh:logging.py:92 [conn=134, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=134, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=25] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=134, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=26] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=134, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=26] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=134, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=134, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=27] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=134, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=28] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=134, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=28] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::213:1ff:fe00:1","dev":"br0","lladdr":"00:13:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["STALE"]},{"dst":"fe80::20c:29ff:fefe:dd05","dev":"ma1","lladdr":"00:0c:29:fe:dd:05","state":["STALE"]},{"dst":"2001:2222::2","dev":"br0","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::d805:4bff:fe25:e4db","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv6_move_host_on_bridge from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_bridge.py INFO asyncssh:logging.py:92 [conn=134, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=134, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=29] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=134, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=134, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=30] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 23:51:21 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=134, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=134, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=31] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=134, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=32] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=134, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=32] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":138,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=134, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=134, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=33] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=134, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=34] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=134, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=34] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:147 Restoring sysctl values INFO asyncssh:logging.py:92 [conn=134, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=134, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=35] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=134, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=36] Command: sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=134, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=36] Channel closed DEBUG infra2:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=134, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=134, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=37] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=134, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=38] Command: date INFO asyncssh:logging.py:92 [conn=134, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=38] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 23:51:21 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=134, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=134, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=39] Channel closed DEBUG infra2:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 INFO asyncssh:logging.py:92 [conn=134, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=40] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 INFO asyncssh:logging.py:92 [conn=134, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=40] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=134, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=134, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=41] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=134, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=42] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=134, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=42] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"f6:33:41:29:6d:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=134, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=134, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=43] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=134, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=134, chan=44] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=134, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=134, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=134, chan=44] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/ipv6/test_ipv6_ipv4.py::test_ipv64_nh_reconfig | 358.56 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-7614' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv64_nh_reconfig">Starting testcase:test_ipv64_nh_reconfig from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_ipv4.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=134, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=135] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=135] Local address: 172.17.0.3, port 52100 INFO asyncssh:logging.py:92 [conn=135] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=135] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=135] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=135, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 23:51:22 UTC 2023 INFO asyncssh:logging.py:92 [conn=135, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=1] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=135, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=2] Command: sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=135, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=2] Channel closed DEBUG infra2:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO asyncssh:logging.py:92 [conn=135, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=3] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=135, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=4] Command: sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=135, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=4] Channel closed DEBUG infra2:Logger.py:156 net.ipv6.conf.all.forwarding = 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=135, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=135, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=6] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 23:51:22 UTC 2023 INFO asyncssh:logging.py:92 [conn=135, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=7] Channel closed DEBUG infra2:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=135, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=8] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=135, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=8] Channel closed DEBUG infra2:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=135, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=9] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=135, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=10] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=135, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=10] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=135, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=11] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=135, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=12] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 23:51:22 UTC 2023 INFO asyncssh:logging.py:92 [conn=135, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=135, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=14] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=135, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=14] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"f6:33:41:29:6d:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_2001:1::2/64', 'count': 1, 'ip': '2001:1::2', 'gw': '2001:1::1', 'plen': 64, 'vlan': None, 'version': 'ipv6'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.2.1.2/24', 'count': 1, 'ip': '1.2.1.2', 'gw': '1.2.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2001:2::2/64', 'count': 1, 'ip': '2001:2::2', 'gw': '2001:2::1', 'plen': 64, 'vlan': None, 'version': 'ipv6'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_1.3.1.2/24', 'count': 1, 'ip': '1.3.1.2', 'gw': '1.3.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_2001:3::2/64', 'count': 1, 'ip': '2001:3::2', 'gw': '2001:3::1', 'plen': 64, 'vlan': None, 'version': 'ipv6'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_1.4.1.2/24', 'count': 1, 'ip': '1.4.1.2', 'gw': '1.4.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_2001:4::2/64', 'count': 1, 'ip': '2001:4::2', 'gw': '2001:4::1', 'plen': 64, 'vlan': None, 'version': 'ipv6'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=135, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=135, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=16] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=135, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=135, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 1.2.1.1/24 dev swp34 && ip address add 1.3.1.1/24 dev swp35 && ip address add 1.4.1.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=135, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=18] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 1.2.1.1/24 dev swp34 && ip address add 1.3.1.1/24 dev swp35 && ip address add 1.4.1.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=135, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=135, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip neigh add 1.1.1.5 lladdr 02:00:00:00:00:01 dev swp33 INFO asyncssh:logging.py:92 [conn=135, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=20] Command: ip neigh add 1.1.1.5 lladdr 02:00:00:00:00:01 dev swp33 INFO asyncssh:logging.py:92 [conn=135, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=135, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip route add 48.0.0.0/24 nexthop via 1.1.1.5 INFO asyncssh:logging.py:92 [conn=135, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=22] Command: ip route add 48.0.0.0/24 nexthop via 1.1.1.5 INFO asyncssh:logging.py:92 [conn=135, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=22] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:5 <-> ['10.36.118.199:2:6', '10.36.118.199:2:7', '10.36.118.199:2:8'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:5_1.1.1.2/24 to 10.36.118.199:2:6_1.2.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:5_1.1.1.2/24 to 10.36.118.199:2:7_1.3.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:5_1.1.1.2/24 to 10.36.118.199:2:8_1.4.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:6 <-> ['10.36.118.199:2:7', '10.36.118.199:2:8'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:6_1.2.1.2/24 to 10.36.118.199:2:7_1.3.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:6_1.2.1.2/24 to 10.36.118.199:2:8_1.4.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:7 <-> ['10.36.118.199:2:8'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:7_1.3.1.2/24 to 10.36.118.199:2:8_1.4.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:8 -> nexthop INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_2001:1::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.2.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2001:2::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_1.3.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_2001:3::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_1.4.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_2001:4::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f74473a0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5 <-> ['10.36.118.199:2:6' '10.36.118.199:2:7' '10.36.118.199:2:8'] SIP-DIP 1.1.1.2-1.2.1.2 Tx 50782 Rx 50782 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI 10.36.118.199:2:5 <-> ['10.36.118.199:2:6' '10.36.118.199:2:7' '10.36.118.199:2:8'] SIP-DIP 1.1.1.2-1.3.1.2 Tx 50782 Rx 50782 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI 10.36.118.199:2:5 <-> ['10.36.118.199:2:6' '10.36.118.199:2:7' '10.36.118.199:2:8'] SIP-DIP 1.1.1.2-1.4.1.2 Tx 50781 Rx 50781 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:5 <-> ['10.36.118.199:2:6' '10.36.118.199:2:7' '10.36.118.199:2:8'] SIP-DIP 1.2.1.2-1.1.1.2 Tx 50782 Rx 50782 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:5 <-> ['10.36.118.199:2:6' '10.36.118.199:2:7' '10.36.118.199:2:8'] SIP-DIP 1.3.1.2-1.1.1.2 Tx 50782 Rx 50782 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:8 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:5 <-> ['10.36.118.199:2:6' '10.36.118.199:2:7' '10.36.118.199:2:8'] SIP-DIP 1.4.1.2-1.1.1.2 Tx 50782 Rx 50782 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:7 TI 10.36.118.199:2:6 <-> ['10.36.118.199:2:7' '10.36.118.199:2:8'] SIP-DIP 1.2.1.2-1.3.1.2 Tx 50782 Rx 50782 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:8 TI 10.36.118.199:2:6 <-> ['10.36.118.199:2:7' '10.36.118.199:2:8'] SIP-DIP 1.2.1.2-1.4.1.2 Tx 50782 Rx 50782 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:6 <-> ['10.36.118.199:2:7' '10.36.118.199:2:8'] SIP-DIP 1.3.1.2-1.2.1.2 Tx 50782 Rx 50782 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:8 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:6 <-> ['10.36.118.199:2:7' '10.36.118.199:2:8'] SIP-DIP 1.4.1.2-1.2.1.2 Tx 50782 Rx 50782 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:8 TI 10.36.118.199:2:7 <-> ['10.36.118.199:2:8'] SIP-DIP 1.3.1.2-1.4.1.2 Tx 50782 Rx 50782 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:8 Rx 10.36.118.199:2:7 TI 10.36.118.199:2:7 <-> ['10.36.118.199:2:8'] SIP-DIP 1.4.1.2-1.3.1.2 Tx 50782 Rx 50782 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:8 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:8 -> nexthop SIP-DIP Tx 50782 Rx 50782 Loss 0.000 INFO asyncssh:logging.py:92 [conn=135, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=23] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=135, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=24] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=135, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=24] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"1.1.1.2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"1.2.1.2","dev":"swp34","lladdr":"00:13:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"1.3.1.2","dev":"swp35","lladdr":"00:15:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"1.1.1.5","dev":"swp33","lladdr":"02:00:00:00:00:01","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"1.4.1.2","dev":"swp36","lladdr":"00:17:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["DELAY"]}] INFO asyncssh:logging.py:92 [conn=135, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=25] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=135, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=26] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=135, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=26] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"1.1.1.2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"1.2.1.2","dev":"swp34","lladdr":"00:13:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"1.3.1.2","dev":"swp35","lladdr":"00:15:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"1.1.1.5","dev":"swp33","lladdr":"02:00:00:00:00:01","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"1.4.1.2","dev":"swp36","lladdr":"00:17:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["DELAY"]}] INFO asyncssh:logging.py:92 [conn=135, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=27] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=135, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=28] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=135, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=28] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"fe80::210:20ff:fe30:4060","dev":"ma1","lladdr":"00:10:20:30:40:60","state":["STALE"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["STALE"]},{"dst":"fe80::20c:29ff:fefe:dd05","dev":"ma1","lladdr":"00:0c:29:fe:dd:05","state":["STALE"]},{"dst":"fe80::36ef:b6ff:feec:26c0","dev":"ma1","lladdr":"34:ef:b6:ec:26:c0","state":["STALE"]},{"dst":"fe80::d805:4bff:fe25:e4db","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=135, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=29] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=135, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=30] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=135, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=30] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"1.1.1.0/24","dev":"swp33","protocol":"kernel","scope":"link","prefsrc":"1.1.1.1","flags":["rt_trap"]},{"dst":"1.2.1.0/24","dev":"swp34","protocol":"kernel","scope":"link","prefsrc":"1.2.1.1","flags":["rt_trap"]},{"dst":"1.3.1.0/24","dev":"swp35","protocol":"kernel","scope":"link","prefsrc":"1.3.1.1","flags":["rt_trap"]},{"dst":"1.4.1.0/24","dev":"swp36","protocol":"kernel","scope":"link","prefsrc":"1.4.1.1","flags":["rt_trap"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.23","flags":["rt_trap"]},{"dst":"48.0.0.0/24","gateway":"1.1.1.5","dev":"swp33","flags":["offload","rt_offload"]}] INFO asyncssh:logging.py:92 [conn=135, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=31] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=135, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=32] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=135, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=32] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"1.1.1.0/24","dev":"swp33","protocol":"kernel","scope":"link","prefsrc":"1.1.1.1","flags":["rt_trap"]},{"dst":"1.2.1.0/24","dev":"swp34","protocol":"kernel","scope":"link","prefsrc":"1.2.1.1","flags":["rt_trap"]},{"dst":"1.3.1.0/24","dev":"swp35","protocol":"kernel","scope":"link","prefsrc":"1.3.1.1","flags":["rt_trap"]},{"dst":"1.4.1.0/24","dev":"swp36","protocol":"kernel","scope":"link","prefsrc":"1.4.1.1","flags":["rt_trap"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.23","flags":["rt_trap"]},{"dst":"48.0.0.0/24","gateway":"1.1.1.5","dev":"swp33","flags":["offload","rt_offload"]}] INFO asyncssh:logging.py:92 [conn=135, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=33] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=135, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=34] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=135, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=34] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:2:5 <-> ['10.36.118.199:2:6', '10.36.118.199:2:7', '10.36.118.199:2:8'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:2:6 <-> ['10.36.118.199:2:7', '10.36.118.199:2:8'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:2:7 <-> ['10.36.118.199:2:8'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:2:8 -> nexthop INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=135, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=35] Channel closed DEBUG infra2:Logger.py:156 ip address delete 1.1.1.1/24 dev swp33 && ip address delete 1.2.1.1/24 dev swp34 && ip address delete 1.3.1.1/24 dev swp35 && ip address delete 1.4.1.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=135, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=36] Command: ip address delete 1.1.1.1/24 dev swp33 && ip address delete 1.2.1.1/24 dev swp34 && ip address delete 1.3.1.1/24 dev swp35 && ip address delete 1.4.1.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=135, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=36] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=135, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=37] Channel closed DEBUG infra2:Logger.py:156 ip address add 2001:1::1/64 dev swp33 && ip address add 2001:2::1/64 dev swp34 && ip address add 2001:3::1/64 dev swp35 && ip address add 2001:4::1/64 dev swp36 INFO asyncssh:logging.py:92 [conn=135, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=38] Command: ip address add 2001:1::1/64 dev swp33 && ip address add 2001:2::1/64 dev swp34 && ip address add 2001:3::1/64 dev swp35 && ip address add 2001:4::1/64 dev swp36 INFO asyncssh:logging.py:92 [conn=135, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=38] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=135, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=39] Channel closed DEBUG infra2:Logger.py:156 ip neigh add 2001:1::5 lladdr 02:00:00:00:00:02 dev swp33 INFO asyncssh:logging.py:92 [conn=135, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=40] Command: ip neigh add 2001:1::5 lladdr 02:00:00:00:00:02 dev swp33 INFO asyncssh:logging.py:92 [conn=135, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=40] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=135, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=41] Channel closed DEBUG infra2:Logger.py:156 ip route add 2001:1234::/64 nexthop via 2001:1::5 INFO asyncssh:logging.py:92 [conn=135, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=42] Command: ip route add 2001:1234::/64 nexthop via 2001:1::5 INFO asyncssh:logging.py:92 [conn=135, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=42] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:5 <-> ['10.36.118.199:2:6', '10.36.118.199:2:7', '10.36.118.199:2:8'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:5_2001:1::2/64 to 10.36.118.199:2:6_2001:2::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:5_2001:1::2/64 to 10.36.118.199:2:7_2001:3::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:5_2001:1::2/64 to 10.36.118.199:2:8_2001:4::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:6 <-> ['10.36.118.199:2:7', '10.36.118.199:2:8'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:6_2001:2::2/64 to 10.36.118.199:2:7_2001:3::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:6_2001:2::2/64 to 10.36.118.199:2:8_2001:4::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:7 <-> ['10.36.118.199:2:8'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:7_2001:3::2/64 to 10.36.118.199:2:8_2001:4::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:8 -> nexthop INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp 4 to swp 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_2001:1::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.2.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2001:2::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_1.3.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_2001:3::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_1.4.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_2001:4::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f73ca560>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5 <-> ['10.36.118.199:2:6' '10.36.118.199:2:7' '10.36.118.199:2:8'] SIP-DIP 2001:1:0:0:0:0:0:2-2001:2:0:0:0:0:0:2 Tx 51500 Rx 51500 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI 10.36.118.199:2:5 <-> ['10.36.118.199:2:6' '10.36.118.199:2:7' '10.36.118.199:2:8'] SIP-DIP 2001:1:0:0:0:0:0:2-2001:3:0:0:0:0:0:2 Tx 51499 Rx 51499 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI 10.36.118.199:2:5 <-> ['10.36.118.199:2:6' '10.36.118.199:2:7' '10.36.118.199:2:8'] SIP-DIP 2001:1:0:0:0:0:0:2-2001:4:0:0:0:0:0:2 Tx 51499 Rx 51499 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:5 <-> ['10.36.118.199:2:6' '10.36.118.199:2:7' '10.36.118.199:2:8'] SIP-DIP 2001:2:0:0:0:0:0:2-2001:1:0:0:0:0:0:2 Tx 51500 Rx 51500 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:5 <-> ['10.36.118.199:2:6' '10.36.118.199:2:7' '10.36.118.199:2:8'] SIP-DIP 2001:3:0:0:0:0:0:2-2001:1:0:0:0:0:0:2 Tx 51500 Rx 51500 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:8 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:5 <-> ['10.36.118.199:2:6' '10.36.118.199:2:7' '10.36.118.199:2:8'] SIP-DIP 2001:4:0:0:0:0:0:2-2001:1:0:0:0:0:0:2 Tx 51500 Rx 51500 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:7 TI 10.36.118.199:2:6 <-> ['10.36.118.199:2:7' '10.36.118.199:2:8'] SIP-DIP 2001:2:0:0:0:0:0:2-2001:3:0:0:0:0:0:2 Tx 51500 Rx 51500 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:8 TI 10.36.118.199:2:6 <-> ['10.36.118.199:2:7' '10.36.118.199:2:8'] SIP-DIP 2001:2:0:0:0:0:0:2-2001:4:0:0:0:0:0:2 Tx 51499 Rx 51499 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:6 <-> ['10.36.118.199:2:7' '10.36.118.199:2:8'] SIP-DIP 2001:3:0:0:0:0:0:2-2001:2:0:0:0:0:0:2 Tx 51500 Rx 51500 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:8 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:6 <-> ['10.36.118.199:2:7' '10.36.118.199:2:8'] SIP-DIP 2001:4:0:0:0:0:0:2-2001:2:0:0:0:0:0:2 Tx 51500 Rx 51500 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:8 TI 10.36.118.199:2:7 <-> ['10.36.118.199:2:8'] SIP-DIP 2001:3:0:0:0:0:0:2-2001:4:0:0:0:0:0:2 Tx 51500 Rx 51500 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:8 Rx 10.36.118.199:2:7 TI 10.36.118.199:2:7 <-> ['10.36.118.199:2:8'] SIP-DIP 2001:4:0:0:0:0:0:2-2001:3:0:0:0:0:0:2 Tx 51500 Rx 51500 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:8 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:8 -> nexthop SIP-DIP Tx 51500 Rx 51500 Loss 0.000 INFO asyncssh:logging.py:92 [conn=135, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=43] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=135, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=44] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=135, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=44] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"2001:1::5","dev":"swp33","lladdr":"02:00:00:00:00:02","offload":null,"state":["PERMANENT"]},{"dst":"fe80::210:20ff:fe30:4060","dev":"ma1","lladdr":"00:10:20:30:40:60","state":["STALE"]},{"dst":"fe80::923c:b3ff:fe8b:ef34","dev":"ma1","lladdr":"90:3c:b3:8b:ef:34","state":["STALE"]},{"dst":"fe80::216:1ff:fe00:1","dev":"swp35","lladdr":"00:16:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["STALE"]},{"dst":"2001:2::2","dev":"swp34","lladdr":"00:14:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"fe80::20c:29ff:fefe:dd05","dev":"ma1","lladdr":"00:0c:29:fe:dd:05","state":["STALE"]},{"dst":"2001:4::2","dev":"swp36","lladdr":"00:18:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::36ef:b6ff:feec:26c0","dev":"ma1","lladdr":"34:ef:b6:ec:26:c0","state":["STALE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"swp34","lladdr":"00:14:01:00:00:01","state":["STALE"]},{"dst":"fe80::218:1ff:fe00:1","dev":"swp36","lladdr":"00:18:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:1::2","dev":"swp33","lladdr":"00:12:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"2001:3::2","dev":"swp35","lladdr":"00:16:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp33","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"fe80::d805:4bff:fe25:e4db","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=135, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=45] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=135, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=46] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=135, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=46] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["DELAY"]}] INFO asyncssh:logging.py:92 [conn=135, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=47] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=135, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=48] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=135, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=48] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"2001:1::5","dev":"swp33","lladdr":"02:00:00:00:00:02","offload":null,"state":["PERMANENT"]},{"dst":"fe80::210:20ff:fe30:4060","dev":"ma1","lladdr":"00:10:20:30:40:60","state":["STALE"]},{"dst":"fe80::923c:b3ff:fe8b:ef34","dev":"ma1","lladdr":"90:3c:b3:8b:ef:34","state":["STALE"]},{"dst":"fe80::216:1ff:fe00:1","dev":"swp35","lladdr":"00:16:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["STALE"]},{"dst":"2001:2::2","dev":"swp34","lladdr":"00:14:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"fe80::20c:29ff:fefe:dd05","dev":"ma1","lladdr":"00:0c:29:fe:dd:05","state":["STALE"]},{"dst":"2001:4::2","dev":"swp36","lladdr":"00:18:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::36ef:b6ff:feec:26c0","dev":"ma1","lladdr":"34:ef:b6:ec:26:c0","state":["STALE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"swp34","lladdr":"00:14:01:00:00:01","state":["STALE"]},{"dst":"fe80::218:1ff:fe00:1","dev":"swp36","lladdr":"00:18:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:1::2","dev":"swp33","lladdr":"00:12:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"2001:3::2","dev":"swp35","lladdr":"00:16:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp33","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"fe80::d805:4bff:fe25:e4db","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=135, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=49] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=135, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=50] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=135, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=50] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"2001:1::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:2::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:3::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:4::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:1234::/64","gateway":"2001:1::5","dev":"swp33","metric":1024,"flags":["offload","rt_offload"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] INFO asyncssh:logging.py:92 [conn=135, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=51] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=135, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=52] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=135, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=52] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.23","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=135, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=53] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=135, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=54] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=135, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=54] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"2001:1::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:2::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:3::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:4::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:1234::/64","gateway":"2001:1::5","dev":"swp33","metric":1024,"flags":["offload","rt_offload"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:2:5 <-> ['10.36.118.199:2:6', '10.36.118.199:2:7', '10.36.118.199:2:8'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:2:6 <-> ['10.36.118.199:2:7', '10.36.118.199:2:8'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:2:7 <-> ['10.36.118.199:2:8'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:2:8 -> nexthop INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=135, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=55] Channel closed DEBUG infra2:Logger.py:156 ip address delete 2001:1::1/64 dev swp33 && ip address delete 2001:2::1/64 dev swp34 && ip address delete 2001:3::1/64 dev swp35 && ip address delete 2001:4::1/64 dev swp36 INFO asyncssh:logging.py:92 [conn=135, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=56] Command: ip address delete 2001:1::1/64 dev swp33 && ip address delete 2001:2::1/64 dev swp34 && ip address delete 2001:3::1/64 dev swp35 && ip address delete 2001:4::1/64 dev swp36 INFO asyncssh:logging.py:92 [conn=135, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=56] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=135, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=57] Channel closed DEBUG infra2:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 1.2.1.1/24 dev swp34 && ip address add 1.3.1.1/24 dev swp35 && ip address add 1.4.1.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=135, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=58] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 1.2.1.1/24 dev swp34 && ip address add 1.3.1.1/24 dev swp35 && ip address add 1.4.1.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=135, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=58] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=135, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=59] Channel closed DEBUG infra2:Logger.py:156 ip neigh add 1.1.1.5 lladdr 02:00:00:00:00:01 dev swp33 INFO asyncssh:logging.py:92 [conn=135, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=60] Command: ip neigh add 1.1.1.5 lladdr 02:00:00:00:00:01 dev swp33 INFO asyncssh:logging.py:92 [conn=135, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=60] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=135, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=61] Channel closed DEBUG infra2:Logger.py:156 ip route add 48.0.0.0/24 nexthop via 1.1.1.5 INFO asyncssh:logging.py:92 [conn=135, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=62] Command: ip route add 48.0.0.0/24 nexthop via 1.1.1.5 INFO asyncssh:logging.py:92 [conn=135, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=62] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:5 <-> ['10.36.118.199:2:6', '10.36.118.199:2:7', '10.36.118.199:2:8'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:5_1.1.1.2/24 to 10.36.118.199:2:6_1.2.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:5_1.1.1.2/24 to 10.36.118.199:2:7_1.3.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:5_1.1.1.2/24 to 10.36.118.199:2:8_1.4.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:6 <-> ['10.36.118.199:2:7', '10.36.118.199:2:8'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:6_1.2.1.2/24 to 10.36.118.199:2:7_1.3.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:6_1.2.1.2/24 to 10.36.118.199:2:8_1.4.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:7 <-> ['10.36.118.199:2:8'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:7_1.3.1.2/24 to 10.36.118.199:2:8_1.4.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:8 -> nexthop INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_2001:1::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.2.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2001:2::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_1.3.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_2001:3::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_1.4.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_2001:4::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f73cb130>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5 <-> ['10.36.118.199:2:6' '10.36.118.199:2:7' '10.36.118.199:2:8'] SIP-DIP 1.1.1.2-1.2.1.2 Tx 50707 Rx 50707 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI 10.36.118.199:2:5 <-> ['10.36.118.199:2:6' '10.36.118.199:2:7' '10.36.118.199:2:8'] SIP-DIP 1.1.1.2-1.3.1.2 Tx 50707 Rx 50707 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI 10.36.118.199:2:5 <-> ['10.36.118.199:2:6' '10.36.118.199:2:7' '10.36.118.199:2:8'] SIP-DIP 1.1.1.2-1.4.1.2 Tx 50706 Rx 50706 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:5 <-> ['10.36.118.199:2:6' '10.36.118.199:2:7' '10.36.118.199:2:8'] SIP-DIP 1.2.1.2-1.1.1.2 Tx 50707 Rx 50707 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:5 <-> ['10.36.118.199:2:6' '10.36.118.199:2:7' '10.36.118.199:2:8'] SIP-DIP 1.3.1.2-1.1.1.2 Tx 50707 Rx 50707 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:8 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:5 <-> ['10.36.118.199:2:6' '10.36.118.199:2:7' '10.36.118.199:2:8'] SIP-DIP 1.4.1.2-1.1.1.2 Tx 50707 Rx 50707 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:7 TI 10.36.118.199:2:6 <-> ['10.36.118.199:2:7' '10.36.118.199:2:8'] SIP-DIP 1.2.1.2-1.3.1.2 Tx 50707 Rx 50707 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:8 TI 10.36.118.199:2:6 <-> ['10.36.118.199:2:7' '10.36.118.199:2:8'] SIP-DIP 1.2.1.2-1.4.1.2 Tx 50706 Rx 50706 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:6 <-> ['10.36.118.199:2:7' '10.36.118.199:2:8'] SIP-DIP 1.3.1.2-1.2.1.2 Tx 50707 Rx 50707 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:8 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:6 <-> ['10.36.118.199:2:7' '10.36.118.199:2:8'] SIP-DIP 1.4.1.2-1.2.1.2 Tx 50707 Rx 50707 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:8 TI 10.36.118.199:2:7 <-> ['10.36.118.199:2:8'] SIP-DIP 1.3.1.2-1.4.1.2 Tx 50707 Rx 50707 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:8 Rx 10.36.118.199:2:7 TI 10.36.118.199:2:7 <-> ['10.36.118.199:2:8'] SIP-DIP 1.4.1.2-1.3.1.2 Tx 50707 Rx 50707 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:8 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:8 -> nexthop SIP-DIP Tx 50707 Rx 50707 Loss 0.000 INFO asyncssh:logging.py:92 [conn=135, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=63] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=135, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=64] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=135, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=64] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"1.1.1.2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"1.2.1.2","dev":"swp34","lladdr":"00:13:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"1.3.1.2","dev":"swp35","lladdr":"00:15:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"1.1.1.5","dev":"swp33","lladdr":"02:00:00:00:00:01","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"1.4.1.2","dev":"swp36","lladdr":"00:17:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=135, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=65] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=135, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=66] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=135, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=66] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"1.1.1.2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"1.2.1.2","dev":"swp34","lladdr":"00:13:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"1.3.1.2","dev":"swp35","lladdr":"00:15:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"1.1.1.5","dev":"swp33","lladdr":"02:00:00:00:00:01","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"1.4.1.2","dev":"swp36","lladdr":"00:17:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=135, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=67] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=135, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=68] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=135, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=68] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"2001:1::5","dev":"swp33","lladdr":"02:00:00:00:00:02","state":["PERMANENT"]},{"dst":"fe80::210:20ff:fe30:4060","dev":"ma1","lladdr":"00:10:20:30:40:60","state":["STALE"]},{"dst":"fe80::923c:b3ff:fe8b:ef34","dev":"ma1","lladdr":"90:3c:b3:8b:ef:34","state":["STALE"]},{"dst":"fe80::216:1ff:fe00:1","dev":"swp35","lladdr":"00:16:01:00:00:01","state":["STALE"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["STALE"]},{"dst":"2001:2::2","dev":"swp34","lladdr":"00:14:01:00:00:01","state":["STALE"]},{"dst":"fe80::20c:29ff:fefe:dd05","dev":"ma1","lladdr":"00:0c:29:fe:dd:05","state":["STALE"]},{"dst":"2001:4::2","dev":"swp36","lladdr":"00:18:01:00:00:01","state":["STALE"]},{"dst":"fe80::36ef:b6ff:feec:26c0","dev":"ma1","lladdr":"34:ef:b6:ec:26:c0","state":["STALE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"swp34","lladdr":"00:14:01:00:00:01","state":["STALE"]},{"dst":"fe80::218:1ff:fe00:1","dev":"swp36","lladdr":"00:18:01:00:00:01","state":["STALE"]},{"dst":"2001:1::2","dev":"swp33","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"2001:3::2","dev":"swp35","lladdr":"00:16:01:00:00:01","state":["STALE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp33","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"fe80::d805:4bff:fe25:e4db","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=135, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=69] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=135, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=70] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=135, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=70] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"1.1.1.0/24","dev":"swp33","protocol":"kernel","scope":"link","prefsrc":"1.1.1.1","flags":["rt_trap"]},{"dst":"1.2.1.0/24","dev":"swp34","protocol":"kernel","scope":"link","prefsrc":"1.2.1.1","flags":["rt_trap"]},{"dst":"1.3.1.0/24","dev":"swp35","protocol":"kernel","scope":"link","prefsrc":"1.3.1.1","flags":["rt_trap"]},{"dst":"1.4.1.0/24","dev":"swp36","protocol":"kernel","scope":"link","prefsrc":"1.4.1.1","flags":["rt_trap"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.23","flags":["rt_trap"]},{"dst":"48.0.0.0/24","gateway":"1.1.1.5","dev":"swp33","flags":["offload","rt_offload"]}] INFO asyncssh:logging.py:92 [conn=135, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=71] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=135, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=72] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=135, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=72] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"1.1.1.0/24","dev":"swp33","protocol":"kernel","scope":"link","prefsrc":"1.1.1.1","flags":["rt_trap"]},{"dst":"1.2.1.0/24","dev":"swp34","protocol":"kernel","scope":"link","prefsrc":"1.2.1.1","flags":["rt_trap"]},{"dst":"1.3.1.0/24","dev":"swp35","protocol":"kernel","scope":"link","prefsrc":"1.3.1.1","flags":["rt_trap"]},{"dst":"1.4.1.0/24","dev":"swp36","protocol":"kernel","scope":"link","prefsrc":"1.4.1.1","flags":["rt_trap"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.23","flags":["rt_trap"]},{"dst":"48.0.0.0/24","gateway":"1.1.1.5","dev":"swp33","flags":["offload","rt_offload"]}] INFO asyncssh:logging.py:92 [conn=135, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=73] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=135, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=74] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=135, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=74] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"2001:1234::/64","gateway":"2001:1::5","dev":"swp33","metric":1024,"flags":["offload","rt_offload"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:2:5 <-> ['10.36.118.199:2:6', '10.36.118.199:2:7', '10.36.118.199:2:8'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:2:6 <-> ['10.36.118.199:2:7', '10.36.118.199:2:8'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:2:7 <-> ['10.36.118.199:2:8'] INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: 10.36.118.199:2:8 -> nexthop INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=135, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=75] Channel closed DEBUG infra2:Logger.py:156 ip address delete 1.1.1.1/24 dev swp33 && ip address delete 1.2.1.1/24 dev swp34 && ip address delete 1.3.1.1/24 dev swp35 && ip address delete 1.4.1.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=135, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=76] Command: ip address delete 1.1.1.1/24 dev swp33 && ip address delete 1.2.1.1/24 dev swp34 && ip address delete 1.3.1.1/24 dev swp35 && ip address delete 1.4.1.1/24 dev swp36 INFO asyncssh:logging.py:92 [conn=135, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=76] Channel closed DEBUG infra2:Logger.py:156 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv64_nh_reconfig from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_ipv4.py INFO asyncssh:logging.py:92 [conn=135, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=77] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=135, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=78] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=135, chan=78] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=78] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:147 Restoring sysctl values INFO asyncssh:logging.py:92 [conn=135, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=79] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=135, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=80] Command: sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=135, chan=80] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=80] Channel closed DEBUG infra2:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=135, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=81] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=135, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=82] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=82] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=82] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 23:57:20 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=135, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=83] Channel closed DEBUG infra2:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 INFO asyncssh:logging.py:92 [conn=135, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=84] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 INFO asyncssh:logging.py:92 [conn=135, chan=84] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=84] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=135, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=85] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=135, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=86] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=135, chan=86] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=86] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"f6:33:41:29:6d:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=135, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=135, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=87] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=135, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=135, chan=88] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=135, chan=88] Received exit status 0 INFO asyncssh:logging.py:92 [conn=135, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=135, chan=88] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/ipv6/test_ipv6_ipv4.py::test_ipv64_nh_routes | 134.84 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-7714' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv64_nh_routes">Starting testcase:test_ipv64_nh_routes from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_ipv4.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=135, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=136] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=136] Local address: 172.17.0.3, port 45886 INFO asyncssh:logging.py:92 [conn=136] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=136] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=136] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=136, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=0] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 23:57:20 UTC 2023 INFO asyncssh:logging.py:92 [conn=136, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=1] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=136, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=2] Command: sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=136, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=2] Channel closed DEBUG infra2:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO asyncssh:logging.py:92 [conn=136, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=3] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=136, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=4] Command: sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=136, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=4] Channel closed DEBUG infra2:Logger.py:156 net.ipv6.conf.all.forwarding = 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=136, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=136, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=6] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 23:57:20 UTC 2023 INFO asyncssh:logging.py:92 [conn=136, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=7] Channel closed DEBUG infra2:Logger.py:156 sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=136, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=8] Command: sysctl -n net.ipv4.ip_forward INFO asyncssh:logging.py:92 [conn=136, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=8] Channel closed DEBUG infra2:Logger.py:156 0 INFO asyncssh:logging.py:92 [conn=136, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=9] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=136, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=10] Command: sysctl net.ipv4.ip_forward=1 INFO asyncssh:logging.py:92 [conn=136, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=10] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=136, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=11] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=136, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=12] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 23:57:20 UTC 2023 INFO asyncssh:logging.py:92 [conn=136, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=136, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=14] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=136, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=14] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"f6:33:41:29:6d:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=136, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=136, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=16] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=136, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2001:2::2/64', 'count': 1, 'ip': '2001:2::2', 'gw': '2001:2::1', 'plen': 64, 'vlan': None, 'version': 'ipv6'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_1.3.1.2/24', 'count': 1, 'ip': '1.3.1.2', 'gw': '1.3.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_2001:4::2/64', 'count': 1, 'ip': '2001:4::2', 'gw': '2001:4::1', 'plen': 64, 'vlan': None, 'version': 'ipv6'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=136, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip address add 1.1.1.1/24 dev swp33 && ip address add 2001:2::1/64 dev swp34 && ip address add 1.3.1.1/24 dev swp35 && ip address add 2001:4::1/64 dev swp36 INFO asyncssh:logging.py:92 [conn=136, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=18] Command: ip address add 1.1.1.1/24 dev swp33 && ip address add 2001:2::1/64 dev swp34 && ip address add 1.3.1.1/24 dev swp35 && ip address add 2001:4::1/64 dev swp36 INFO asyncssh:logging.py:92 [conn=136, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=136, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip neigh add 1.1.1.5 lladdr 02:00:00:00:00:01 dev swp33 && ip neigh add 2001:2::5 lladdr 02:00:00:00:00:02 dev swp34 INFO asyncssh:logging.py:92 [conn=136, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=20] Command: ip neigh add 1.1.1.5 lladdr 02:00:00:00:00:01 dev swp33 && ip neigh add 2001:2::5 lladdr 02:00:00:00:00:02 dev swp34 INFO asyncssh:logging.py:92 [conn=136, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=136, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip route add 48.0.0.0/24 nexthop via 1.1.1.5 && ip route add 2001:1234::/64 nexthop via 2001:2::5 INFO asyncssh:logging.py:92 [conn=136, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=22] Command: ip route add 48.0.0.0/24 nexthop via 1.1.1.5 && ip route add 2001:1234::/64 nexthop via 2001:2::5 INFO asyncssh:logging.py:92 [conn=136, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=22] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ipv4: 10.36.118.199:2:5 <-> 10.36.118.199:2:7 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:5_1.1.1.2/24 to 10.36.118.199:2:7_1.3.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ipv6: 10.36.118.199:2:6 <-> 10.36.118.199:2:8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:6_2001:2::2/64 to 10.36.118.199:2:8_2001:4::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ipv4: addr_info(swp='swp35', tg='10.36.118.199:2:7', swp_ip='1.3.1.1', tg_ip='1.3.1.2', plen=24) -> nexthop INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ipv6: addr_info(swp='swp36', tg='10.36.118.199:2:8', swp_ip='2001:4::1', tg_ip='2001:4::2', plen=64) -> nexthop INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2001:2::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_1.3.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_2001:4::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f7599e70>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI ipv4: 10.36.118.199:2:5 <-> 10.36.118.199:2:7 SIP-DIP 1.1.1.2-1.3.1.2 Tx 50985 Rx 50985 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:5 TI ipv4: 10.36.118.199:2:5 <-> 10.36.118.199:2:7 SIP-DIP 1.3.1.2-1.1.1.2 Tx 50985 Rx 50985 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:8 TI ipv6: 10.36.118.199:2:6 <-> 10.36.118.199:2:8 SIP-DIP 2001:2:0:0:0:0:0:2-2001:4:0:0:0:0:0:2 Tx 50985 Rx 50985 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:8 Rx 10.36.118.199:2:6 TI ipv6: 10.36.118.199:2:6 <-> 10.36.118.199:2:8 SIP-DIP 2001:4:0:0:0:0:0:2-2001:2:0:0:0:0:0:2 Tx 50985 Rx 50985 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:5 TI ipv4: addr_info(swp='swp35' tg='10.36.118.199:2:7' swp_ip='1.3.1.1' tg_ip='1.3.1.2' plen=24) -> nexthop SIP-DIP Tx 50985 Rx 50985 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:8 Rx 10.36.118.199:2:6 TI ipv6: addr_info(swp='swp36' tg='10.36.118.199:2:8' swp_ip='2001:4::1' tg_ip='2001:4::2' plen=64) -> nexthop SIP-DIP Tx 50985 Rx 50985 Loss 0.000 INFO asyncssh:logging.py:92 [conn=136, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=23] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=136, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=24] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=136, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=24] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"1.1.1.2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"1.3.1.2","dev":"swp35","lladdr":"00:13:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"1.1.1.5","dev":"swp33","lladdr":"02:00:00:00:00:01","offload":null,"state":["PERMANENT"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=136, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=25] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=136, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=26] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=136, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=26] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"fe80::210:20ff:fe30:4060","dev":"ma1","lladdr":"00:10:20:30:40:60","state":["STALE"]},{"dst":"fe80::923c:b3ff:fe8b:ef34","dev":"ma1","lladdr":"90:3c:b3:8b:ef:34","state":["STALE"]},{"dst":"fe80::214:1ff:fe00:1","dev":"swp36","lladdr":"00:14:01:00:00:01","state":["STALE"]},{"dst":"fe80::9a19:2cff:fe45:4d02","dev":"ma1","lladdr":"98:19:2c:45:4d:02","state":["STALE"]},{"dst":"2001:2::2","dev":"swp34","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::20c:29ff:fefe:dd05","dev":"ma1","lladdr":"00:0c:29:fe:dd:05","state":["STALE"]},{"dst":"2001:4::2","dev":"swp36","lladdr":"00:14:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::36ef:b6ff:feec:26c0","dev":"ma1","lladdr":"34:ef:b6:ec:26:c0","state":["STALE"]},{"dst":"2001:2::5","dev":"swp34","lladdr":"02:00:00:00:00:02","offload":null,"state":["PERMANENT"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp34","lladdr":"00:12:01:00:00:01","state":["REACHABLE"]},{"dst":"fe80::d805:4bff:fe25:e4db","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=136, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=27] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=136, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=28] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=136, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=28] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"1.1.1.0/24","dev":"swp33","protocol":"kernel","scope":"link","prefsrc":"1.1.1.1","flags":["rt_trap"]},{"dst":"1.3.1.0/24","dev":"swp35","protocol":"kernel","scope":"link","prefsrc":"1.3.1.1","flags":["rt_trap"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.23","flags":["rt_trap"]},{"dst":"48.0.0.0/24","gateway":"1.1.1.5","dev":"swp33","flags":["offload","rt_offload"]}] INFO asyncssh:logging.py:92 [conn=136, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=29] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=136, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=30] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=136, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=30] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"2001:2::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:4::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:1234::/64","gateway":"2001:2::5","dev":"swp34","metric":1024,"flags":["offload","rt_offload"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv64_nh_routes from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_ipv4.py INFO asyncssh:logging.py:92 [conn=136, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=31] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=136, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=32] Command: sysctl net.ipv4.ip_forward=0 INFO asyncssh:logging.py:92 [conn=136, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=32] Channel closed DEBUG infra2:Logger.py:156 net.ipv4.ip_forward = 0 INFO DENT:Logger.py:147 Restoring sysctl values INFO asyncssh:logging.py:92 [conn=136, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=33] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=136, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=34] Command: sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=136, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=34] Channel closed DEBUG infra2:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=136, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=35] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=136, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=36] Channel closed DEBUG infra2:Logger.py:156 Thu May 25 23:59:35 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=136, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=37] Channel closed DEBUG infra2:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 INFO asyncssh:logging.py:92 [conn=136, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=38] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 INFO asyncssh:logging.py:92 [conn=136, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=38] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=136, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=39] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=136, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=40] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=136, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=40] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"f6:33:41:29:6d:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=136, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=136, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=41] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=136, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=136, chan=42] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=136, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=136, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=136, chan=42] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/ipv6/test_ipv6_nei.py::test_ipv6_nei_change | 239.11 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-7992' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv6_nei_change">Starting testcase:test_ipv6_nei_change from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_nei.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=137, chan=201] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=138] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=138] Local address: 172.17.0.3, port 48514 INFO asyncssh:logging.py:92 [conn=138] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=138] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=138] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=138, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=0] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 00:07:15 UTC 2023 INFO asyncssh:logging.py:92 [conn=138, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=1] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=138, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=2] Command: sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=138, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=2] Channel closed DEBUG infra2:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO asyncssh:logging.py:92 [conn=138, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=3] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=138, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=4] Command: sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=138, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=4] Channel closed DEBUG infra2:Logger.py:156 net.ipv6.conf.all.forwarding = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=138, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=138, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=6] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 00:07:15 UTC 2023 INFO asyncssh:logging.py:92 [conn=138, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=7] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv6.neigh.default.gc_interval&& sysctl net.ipv6.neigh.default.base_reachable_time_ms&& sysctl net.ipv6.neigh.default.delay_first_probe_time INFO asyncssh:logging.py:92 [conn=138, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=8] Command: sysctl net.ipv6.neigh.default.gc_interval&& sysctl net.ipv6.neigh.default.base_reachable_time_ms&& sysctl net.ipv6.neigh.default.delay_first_probe_time INFO asyncssh:logging.py:92 [conn=138, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=8] Channel closed DEBUG infra2:Logger.py:156 net.ipv6.neigh.default.gc_interval = 30 net.ipv6.neigh.default.base_reachable_time_ms = 30000 net.ipv6.neigh.default.delay_first_probe_time = 5 INFO asyncssh:logging.py:92 [conn=138, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=9] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv6.neigh.default.gc_interval=15&& sysctl net.ipv6.neigh.default.base_reachable_time_ms=35000&& sysctl net.ipv6.neigh.default.delay_first_probe_time=5 INFO asyncssh:logging.py:92 [conn=138, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=10] Command: sysctl net.ipv6.neigh.default.gc_interval=15&& sysctl net.ipv6.neigh.default.base_reachable_time_ms=35000&& sysctl net.ipv6.neigh.default.delay_first_probe_time=5 INFO asyncssh:logging.py:92 [conn=138, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=10] Channel closed DEBUG infra2:Logger.py:156 net.ipv6.neigh.default.gc_interval = 15 net.ipv6.neigh.default.base_reachable_time_ms = 35000 net.ipv6.neigh.default.delay_first_probe_time = 5 INFO asyncssh:logging.py:92 [conn=138, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=11] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up INFO asyncssh:logging.py:92 [conn=138, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=12] Command: ip link set dev swp33 up && ip link set dev swp34 up INFO asyncssh:logging.py:92 [conn=138, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=138, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip address add 2001:1111::1/64 dev swp33 && ip address add 2001:2222::1/64 dev swp34 INFO asyncssh:logging.py:92 [conn=138, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=14] Command: ip address add 2001:1111::1/64 dev swp33 && ip address add 2001:2222::1/64 dev swp34 INFO asyncssh:logging.py:92 [conn=138, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=138, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip -j address show INFO asyncssh:logging.py:92 [conn=138, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=16] Command: ip -j address show INFO asyncssh:logging.py:92 [conn=138, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","addr_info":[{"family":"inet","local":"127.0.0.1","prefixlen":8,"scope":"host","label":"lo","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet","local":"20.20.0.1","prefixlen":32,"scope":"global","label":"lo","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"::1","prefixlen":128,"scope":"host","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"f6:33:41:29:6d:87","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","addr_info":[]},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"10.36.118.23","prefixlen":24,"broadcast":"10.36.118.255","scope":"global","label":"ma1","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:6482","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:1111::1","prefixlen":64,"scope":"global","tentative":true,"valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet6","local":"2001:2222::1","prefixlen":64,"scope":"global","tentative":true,"valid_life_time":4294967295,"preferred_life_time":4294967295}]},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[]}] INFO asyncssh:logging.py:92 [conn=138, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=138, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=18] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=138, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=18] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.23","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=138, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=138, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=20] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=138, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=20] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"2001:1111::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":["linkdown","rt_trap"],"pref":"medium"},{"dst":"2001:2222::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":["linkdown","rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_2001:1111::2/64', 'count': 1, 'ip': '2001:1111::2', 'gw': '2001:1111::1', 'plen': 64, 'vlan': None, 'version': 'ipv6'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2001:2222::2/64', 'count': 1, 'ip': '2001:2222::2', 'gw': '2001:2222::1', 'plen': 64, 'vlan': None, 'version': 'ipv6'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for dummy INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:5_2001:1111::2/64 to 10.36.118.199:2:6_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv6 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:6_2001:2222::2/64 to 10.36.118.199:2:5_2001:1111::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_2001:1111::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f6fbada0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI dummy SIP-DIP 2001:1111:0:0:0:0:0:2-2001:2222:0:0:0:0:0:2 Tx 584 Rx 584 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI dummy #1 SIP-DIP 2001:2222:0:0:0:0:0:2-2001:1111:0:0:0:0:0:2 Tx 584 Rx 584 Loss 0.000 INFO DENT:Logger.py:84 [DENT infrastructure 2] Begin neighbor polling INFO asyncssh:logging.py:92 [conn=138, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=138, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=22] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=138, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=22] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=138, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=23] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=138, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=24] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=138, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=24] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:2222::2","dev":"swp34","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp34","lladdr":"00:12:01:00:00:01","state":["REACHABLE"]}] INFO DENT:Logger.py:84 [DENT infrastructure 2] Neighbors matched expectation after 0.0s INFO asyncssh:logging.py:92 [conn=138, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=25] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=138, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=26] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=138, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=26] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:2222::2","dev":"swp34","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp34","lladdr":"00:12:01:00:00:01","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=138, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=27] Channel closed DEBUG infra2:Logger.py:156 ip neigh change 2001:2222::2 lladdr 00:12:01:00:00:01 nud permanent dev swp34 && ip neigh change 2001:1111::2 lladdr 00:11:01:00:00:01 nud permanent dev swp33 INFO asyncssh:logging.py:92 [conn=138, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=28] Command: ip neigh change 2001:2222::2 lladdr 00:12:01:00:00:01 nud permanent dev swp34 && ip neigh change 2001:1111::2 lladdr 00:11:01:00:00:01 nud permanent dev swp33 INFO asyncssh:logging.py:92 [conn=138, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=28] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=138, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=29] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=138, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=30] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=138, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=30] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=138, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=31] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=138, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=32] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=138, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=32] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["REACHABLE"]},{"dst":"2001:2222::2","dev":"swp34","lladdr":"00:12:01:00:00:01","offload":null,"state":["PERMANENT"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["PERMANENT"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp34","lladdr":"00:12:01:00:00:01","state":["REACHABLE"]}] INFO DENT:Logger.py:84 [DENT infrastructure 2] Waiting for neighbor state to change INFO asyncssh:logging.py:92 [conn=138, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=33] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=138, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=34] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=138, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=34] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=138, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=35] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=138, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=36] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=138, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=36] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"2001:2222::2","dev":"swp34","lladdr":"00:12:01:00:00:01","offload":null,"state":["PERMANENT"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["PERMANENT"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp34","lladdr":"00:12:01:00:00:01","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=138, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=37] Channel closed DEBUG infra2:Logger.py:156 ip neigh change 2001:2222::2 lladdr 00:12:01:00:00:01 nud reachable dev swp34 && ip neigh change 2001:1111::2 lladdr 00:11:01:00:00:01 nud reachable dev swp33 INFO asyncssh:logging.py:92 [conn=138, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=38] Command: ip neigh change 2001:2222::2 lladdr 00:12:01:00:00:01 nud reachable dev swp34 && ip neigh change 2001:1111::2 lladdr 00:11:01:00:00:01 nud reachable dev swp33 INFO asyncssh:logging.py:92 [conn=138, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=38] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=138, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=39] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=138, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=40] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=138, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=40] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=138, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=41] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=138, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=42] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=138, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=42] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"2001:2222::2","dev":"swp34","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp34","lladdr":"00:12:01:00:00:01","state":["STALE"]}] INFO DENT:Logger.py:84 [DENT infrastructure 2] Begin neighbor polling INFO asyncssh:logging.py:92 [conn=138, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=43] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=138, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=44] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=138, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=44] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["DELAY"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=138, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=45] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=138, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=46] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=138, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=46] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"2001:2222::2","dev":"swp34","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp34","lladdr":"00:12:01:00:00:01","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=138, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=47] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=138, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=48] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=138, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=48] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=138, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=49] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=138, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=50] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=138, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=50] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"2001:2222::2","dev":"swp34","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp34","lladdr":"00:12:01:00:00:01","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=138, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=51] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=138, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=52] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=138, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=52] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=138, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=53] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=138, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=54] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=138, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=54] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"2001:2222::2","dev":"swp34","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp34","lladdr":"00:12:01:00:00:01","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=138, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=55] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=138, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=56] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=138, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=56] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=138, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=57] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=138, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=58] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=138, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=58] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"2001:2222::2","dev":"swp34","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp34","lladdr":"00:12:01:00:00:01","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=138, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=59] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=138, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=60] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=138, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=60] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=138, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=61] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=138, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=62] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=138, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=62] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"2001:2222::2","dev":"swp34","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::36ef:b6ff:feec:3804","dev":"ma1","lladdr":"34:ef:b6:ec:38:04","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp34","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"fe80::8a5a:85ff:fefa:363c","dev":"ma1","lladdr":"88:5a:85:fa:36:3c","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=138, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=63] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=138, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=64] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=138, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=64] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=138, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=65] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=138, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=66] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=138, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=66] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"2001:2222::2","dev":"swp34","lladdr":"00:12:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::36ef:b6ff:feec:3804","dev":"ma1","lladdr":"34:ef:b6:ec:38:04","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp34","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"fe80::8a5a:85ff:fefa:363c","dev":"ma1","lladdr":"88:5a:85:fa:36:3c","state":["STALE"]}] INFO DENT:Logger.py:84 [DENT infrastructure 2] Neighbors matched expectation after 50.0s INFO asyncssh:logging.py:92 [conn=138, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=67] Channel closed DEBUG infra2:Logger.py:156 ip neigh add 2001:1111::1:2a9e lladdr 02:00:00:00:00:17 nud permanent dev swp33 && ip neigh add 2001:2222::2:1486 lladdr 02:00:00:00:01:1f nud permanent dev swp34 && ip neigh add 2001:1111::3:1b90 lladdr 02:00:00:00:02:8f nud stale dev swp33 && ip neigh add 2001:2222::4:3ac1 lladdr 02:00:00:00:03:f0 nud stale dev swp34 INFO asyncssh:logging.py:92 [conn=138, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=68] Command: ip neigh add 2001:1111::1:2a9e lladdr 02:00:00:00:00:17 nud permanent dev swp33 && ip neigh add 2001:2222::2:1486 lladdr 02:00:00:00:01:1f nud permanent dev swp34 && ip neigh add 2001:1111::3:1b90 lladdr 02:00:00:00:02:8f nud stale dev swp33 && ip neigh add 2001:2222::4:3ac1 lladdr 02:00:00:00:03:f0 nud stale dev swp34 INFO asyncssh:logging.py:92 [conn=138, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=68] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=138, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=69] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=138, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=70] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=138, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=70] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=138, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=71] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=138, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=72] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=138, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=72] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"2001:1111::3:1b90","dev":"swp33","lladdr":"02:00:00:00:02:8f","offload":null,"state":["STALE"]},{"dst":"2001:2222::2:1486","dev":"swp34","lladdr":"02:00:00:00:01:1f","offload":null,"state":["PERMANENT"]},{"dst":"2001:2222::4:3ac1","dev":"swp34","lladdr":"02:00:00:00:03:f0","offload":null,"state":["STALE"]},{"dst":"2001:1111::1:2a9e","dev":"swp33","lladdr":"02:00:00:00:00:17","offload":null,"state":["PERMANENT"]},{"dst":"2001:2222::2","dev":"swp34","lladdr":"00:12:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::36ef:b6ff:feec:3804","dev":"ma1","lladdr":"34:ef:b6:ec:38:04","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp34","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"fe80::8a5a:85ff:fefa:363c","dev":"ma1","lladdr":"88:5a:85:fa:36:3c","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=138, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=73] Channel closed DEBUG infra2:Logger.py:156 ip neigh flush to 2001:1111::/64 nud permanent && ip neigh flush to 2001:2222::/64 && ip neigh flush to 2001:1111::/64 nud permanent && ip neigh flush to 2001:2222::/64 INFO asyncssh:logging.py:92 [conn=138, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=74] Command: ip neigh flush to 2001:1111::/64 nud permanent && ip neigh flush to 2001:2222::/64 && ip neigh flush to 2001:1111::/64 nud permanent && ip neigh flush to 2001:2222::/64 INFO asyncssh:logging.py:92 [conn=138, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=74] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=138, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=75] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=138, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=76] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=138, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=76] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=138, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=77] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=138, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=78] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=138, chan=78] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=78] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"2001:1111::3:1b90","dev":"swp33","lladdr":"02:00:00:00:02:8f","offload":null,"state":["STALE"]},{"dst":"2001:2222::2:1486","dev":"swp34","lladdr":"02:00:00:00:01:1f","offload":null,"state":["PERMANENT"]},{"dst":"2001:1111::1:2a9e","dev":"swp33","state":["FAILED"]},{"dst":"fe80::36ef:b6ff:feec:3804","dev":"ma1","lladdr":"34:ef:b6:ec:38:04","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["STALE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp34","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"fe80::8a5a:85ff:fefa:363c","dev":"ma1","lladdr":"88:5a:85:fa:36:3c","state":["STALE"]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending NS from 10.36.118.199:2:5_2001:1111::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending NS from 10.36.118.199:2:6_2001:2222::2/64 INFO asyncssh:logging.py:92 [conn=138, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=79] Channel closed DEBUG infra2:Logger.py:156 ip neigh delete 2001:2222::2:1486 lladdr 02:00:00:00:01:1f nud permanent dev swp34 && ip neigh delete 2001:1111::3:1b90 lladdr 02:00:00:00:02:8f nud stale dev swp33 INFO asyncssh:logging.py:92 [conn=138, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=80] Command: ip neigh delete 2001:2222::2:1486 lladdr 02:00:00:00:01:1f nud permanent dev swp34 && ip neigh delete 2001:1111::3:1b90 lladdr 02:00:00:00:02:8f nud stale dev swp33 INFO asyncssh:logging.py:92 [conn=138, chan=80] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=80] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 2] Begin neighbor polling INFO asyncssh:logging.py:92 [conn=138, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=81] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=138, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=82] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=138, chan=82] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=82] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=138, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=83] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=138, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=84] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=138, chan=84] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=84] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["STALE"]},{"dst":"2001:1111::3:1b90","dev":"swp33","state":["FAILED"]},{"dst":"2001:2222::2:1486","dev":"swp34","state":["FAILED"]},{"dst":"2001:1111::1:2a9e","dev":"swp33","state":["FAILED"]},{"dst":"2001:2222::2","dev":"swp34","lladdr":"00:12:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"fe80::36ef:b6ff:feec:3804","dev":"ma1","lladdr":"34:ef:b6:ec:38:04","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["DELAY"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp34","lladdr":"00:12:01:00:00:01","state":["STALE"]},{"dst":"fe80::8a5a:85ff:fefa:363c","dev":"ma1","lladdr":"88:5a:85:fa:36:3c","state":["STALE"]}] INFO asyncssh:logging.py:92 [conn=138, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=85] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=138, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=86] Command: ip -j -4 neigh show INFO asyncssh:logging.py:92 [conn=138, chan=86] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=86] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"10.36.118.249","dev":"ma1","lladdr":"00:0c:29:5c:5a:18","state":["REACHABLE"]},{"dst":"10.36.118.11","dev":"ma1","lladdr":"da:05:4b:25:e4:db","state":["STALE"]},{"dst":"10.36.118.1","dev":"ma1","lladdr":"b4:0c:25:e0:80:52","state":["REACHABLE"]}] INFO asyncssh:logging.py:92 [conn=138, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=87] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=138, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=88] Command: ip -j -6 neigh show INFO asyncssh:logging.py:92 [conn=138, chan=88] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=88] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"fe80::211:1ff:fe00:1","dev":"swp33","lladdr":"00:11:01:00:00:01","state":["DELAY"]},{"dst":"2001:1111::3:1b90","dev":"swp33","state":["FAILED"]},{"dst":"2001:2222::2:1486","dev":"swp34","state":["FAILED"]},{"dst":"2001:1111::1:2a9e","dev":"swp33","state":["FAILED"]},{"dst":"2001:2222::2","dev":"swp34","lladdr":"00:12:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::36ef:b6ff:feec:3804","dev":"ma1","lladdr":"34:ef:b6:ec:38:04","state":["STALE"]},{"dst":"2001:1111::2","dev":"swp33","lladdr":"00:11:01:00:00:01","offload":null,"state":["REACHABLE"]},{"dst":"fe80::212:1ff:fe00:1","dev":"swp34","lladdr":"00:12:01:00:00:01","state":["DELAY"]},{"dst":"fe80::8a5a:85ff:fefa:363c","dev":"ma1","lladdr":"88:5a:85:fa:36:3c","state":["STALE"]}] INFO DENT:Logger.py:84 [DENT infrastructure 2] Neighbors matched expectation after 10.0s -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv6_nei_change from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_nei.py INFO DENT:Logger.py:147 Restoring sysctl values INFO asyncssh:logging.py:92 [conn=138, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=89] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=0&& sysctl net.ipv6.neigh.default.gc_interval=30&& sysctl net.ipv6.neigh.default.base_reachable_time_ms=30000&& sysctl net.ipv6.neigh.default.delay_first_probe_time=5 INFO asyncssh:logging.py:92 [conn=138, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=90] Command: sysctl net.ipv6.conf.all.forwarding=0&& sysctl net.ipv6.neigh.default.gc_interval=30&& sysctl net.ipv6.neigh.default.base_reachable_time_ms=30000&& sysctl net.ipv6.neigh.default.delay_first_probe_time=5 INFO asyncssh:logging.py:92 [conn=138, chan=90] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=90] Channel closed DEBUG infra2:Logger.py:156 net.ipv6.conf.all.forwarding = 0 net.ipv6.neigh.default.gc_interval = 30 net.ipv6.neigh.default.base_reachable_time_ms = 30000 net.ipv6.neigh.default.delay_first_probe_time = 5 INFO DENT:Logger.py:147 Restoring sysctl values INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=138, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=91] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=138, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=92] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=92] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=92] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 00:11:14 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=138, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=93] Channel closed DEBUG infra2:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 INFO asyncssh:logging.py:92 [conn=138, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=94] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 INFO asyncssh:logging.py:92 [conn=138, chan=94] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=94] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=138, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=95] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=138, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=96] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=138, chan=96] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=96] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"f6:33:41:29:6d:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=138, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=138, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=97] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=138, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=138, chan=98] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=138, chan=98] Received exit status 0 INFO asyncssh:logging.py:92 [conn=138, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=138, chan=98] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/ipv6/test_ipv6_route.py::test_ipv6_route_default_offload | 139.59 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-8101' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv6_route_default_offload">Starting testcase:test_ipv6_route_default_offload from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_route.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=138, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=139] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=139] Local address: 172.17.0.3, port 46260 INFO asyncssh:logging.py:92 [conn=139] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=139] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=139] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=139, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=0] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 00:11:14 UTC 2023 INFO asyncssh:logging.py:92 [conn=139, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=139, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=2] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=139, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=2] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.23","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=139, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=139, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=4] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=139, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=4] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"}] INFO asyncssh:logging.py:92 [conn=139, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip route delete default via 10.36.118.1 dev ma1 INFO asyncssh:logging.py:92 [conn=139, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=6] Command: ip route delete default via 10.36.118.1 dev ma1 INFO asyncssh:logging.py:92 [conn=139, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=139, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=7] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=139, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=8] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 00:11:14 UTC 2023 INFO asyncssh:logging.py:92 [conn=139, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=9] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=139, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=10] Command: sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=139, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=10] Channel closed DEBUG infra2:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO asyncssh:logging.py:92 [conn=139, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=11] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=139, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=12] Command: sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=139, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=12] Channel closed DEBUG infra2:Logger.py:156 net.ipv6.conf.all.forwarding = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=139, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=139, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=14] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 00:11:14 UTC 2023 INFO asyncssh:logging.py:92 [conn=139, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=139, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=16] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=139, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"f6:33:41:29:6d:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=139, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up INFO asyncssh:logging.py:92 [conn=139, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=18] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up INFO asyncssh:logging.py:92 [conn=139, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=139, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip address add 2001:1111::1/64 dev swp33 && ip address add 2001:2222::1/64 dev swp34 && ip address add 2001:3333::1/64 dev swp35 INFO asyncssh:logging.py:92 [conn=139, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=20] Command: ip address add 2001:1111::1/64 dev swp33 && ip address add 2001:2222::1/64 dev swp34 && ip address add 2001:3333::1/64 dev swp35 INFO asyncssh:logging.py:92 [conn=139, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_2001:1111::2/64', 'count': 1, 'ip': '2001:1111::2', 'gw': '2001:1111::1', 'plen': 64, 'vlan': None, 'version': 'ipv6'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2001:2222::2/64', 'count': 1, 'ip': '2001:2222::2', 'gw': '2001:2222::1', 'plen': 64, 'vlan': None, 'version': 'ipv6'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_2001:3333::2/64', 'count': 1, 'ip': '2001:3333::2', 'gw': '2001:3333::1', 'plen': 64, 'vlan': None, 'version': 'ipv6'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:5 -> 2001:5555::5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_2001:1111::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_2001:3333::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=139, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip route add default metric 200 via 2001:2222::2 dev swp34 && ip route add default metric 300 via 2001:3333::2 dev swp35 INFO asyncssh:logging.py:92 [conn=139, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=22] Command: ip route add default metric 200 via 2001:2222::2 dev swp34 && ip route add default metric 300 via 2001:3333::2 dev swp35 INFO asyncssh:logging.py:92 [conn=139, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=22] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=139, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=23] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=139, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=24] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=139, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=24] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.23","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=139, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=25] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=139, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=26] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=139, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=26] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"2001:1111::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:2222::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:3333::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"default","gateway":"2001:2222::2","dev":"swp34","metric":200,"flags":["offload","rt_offload"],"pref":"medium"},{"dst":"default","gateway":"2001:3333::2","dev":"swp35","metric":300,"flags":[],"pref":"medium"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f6fbbe80>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5 -> 2001:5555::5 SIP-DIP N/A Tx 57341 Rx 57341 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI 10.36.118.199:2:5 -> 2001:5555::5 SIP-DIP N/A Tx 57341 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=139, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=27] Channel closed DEBUG infra2:Logger.py:156 ip route add default metric 100 via 2001:3333::2 dev swp35 INFO asyncssh:logging.py:92 [conn=139, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=28] Command: ip route add default metric 100 via 2001:3333::2 dev swp35 INFO asyncssh:logging.py:92 [conn=139, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=28] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=139, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=29] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=139, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=30] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=139, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=30] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.23","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=139, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=31] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=139, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=32] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=139, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=32] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"2001:1111::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:2222::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:3333::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"default","gateway":"2001:3333::2","dev":"swp35","metric":100,"flags":["offload","rt_offload"],"pref":"medium"},{"dst":"default","gateway":"2001:2222::2","dev":"swp34","metric":200,"flags":["offload"],"pref":"medium"},{"dst":"default","gateway":"2001:3333::2","dev":"swp35","metric":300,"flags":[],"pref":"medium"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f6fb8af0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5 -> 2001:5555::5 SIP-DIP N/A Tx 93069 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI 10.36.118.199:2:5 -> 2001:5555::5 SIP-DIP N/A Tx 93069 Rx 93069 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv6_route_default_offload from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_route.py INFO DENT:Logger.py:147 Restoring sysctl values INFO asyncssh:logging.py:92 [conn=139, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=33] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=139, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=34] Command: sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=139, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=34] Channel closed DEBUG infra2:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=139, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=35] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=139, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=36] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 00:13:33 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=139, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=37] Channel closed DEBUG infra2:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 INFO asyncssh:logging.py:92 [conn=139, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=38] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 INFO asyncssh:logging.py:92 [conn=139, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=38] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=139, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=39] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=139, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=40] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=139, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=40] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"f6:33:41:29:6d:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=139, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=41] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=139, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=42] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=139, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=42] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=139, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=43] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=139, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=44] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=139, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=44] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.23","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=139, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=45] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=139, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=46] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=139, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=46] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"}] INFO asyncssh:logging.py:92 [conn=139, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=139, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=47] Channel closed DEBUG infra2:Logger.py:156 ip route replace default via 10.36.118.1 dev ma1 INFO asyncssh:logging.py:92 [conn=139, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=139, chan=48] Command: ip route replace default via 10.36.118.1 dev ma1 INFO asyncssh:logging.py:92 [conn=139, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=139, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=139, chan=48] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/ipv6/test_ipv6_route.py::test_ipv6_route_lpm | 172.82 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-8162' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv6_route_lpm">Starting testcase:test_ipv6_route_lpm from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_route.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=139, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=140] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=140] Local address: 172.17.0.3, port 40446 INFO asyncssh:logging.py:92 [conn=140] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=140] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=140] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=140, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=0] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 00:13:34 UTC 2023 INFO asyncssh:logging.py:92 [conn=140, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=1] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=140, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=2] Command: sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=140, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=2] Channel closed DEBUG infra2:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO asyncssh:logging.py:92 [conn=140, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=3] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=140, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=4] Command: sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=140, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=4] Channel closed DEBUG infra2:Logger.py:156 net.ipv6.conf.all.forwarding = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=140, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=140, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=6] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 00:13:34 UTC 2023 INFO asyncssh:logging.py:92 [conn=140, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=140, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=8] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=140, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=8] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"f6:33:41:29:6d:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=140, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=140, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=140, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=140, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=11] Channel closed DEBUG infra2:Logger.py:156 ip address add 2001:1111::1/64 dev swp33 && ip address add 2001:2222::1/64 dev swp34 && ip address add 2001:3333::1/64 dev swp35 && ip address add 2001:4444::1/64 dev swp36 INFO asyncssh:logging.py:92 [conn=140, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=12] Command: ip address add 2001:1111::1/64 dev swp33 && ip address add 2001:2222::1/64 dev swp34 && ip address add 2001:3333::1/64 dev swp35 && ip address add 2001:4444::1/64 dev swp36 INFO asyncssh:logging.py:92 [conn=140, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_2001:1111::2/64', 'count': 1, 'ip': '2001:1111::2', 'gw': '2001:1111::1', 'plen': 64, 'vlan': None, 'version': 'ipv6'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2001:2222::2/64', 'count': 1, 'ip': '2001:2222::2', 'gw': '2001:2222::1', 'plen': 64, 'vlan': None, 'version': 'ipv6'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_2001:3333::2/64', 'count': 1, 'ip': '2001:3333::2', 'gw': '2001:3333::1', 'plen': 64, 'vlan': None, 'version': 'ipv6'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_2001:4444::2/64', 'count': 1, 'ip': '2001:4444::2', 'gw': '2001:4444::1', 'plen': 64, 'vlan': None, 'version': 'ipv6'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_2001:1111::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_2001:3333::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_2001:4444::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=140, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip route add 2002:1::/64 via 2001:2222::2 && ip route add 2002:1::2/128 via 2001:3333::2 INFO asyncssh:logging.py:92 [conn=140, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=14] Command: ip route add 2002:1::/64 via 2001:2222::2 && ip route add 2002:1::2/128 via 2001:3333::2 INFO asyncssh:logging.py:92 [conn=140, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f7599f60>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP N/A Tx 52939 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP N/A Tx 52938 Rx 52938 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP N/A Tx 52938 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=140, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=140, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=16] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=140, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.23","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=140, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=140, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=18] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=140, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=18] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"2001:1111::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:2222::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:3333::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:4444::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2002:1::2","gateway":"2001:3333::2","dev":"swp35","metric":1024,"flags":["offload","rt_offload"],"pref":"medium"},{"dst":"2002:1::/64","gateway":"2001:2222::2","dev":"swp34","metric":1024,"flags":["offload","rt_offload"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] INFO asyncssh:logging.py:92 [conn=140, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip route delete 2002:1::2/128 via 2001:3333::2 INFO asyncssh:logging.py:92 [conn=140, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=20] Command: ip route delete 2002:1::2/128 via 2001:3333::2 INFO asyncssh:logging.py:92 [conn=140, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f702e950>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP N/A Tx 89433 Rx 89433 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP N/A Tx 89433 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP N/A Tx 89432 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=140, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=140, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=22] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=140, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=22] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.23","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=140, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=23] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=140, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=24] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=140, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=24] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"2001:1111::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:2222::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:3333::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:4444::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2002:1::/64","gateway":"2001:2222::2","dev":"swp34","metric":1024,"flags":["offload","rt_offload"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] INFO asyncssh:logging.py:92 [conn=140, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=25] Channel closed DEBUG infra2:Logger.py:156 ip route add 2002:1::/80 via 2001:2222::2 && ip route add 2002:1::/100 via 2001:3333::2 && ip route add 2002:1::/120 via 2001:4444::2 INFO asyncssh:logging.py:92 [conn=140, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=26] Command: ip route add 2002:1::/80 via 2001:2222::2 && ip route add 2002:1::/100 via 2001:3333::2 && ip route add 2002:1::/120 via 2001:4444::2 INFO asyncssh:logging.py:92 [conn=140, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=26] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f6fb8a00>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP N/A Tx 89893 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP N/A Tx 89892 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP N/A Tx 89892 Rx 89892 Loss 0.000 INFO asyncssh:logging.py:92 [conn=140, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=27] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=140, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=28] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=140, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=28] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.23","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=140, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=29] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=140, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=30] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=140, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=30] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"2001:1111::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:2222::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:3333::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:4444::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2002:1::/120","gateway":"2001:4444::2","dev":"swp36","metric":1024,"flags":["offload","rt_offload"],"pref":"medium"},{"dst":"2002:1::/100","gateway":"2001:3333::2","dev":"swp35","metric":1024,"flags":["offload","rt_offload"],"pref":"medium"},{"dst":"2002:1::/80","gateway":"2001:2222::2","dev":"swp34","metric":1024,"flags":["offload","rt_offload"],"pref":"medium"},{"dst":"2002:1::/64","gateway":"2001:2222::2","dev":"swp34","metric":1024,"flags":["offload","rt_offload"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv6_route_lpm from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_route.py INFO DENT:Logger.py:147 Restoring sysctl values INFO asyncssh:logging.py:92 [conn=140, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=31] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=140, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=32] Command: sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=140, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=32] Channel closed DEBUG infra2:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=140, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=33] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=140, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=34] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 00:16:26 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=140, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=35] Channel closed DEBUG infra2:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 INFO asyncssh:logging.py:92 [conn=140, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=36] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 INFO asyncssh:logging.py:92 [conn=140, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=36] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=140, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=37] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=140, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=38] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=140, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=38] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"f6:33:41:29:6d:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=140, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=140, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=39] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=140, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=140, chan=40] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=140, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=140, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=140, chan=40] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/ipv6/test_ipv6_route.py::test_ipv6_nh_state | 156.12 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-8212' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv6_nh_state">Starting testcase:test_ipv6_nh_state from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_route.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=140, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=141] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=141] Local address: 172.17.0.3, port 48640 INFO asyncssh:logging.py:92 [conn=141] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=141] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=141] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=141, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=0] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 00:16:26 UTC 2023 INFO asyncssh:logging.py:92 [conn=141, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=1] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=141, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=2] Command: sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=141, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=2] Channel closed DEBUG infra2:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO asyncssh:logging.py:92 [conn=141, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=3] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=141, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=4] Command: sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=141, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=4] Channel closed DEBUG infra2:Logger.py:156 net.ipv6.conf.all.forwarding = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=141, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=141, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=6] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 00:16:26 UTC 2023 INFO asyncssh:logging.py:92 [conn=141, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=141, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=8] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=141, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=8] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"f6:33:41:29:6d:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=141, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up INFO asyncssh:logging.py:92 [conn=141, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up INFO asyncssh:logging.py:92 [conn=141, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=141, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=11] Channel closed DEBUG infra2:Logger.py:156 ip address add 2001:1111::1/64 dev swp33 && ip address add 2001:2222::1/64 dev swp34 && ip address add 2001:3333::1/64 dev swp35 INFO asyncssh:logging.py:92 [conn=141, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=12] Command: ip address add 2001:1111::1/64 dev swp33 && ip address add 2001:2222::1/64 dev swp34 && ip address add 2001:3333::1/64 dev swp35 INFO asyncssh:logging.py:92 [conn=141, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_2001:1111::2/64', 'count': 1, 'ip': '2001:1111::2', 'gw': '2001:1111::1', 'plen': 64, 'vlan': None, 'version': 'ipv6'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2001:2222::2/64', 'count': 1, 'ip': '2001:2222::2', 'gw': '2001:2222::1', 'plen': 64, 'vlan': None, 'version': 'ipv6'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_2001:3333::2/64', 'count': 1, 'ip': '2001:3333::2', 'gw': '2001:3333::1', 'plen': 64, 'vlan': None, 'version': 'ipv6'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic to 2001:2::8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic to 2001:2::5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic to 2001:1::8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic to 2001:1::5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic to 2001:3::8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic to 2001:3::5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_2001:1111::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_2001:3333::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=141, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip route add 2001:1::/128 via 2001:2222::2 && ip route add 2001:1::/126 via 2001:2222::2 && ip route add 2001:2::/128 via 2001:2222::2 && ip route add 2001:2::/126 via 2001:2222::2 && ip route add 2001:2::/64 via 2001:3333::2 && ip route add 2001:3::/64 metric 10 via 2001:2222::2 && ip route add 2001:3::/64 metric 100 via 2001:3333::2 INFO asyncssh:logging.py:92 [conn=141, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=14] Command: ip route add 2001:1::/128 via 2001:2222::2 && ip route add 2001:1::/126 via 2001:2222::2 && ip route add 2001:2::/128 via 2001:2222::2 && ip route add 2001:2::/126 via 2001:2222::2 && ip route add 2001:2::/64 via 2001:3333::2 && ip route add 2001:3::/64 metric 10 via 2001:2222::2 && ip route add 2001:3::/64 metric 100 via 2001:3333::2 INFO asyncssh:logging.py:92 [conn=141, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=141, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp34 down INFO asyncssh:logging.py:92 [conn=141, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=16] Command: ip link set dev swp34 down INFO asyncssh:logging.py:92 [conn=141, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=141, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=141, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=18] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=141, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=18] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.23","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=141, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=141, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=20] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=141, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=20] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"2001:2::/64","gateway":"2001:3333::2","dev":"swp35","metric":1024,"flags":["offload","rt_offload"],"pref":"medium"},{"dst":"2001:3::/64","gateway":"2001:3333::2","dev":"swp35","metric":100,"flags":["offload","rt_offload"],"pref":"medium"},{"dst":"2001:1111::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:3333::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f730a1a0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic to 2001:2::8 SIP-DIP N/A Tx 114751 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic to 2001:2::8 SIP-DIP N/A Tx 114751 Rx 114751 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic to 2001:2::5 SIP-DIP N/A Tx 114751 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic to 2001:2::5 SIP-DIP N/A Tx 114751 Rx 114751 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic to 2001:1::8 SIP-DIP N/A Tx 114751 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic to 2001:1::8 SIP-DIP N/A Tx 114751 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic to 2001:1::5 SIP-DIP N/A Tx 114751 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic to 2001:1::5 SIP-DIP N/A Tx 114751 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic to 2001:3::8 SIP-DIP N/A Tx 114751 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic to 2001:3::8 SIP-DIP N/A Tx 114751 Rx 114751 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic to 2001:3::5 SIP-DIP N/A Tx 114751 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic to 2001:3::5 SIP-DIP N/A Tx 114751 Rx 114751 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv6_nh_state from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_route.py INFO DENT:Logger.py:147 Restoring sysctl values INFO asyncssh:logging.py:92 [conn=141, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=21] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=141, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=22] Command: sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=141, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=22] Channel closed DEBUG infra2:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=141, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=23] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=141, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=24] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 00:19:02 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=141, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=25] Channel closed DEBUG infra2:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 INFO asyncssh:logging.py:92 [conn=141, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=26] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 INFO asyncssh:logging.py:92 [conn=141, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=26] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=141, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=27] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=141, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=28] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=141, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=28] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"f6:33:41:29:6d:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=141, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=141, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=29] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 up && ip link set dev swp34 down && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=141, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=141, chan=30] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 up && ip link set dev swp34 down && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=141, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=141, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=141, chan=30] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/ipv6/test_ipv6_route.py::test_ipv6_route_metrics | 161.04 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-8252' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_ipv6_route_metrics">Starting testcase:test_ipv6_route_metrics from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_route.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=141, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=142] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=142] Local address: 172.17.0.3, port 52314 INFO asyncssh:logging.py:92 [conn=142] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=142] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=142] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=142, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=0] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 00:19:02 UTC 2023 INFO asyncssh:logging.py:92 [conn=142, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=1] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=142, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=2] Command: sysctl net.ipv6.conf.all.forwarding INFO asyncssh:logging.py:92 [conn=142, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=2] Channel closed DEBUG infra2:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO asyncssh:logging.py:92 [conn=142, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=3] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=142, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=4] Command: sysctl net.ipv6.conf.all.forwarding=1 INFO asyncssh:logging.py:92 [conn=142, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=4] Channel closed DEBUG infra2:Logger.py:156 net.ipv6.conf.all.forwarding = 1 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=142, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=5] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=142, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=6] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=6] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 00:19:03 UTC 2023 INFO asyncssh:logging.py:92 [conn=142, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=142, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=8] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=142, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=8] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"f6:33:41:29:6d:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=142, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up INFO asyncssh:logging.py:92 [conn=142, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up INFO asyncssh:logging.py:92 [conn=142, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=142, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=11] Channel closed DEBUG infra2:Logger.py:156 ip address add 2001:1111::1/64 dev swp33 && ip address add 2001:2222::1/64 dev swp34 && ip address add 2001:3333::1/64 dev swp35 && ip address add 2001:4444::1/64 dev swp35 INFO asyncssh:logging.py:92 [conn=142, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=12] Command: ip address add 2001:1111::1/64 dev swp33 && ip address add 2001:2222::1/64 dev swp34 && ip address add 2001:3333::1/64 dev swp35 && ip address add 2001:4444::1/64 dev swp35 INFO asyncssh:logging.py:92 [conn=142, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_2001:1111::2/64', 'count': 1, 'ip': '2001:1111::2', 'gw': '2001:1111::1', 'plen': 64, 'vlan': None, 'version': 'ipv6'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_2001:2222::2/64', 'count': 1, 'ip': '2001:2222::2', 'gw': '2001:2222::1', 'plen': 64, 'vlan': None, 'version': 'ipv6'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_2001:3333::2/64', 'count': 1, 'ip': '2001:3333::2', 'gw': '2001:3333::1', 'plen': 64, 'vlan': None, 'version': 'ipv6'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_2001:4444::2/64', 'count': 1, 'ip': '2001:4444::2', 'gw': '2001:4444::1', 'plen': 64, 'vlan': None, 'version': 'ipv6'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_2001:1111::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_2001:2222::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_2001:3333::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_2001:4444::2/64 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=142, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip route add 2001:4444::/64 metric 100 via 2001:2222::2 && ip route add 2001:4444::/64 metric 101 via 2001:2222::2 && ip route add 2001:4444::/64 metric 102 via 2001:3333::2 INFO asyncssh:logging.py:92 [conn=142, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=14] Command: ip route add 2001:4444::/64 metric 100 via 2001:2222::2 && ip route add 2001:4444::/64 metric 101 via 2001:2222::2 && ip route add 2001:4444::/64 metric 102 via 2001:3333::2 INFO asyncssh:logging.py:92 [conn=142, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f730ba30>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP N/A Tx 134186 Rx 134186 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP N/A Tx 268370 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=142, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=142, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=16] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=142, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.23","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=142, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=142, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=18] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=142, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=18] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"2001:1111::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:2222::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:3333::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:4444::/64","gateway":"2001:2222::2","dev":"swp34","metric":100,"flags":["offload","rt_offload"],"pref":"medium"},{"dst":"2001:4444::/64","gateway":"2001:2222::2","dev":"swp34","metric":101,"flags":[],"pref":"medium"},{"dst":"2001:4444::/64","gateway":"2001:3333::2","dev":"swp35","metric":102,"flags":[],"pref":"medium"},{"dst":"2001:4444::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] INFO asyncssh:logging.py:92 [conn=142, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip route delete 2001:4444::/64 metric 100 dev swp34 INFO asyncssh:logging.py:92 [conn=142, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=20] Command: ip route delete 2001:4444::/64 metric 100 dev swp34 INFO asyncssh:logging.py:92 [conn=142, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f7308100>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP N/A Tx 218596 Rx 218596 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP N/A Tx 437191 Rx 0 Loss 100.000 INFO asyncssh:logging.py:92 [conn=142, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=142, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=22] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=142, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=22] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.23","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=142, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=23] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=142, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=24] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=142, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=24] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"2001:1111::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:2222::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:3333::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:4444::/64","gateway":"2001:2222::2","dev":"swp34","metric":101,"flags":["offload","rt_offload"],"pref":"medium"},{"dst":"2001:4444::/64","gateway":"2001:3333::2","dev":"swp35","metric":102,"flags":[],"pref":"medium"},{"dst":"2001:4444::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] INFO asyncssh:logging.py:92 [conn=142, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=25] Channel closed DEBUG infra2:Logger.py:156 ip route add 2001:4444::/64 metric 99 via 2001:3333::2 INFO asyncssh:logging.py:92 [conn=142, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=26] Command: ip route add 2001:4444::/64 metric 99 via 2001:3333::2 INFO asyncssh:logging.py:92 [conn=142, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=26] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f730a8c0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP N/A Tx 219601 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP N/A Tx 439201 Rx 439201 Loss 0.000 INFO asyncssh:logging.py:92 [conn=142, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=27] Channel closed DEBUG infra2:Logger.py:156 ip -j -4 route show INFO asyncssh:logging.py:92 [conn=142, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=28] Command: ip -j -4 route show INFO asyncssh:logging.py:92 [conn=142, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=28] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"default","gateway":"10.36.118.1","dev":"ma1","flags":["trap","rt_offload"]},{"dst":"10.36.118.0/24","dev":"ma1","protocol":"kernel","scope":"link","prefsrc":"10.36.118.23","flags":["rt_trap"]}] INFO asyncssh:logging.py:92 [conn=142, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=29] Channel closed DEBUG infra2:Logger.py:156 ip -j -6 route show INFO asyncssh:logging.py:92 [conn=142, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=30] Command: ip -j -6 route show INFO asyncssh:logging.py:92 [conn=142, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=30] Channel closed DEBUG infra2:Logger.py:156 [{"dst":"2001:1111::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:2222::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:3333::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"2001:4444::/64","gateway":"2001:3333::2","dev":"swp35","metric":99,"flags":["offload","rt_offload"],"pref":"medium"},{"dst":"2001:4444::/64","gateway":"2001:2222::2","dev":"swp34","metric":101,"flags":["offload"],"pref":"medium"},{"dst":"2001:4444::/64","gateway":"2001:3333::2","dev":"swp35","metric":102,"flags":[],"pref":"medium"},{"dst":"2001:4444::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"ma1","protocol":"kernel","metric":256,"flags":["rt_trap"],"pref":"medium"},{"dst":"fe80::/64","dev":"swp33","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp36","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp35","protocol":"kernel","metric":256,"flags":[],"pref":"medium"},{"dst":"fe80::/64","dev":"swp34","protocol":"kernel","metric":256,"flags":[],"pref":"medium"}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_ipv6_route_metrics from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/ipv6/test_ipv6_route.py INFO DENT:Logger.py:147 Restoring sysctl values INFO asyncssh:logging.py:92 [conn=142, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=31] Channel closed DEBUG infra2:Logger.py:156 sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=142, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=32] Command: sysctl net.ipv6.conf.all.forwarding=0 INFO asyncssh:logging.py:92 [conn=142, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=32] Channel closed DEBUG infra2:Logger.py:156 net.ipv6.conf.all.forwarding = 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=142, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=33] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=142, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=34] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 00:21:43 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=142, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=35] Channel closed DEBUG infra2:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 INFO asyncssh:logging.py:92 [conn=142, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=36] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 INFO asyncssh:logging.py:92 [conn=142, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=36] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=142, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=37] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=142, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=38] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=142, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=38] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"f6:33:41:29:6d:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=142, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=142, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=39] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=142, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=142, chan=40] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=142, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=142, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=142, chan=40] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/policer/test_policer_basic_functionality.py::test_policer_basic_functionality[port-ipv4] | 137.58 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_policer_basic_functionality[port-ipv4]">Starting testcase:test_policer_basic_functionality[port-ipv4] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-8348' coro=<test_policer_basic_functionality() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py:48> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=143, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=144] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=144] Local address: 172.17.0.3, port 36062 INFO asyncssh:logging.py:92 [conn=144] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=144] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=144] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=144, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=0] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 00:23:44 UTC 2023 INFO asyncssh:logging.py:92 [conn=144, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add type bridge INFO asyncssh:logging.py:92 [conn=144, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=2] Command: ip link add type bridge INFO asyncssh:logging.py:92 [conn=144, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=144, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=144, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=4] Command: ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=144, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=144, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 INFO asyncssh:logging.py:92 [conn=144, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=6] Command: ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 INFO asyncssh:logging.py:92 [conn=144, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=144, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=7] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=144, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=8] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=144, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=144, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=9] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol ipv4 flower skip_sw src_ip 64.150.14.141 dst_ip 59.255.138.111 action police rate 300000 burst 301000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=144, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=10] Command: tc filter add dev swp33 ingress protocol ipv4 flower skip_sw src_ip 64.150.14.141 dst_ip 59.255.138.111 action police rate 300000 burst 301000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=144, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=144, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=11] Channel closed DEBUG infra2:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=144, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=12] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=144, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=12] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"ip","pref":49152,"kind":"flower","chain":0},{"protocol":"ip","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"eth_type":"ipv4","dst_ip":"59.255.138.111","src_ip":"64.150.14.141"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_eth_type_ipv4_dst_ip_59.255.138.111_src_ip_64.150.14.141 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f730bac0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:5 Tx 2969574 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:6 Tx 0 Rx 2138 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_policer_basic_functionality[port-ipv4] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=144, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=144, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=14] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 00:25:56 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=144, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=15] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=144, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=16] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 00:26:01 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=144, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=144, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=144, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=18] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":139,"ifname":"bridge0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=144, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=144, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=20] Command: ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=144, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=144, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=21] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=144, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=22] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 00:26:01 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=144, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=23] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=144, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=144, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=24] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=144, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=25] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=144, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=144, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=144, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=26] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=144, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=27] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=144, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=144, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=144, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=28] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=144, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=29] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=144, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=144, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=144, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=30] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=144, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=31] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=144, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=144, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=144, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=32] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=144, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=33] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=144, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=144, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=144, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=34] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=144, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=35] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=144, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=144, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=144, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=36] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=144, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=37] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=144, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=144, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=144, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=38] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=144, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=144, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=144, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=144, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=40] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=144, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=144, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=144, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=144, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=42] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=144, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=144, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=144, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=144, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=144, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=144, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=46] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=144, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=144, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=46] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=144, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=144, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=48] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=144, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=48] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=144, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=144, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=50] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=144, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=144, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=50] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=144, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=144, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=52] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=144, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=144, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=52] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=144, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=144, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=144, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=144, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=144, chan=54] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=144, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=144, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=144, chan=54] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/policer/test_policer_basic_functionality.py::test_policer_basic_functionality[port-l2] | 138.21 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_policer_basic_functionality[port-l2]">Starting testcase:test_policer_basic_functionality[port-l2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-8415' coro=<test_policer_basic_functionality() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py:48> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=144, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=145] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=145] Local address: 172.17.0.3, port 50486 INFO asyncssh:logging.py:92 [conn=145] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=145] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=145] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=145, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=0] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 00:26:02 UTC 2023 INFO asyncssh:logging.py:92 [conn=145, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add type bridge INFO asyncssh:logging.py:92 [conn=145, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=2] Command: ip link add type bridge INFO asyncssh:logging.py:92 [conn=145, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=145, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=145, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=4] Command: ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=145, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=145, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 INFO asyncssh:logging.py:92 [conn=145, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=6] Command: ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 INFO asyncssh:logging.py:92 [conn=145, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=145, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=7] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=145, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=8] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=145, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=145, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=9] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol 802.1q flower skip_sw src_mac 02:5b:91:e1:c8:d1 dst_mac 02:29:e8:40:75:44 vlan_id 835 action police rate 300000 burst 301000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=145, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=10] Command: tc filter add dev swp33 ingress protocol 802.1q flower skip_sw src_mac 02:5b:91:e1:c8:d1 dst_mac 02:29:e8:40:75:44 vlan_id 835 action police rate 300000 burst 301000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=145, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=145, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=11] Channel closed DEBUG infra2:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=145, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=12] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=145, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=12] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"802.1Q","pref":49152,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":835,"dst_mac":"02:29:e8:40:75:44","src_mac":"02:5b:91:e1:c8:d1"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_835_dst_mac_02:29:e8:40:75:44_src_mac_02:5b:91:e1:c8:d1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f6fb9ae0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:5 Tx 1541321 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:6 Tx 0 Rx 1677 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_policer_basic_functionality[port-l2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=145, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=145, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=14] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 00:28:14 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=145, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=15] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=145, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=16] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 00:28:19 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=145, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=145, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=145, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=18] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":140,"ifname":"bridge0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=145, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=145, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=20] Command: ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=145, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=145, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=21] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=145, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=22] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 00:28:19 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=145, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=23] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=145, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=145, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=24] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=145, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=25] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=145, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=145, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=145, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=26] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=145, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=27] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=145, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=145, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=145, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=28] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=145, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=29] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=145, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=145, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=145, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=30] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=145, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=31] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=145, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=145, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=145, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=32] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=145, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=33] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=145, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=145, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=145, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=34] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=145, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=35] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=145, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=145, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=145, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=36] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=145, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=37] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=145, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=145, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=145, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=38] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=145, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=145, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=145, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=145, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=40] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=145, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=145, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=145, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=145, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=42] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=145, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=145, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=145, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=145, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=145, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=145, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=46] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=145, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=145, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=46] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=145, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=145, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=48] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=145, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=48] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=145, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=145, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=50] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=145, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=145, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=50] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=145, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=145, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=52] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=145, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=145, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=52] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=145, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=145, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=145, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=145, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=145, chan=54] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=145, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=145, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=145, chan=54] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/policer/test_policer_basic_functionality.py::test_policer_basic_functionality[port-udp] | 142.70 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_policer_basic_functionality[port-udp]">Starting testcase:test_policer_basic_functionality[port-udp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-8482' coro=<test_policer_basic_functionality() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py:48> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=145, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=146] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=146] Local address: 172.17.0.3, port 52002 INFO asyncssh:logging.py:92 [conn=146] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=146] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=146] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=146, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=0] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 00:28:20 UTC 2023 INFO asyncssh:logging.py:92 [conn=146, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add type bridge INFO asyncssh:logging.py:92 [conn=146, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=2] Command: ip link add type bridge INFO asyncssh:logging.py:92 [conn=146, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=146, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=146, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=4] Command: ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=146, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=146, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 INFO asyncssh:logging.py:92 [conn=146, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=6] Command: ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 INFO asyncssh:logging.py:92 [conn=146, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=146, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=7] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=146, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=8] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=146, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=146, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=9] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol ip flower skip_sw src_ip 75.41.31.34 dst_ip 104.247.26.176 ip_proto udp src_port 45658 dst_port 44909 action police rate 300000 burst 301000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=146, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=10] Command: tc filter add dev swp33 ingress protocol ip flower skip_sw src_ip 75.41.31.34 dst_ip 104.247.26.176 ip_proto udp src_port 45658 dst_port 44909 action police rate 300000 burst 301000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=146, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=146, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=11] Channel closed DEBUG infra2:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=146, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=12] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=146, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=12] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"ip","pref":49152,"kind":"flower","chain":0},{"protocol":"ip","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"eth_type":"ipv4","ip_proto":"udp","dst_ip":"104.247.26.176","src_ip":"75.41.31.34","dst_port":44909,"src_port":45658},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_eth_type_ipv4_ip_proto_udp_dst_ip_104.247.26.176_src_ip_75.41.31.34_dst_port_44909_src_port_45658 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f7308b20>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:5 Tx 2955990 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:6 Tx 0 Rx 2132 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_policer_basic_functionality[port-udp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=146, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=146, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=14] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 00:30:36 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=146, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=15] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=146, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=16] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 00:30:41 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=146, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=146, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=146, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=18] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":141,"ifname":"bridge0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=146, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=146, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=20] Command: ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=146, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=146, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=21] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=146, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=22] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 00:30:42 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=146, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=23] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=146, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=146, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=24] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=146, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=25] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=146, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=146, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=146, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=26] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=146, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=27] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=146, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=146, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=146, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=28] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=146, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=29] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=146, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=146, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=146, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=30] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=146, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=31] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=146, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=146, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=146, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=32] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=146, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=33] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=146, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=146, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=146, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=34] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=146, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=35] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=146, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=146, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=146, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=36] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=146, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=37] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=146, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=146, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=146, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=38] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=146, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=146, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=146, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=146, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=40] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=146, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=146, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=146, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=146, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=42] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=146, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=146, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=146, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=146, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=146, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=146, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=46] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=146, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=146, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=46] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=146, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=146, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=48] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=146, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=48] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=146, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=146, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=50] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=146, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=146, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=50] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=146, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=146, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=52] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=146, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=146, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=52] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=146, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=146, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=146, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=146, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=146, chan=54] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=146, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=146, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=146, chan=54] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/policer/test_policer_basic_functionality.py::test_policer_basic_functionality[port-tcp] | 140.28 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_policer_basic_functionality[port-tcp]">Starting testcase:test_policer_basic_functionality[port-tcp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-8549' coro=<test_policer_basic_functionality() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py:48> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=146, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=147] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=147] Local address: 172.17.0.3, port 53236 INFO asyncssh:logging.py:92 [conn=147] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=147] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=147] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=147, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=0] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 00:30:42 UTC 2023 INFO asyncssh:logging.py:92 [conn=147, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add type bridge INFO asyncssh:logging.py:92 [conn=147, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=2] Command: ip link add type bridge INFO asyncssh:logging.py:92 [conn=147, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=147, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=147, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=4] Command: ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=147, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=147, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 INFO asyncssh:logging.py:92 [conn=147, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=6] Command: ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 INFO asyncssh:logging.py:92 [conn=147, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=147, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=7] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=147, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=8] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=147, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=147, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=9] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol ip flower skip_sw src_ip 116.158.98.244 dst_ip 68.83.48.201 ip_proto tcp src_port 21654 dst_port 39122 action police rate 300000 burst 301000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=147, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=10] Command: tc filter add dev swp33 ingress protocol ip flower skip_sw src_ip 116.158.98.244 dst_ip 68.83.48.201 ip_proto tcp src_port 21654 dst_port 39122 action police rate 300000 burst 301000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=147, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=147, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=11] Channel closed DEBUG infra2:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=147, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=12] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=147, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=12] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"ip","pref":49152,"kind":"flower","chain":0},{"protocol":"ip","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"eth_type":"ipv4","ip_proto":"tcp","dst_ip":"68.83.48.201","src_ip":"116.158.98.244","dst_port":39122,"src_port":21654},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_eth_type_ipv4_ip_proto_tcp_dst_ip_68.83.48.201_src_ip_116.158.98.244_dst_port_39122_src_port_21654 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f7000280>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:5 Tx 1534735 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:6 Tx 0 Rx 1673 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_policer_basic_functionality[port-tcp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=147, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=147, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=14] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 00:32:57 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=147, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=15] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=147, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=16] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 00:33:02 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=147, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=147, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=147, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=18] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":142,"ifname":"bridge0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=147, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=147, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=20] Command: ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=147, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=147, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=21] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=147, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=22] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 00:33:02 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=147, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=23] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=147, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=147, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=24] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=147, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=25] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=147, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=147, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=147, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=26] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=147, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=27] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=147, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=147, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=147, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=28] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=147, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=29] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=147, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=147, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=147, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=30] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=147, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=31] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=147, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=147, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=147, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=32] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=147, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=33] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=147, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=147, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=147, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=34] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=147, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=35] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=147, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=147, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=147, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=36] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=147, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=37] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=147, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=147, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=147, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=38] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=147, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=147, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=147, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=147, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=40] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=147, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=147, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=147, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=147, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=42] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=147, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=147, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=147, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=147, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=147, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=147, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=46] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=147, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=147, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=46] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=147, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=147, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=48] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=147, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=48] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=147, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=147, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=50] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=147, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=147, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=50] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=147, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=147, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=52] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=147, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=147, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=52] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=147, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=147, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=147, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=147, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=147, chan=54] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=147, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=147, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=147, chan=54] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/policer/test_policer_basic_functionality.py::test_policer_basic_functionality[shared_block-ipv4] | 139.01 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_policer_basic_functionality[shared_block-ipv4]">Starting testcase:test_policer_basic_functionality[shared_block-ipv4] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-8616' coro=<test_policer_basic_functionality() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py:48> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=147, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=148] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=148] Local address: 172.17.0.3, port 52818 INFO asyncssh:logging.py:92 [conn=148] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=148] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=148] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=148, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=0] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 00:33:03 UTC 2023 INFO asyncssh:logging.py:92 [conn=148, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add type bridge INFO asyncssh:logging.py:92 [conn=148, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=2] Command: ip link add type bridge INFO asyncssh:logging.py:92 [conn=148, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=148, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=148, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=4] Command: ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=148, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=148, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 INFO asyncssh:logging.py:92 [conn=148, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=6] Command: ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 INFO asyncssh:logging.py:92 [conn=148, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=148, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=7] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp34 ingress_block 349 ingress INFO asyncssh:logging.py:92 [conn=148, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=8] Command: tc qdisc add dev swp34 ingress_block 349 ingress INFO asyncssh:logging.py:92 [conn=148, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=148, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=9] Channel closed DEBUG infra2:Logger.py:156 tc filter add block 349 ingress protocol ipv4 flower skip_sw src_ip 59.0.107.173 dst_ip 70.206.30.59 action police rate 300000 burst 301000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=148, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=10] Command: tc filter add block 349 ingress protocol ipv4 flower skip_sw src_ip 59.0.107.173 dst_ip 70.206.30.59 action police rate 300000 burst 301000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=148, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=148, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=11] Channel closed DEBUG infra2:Logger.py:156 tc -j filter show block 349 ingress INFO asyncssh:logging.py:92 [conn=148, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=12] Command: tc -j filter show block 349 ingress INFO asyncssh:logging.py:92 [conn=148, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=12] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"ip","pref":49152,"kind":"flower","chain":0},{"protocol":"ip","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"eth_type":"ipv4","dst_ip":"70.206.30.59","src_ip":"59.0.107.173"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp34_eth_type_ipv4_dst_ip_70.206.30.59_src_ip_59.0.107.173 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f70023e0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:5 Tx 0 Rx 2149 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:6 Tx 3004089 Rx 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_policer_basic_functionality[shared_block-ipv4] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=148, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=148, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=14] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 00:35:16 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=148, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=15] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=148, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=16] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 00:35:21 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=148, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=148, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=148, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=18] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":143,"ifname":"bridge0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=148, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=148, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=20] Command: ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=148, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=148, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=21] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=148, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=22] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 00:35:21 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=148, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=23] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=148, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=148, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=24] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp34","parent":"ffff:fff1","ingress_block":349,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=148, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=25] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=148, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=148, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=148, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=26] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=148, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=27] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=148, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=148, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=148, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=28] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=148, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=29] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=148, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=148, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=148, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=30] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=148, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=31] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=148, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=148, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=148, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=32] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=148, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=33] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=148, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=148, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=148, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=34] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=148, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=35] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=148, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=148, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=148, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=36] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=148, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=37] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=148, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=148, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=148, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=38] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=148, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=148, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=148, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=148, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=40] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=148, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=148, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=148, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=148, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=42] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=148, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=148, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=148, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=148, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=148, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=148, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=46] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=148, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=148, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=46] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=148, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=148, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=48] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=148, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=148, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=48] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=148, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 ingress INFO asyncssh:logging.py:92 [conn=148, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=50] Command: tc qdisc delete dev swp34 ingress INFO asyncssh:logging.py:92 [conn=148, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=50] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=148, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=148, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=52] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=148, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=148, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=52] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=148, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=148, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=148, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=148, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=148, chan=54] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=148, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=148, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=148, chan=54] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/policer/test_policer_basic_functionality.py::test_policer_basic_functionality[shared_block-l2] | 140.59 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_policer_basic_functionality[shared_block-l2]">Starting testcase:test_policer_basic_functionality[shared_block-l2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-8683' coro=<test_policer_basic_functionality() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py:48> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=148, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=149] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=149] Local address: 172.17.0.3, port 33390 INFO asyncssh:logging.py:92 [conn=149] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=149] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=149] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=149, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=0] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 00:35:22 UTC 2023 INFO asyncssh:logging.py:92 [conn=149, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add type bridge INFO asyncssh:logging.py:92 [conn=149, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=2] Command: ip link add type bridge INFO asyncssh:logging.py:92 [conn=149, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=149, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=149, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=4] Command: ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=149, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=149, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 INFO asyncssh:logging.py:92 [conn=149, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=6] Command: ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 INFO asyncssh:logging.py:92 [conn=149, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=149, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=7] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp34 ingress_block 1115 ingress INFO asyncssh:logging.py:92 [conn=149, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=8] Command: tc qdisc add dev swp34 ingress_block 1115 ingress INFO asyncssh:logging.py:92 [conn=149, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=149, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=9] Channel closed DEBUG infra2:Logger.py:156 tc filter add block 1115 ingress protocol 802.1q flower skip_sw src_mac 02:8f:9c:10:3f:51 dst_mac 02:9c:5f:e9:8e:86 vlan_id 3291 action police rate 300000 burst 301000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=149, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=10] Command: tc filter add block 1115 ingress protocol 802.1q flower skip_sw src_mac 02:8f:9c:10:3f:51 dst_mac 02:9c:5f:e9:8e:86 vlan_id 3291 action police rate 300000 burst 301000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=149, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=149, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=11] Channel closed DEBUG infra2:Logger.py:156 tc -j filter show block 1115 ingress INFO asyncssh:logging.py:92 [conn=149, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=12] Command: tc -j filter show block 1115 ingress INFO asyncssh:logging.py:92 [conn=149, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=12] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"802.1Q","pref":49152,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":3291,"dst_mac":"02:9c:5f:e9:8e:86","src_mac":"02:8f:9c:10:3f:51"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp34_vlan_id_3291_dst_mac_02:9c:5f:e9:8e:86_src_mac_02:8f:9c:10:3f:51 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f7003cd0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:5 Tx 0 Rx 2138 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:6 Tx 2968963 Rx 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_policer_basic_functionality[shared_block-l2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=149, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=149, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=14] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 00:37:36 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=149, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=15] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=149, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=16] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 00:37:41 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=149, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=149, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=149, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=18] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":144,"ifname":"bridge0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=149, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=149, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=20] Command: ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=149, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=149, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=21] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=149, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=22] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 00:37:42 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=149, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=23] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=149, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=149, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=24] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp34","parent":"ffff:fff1","ingress_block":1115,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=149, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=25] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=149, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=149, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=149, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=26] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=149, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=27] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=149, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=149, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=149, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=28] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=149, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=29] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=149, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=149, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=149, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=30] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=149, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=31] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=149, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=149, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=149, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=32] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=149, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=33] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=149, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=149, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=149, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=34] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=149, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=35] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=149, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=149, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=149, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=36] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=149, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=37] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=149, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=149, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=149, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=38] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=149, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=149, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=149, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=149, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=40] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=149, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=149, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=149, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=149, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=42] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=149, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=149, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=149, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=149, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=149, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=149, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=46] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=149, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=149, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=46] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=149, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=149, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=48] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=149, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=149, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=48] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=149, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 ingress INFO asyncssh:logging.py:92 [conn=149, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=50] Command: tc qdisc delete dev swp34 ingress INFO asyncssh:logging.py:92 [conn=149, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=50] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=149, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=149, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=52] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=149, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=149, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=52] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=149, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=149, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=149, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=149, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=149, chan=54] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=149, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=149, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=149, chan=54] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/policer/test_policer_basic_functionality.py::test_policer_basic_functionality[shared_block-udp] | 141.96 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_policer_basic_functionality[shared_block-udp]">Starting testcase:test_policer_basic_functionality[shared_block-udp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-8750' coro=<test_policer_basic_functionality() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py:48> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=149, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=150] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=150] Local address: 172.17.0.3, port 35696 INFO asyncssh:logging.py:92 [conn=150] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=150] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=150] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=150, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=0] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 00:37:42 UTC 2023 INFO asyncssh:logging.py:92 [conn=150, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add type bridge INFO asyncssh:logging.py:92 [conn=150, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=2] Command: ip link add type bridge INFO asyncssh:logging.py:92 [conn=150, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=150, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=150, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=4] Command: ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=150, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=150, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 INFO asyncssh:logging.py:92 [conn=150, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=6] Command: ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 INFO asyncssh:logging.py:92 [conn=150, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=150, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=7] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp34 ingress_block 2222 ingress INFO asyncssh:logging.py:92 [conn=150, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=8] Command: tc qdisc add dev swp34 ingress_block 2222 ingress INFO asyncssh:logging.py:92 [conn=150, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=150, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=9] Channel closed DEBUG infra2:Logger.py:156 tc filter add block 2222 ingress protocol ipv4 flower skip_sw src_ip 114.230.15.11 dst_ip 16.178.207.38 ip_proto udp src_port 9653 dst_port 24251 action police rate 300000 burst 301000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=150, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=10] Command: tc filter add block 2222 ingress protocol ipv4 flower skip_sw src_ip 114.230.15.11 dst_ip 16.178.207.38 ip_proto udp src_port 9653 dst_port 24251 action police rate 300000 burst 301000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=150, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=150, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=11] Channel closed DEBUG infra2:Logger.py:156 tc -j filter show block 2222 ingress INFO asyncssh:logging.py:92 [conn=150, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=12] Command: tc -j filter show block 2222 ingress INFO asyncssh:logging.py:92 [conn=150, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=12] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"ip","pref":49152,"kind":"flower","chain":0},{"protocol":"ip","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"eth_type":"ipv4","ip_proto":"udp","dst_ip":"16.178.207.38","src_ip":"114.230.15.11","dst_port":24251,"src_port":9653},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp34_eth_type_ipv4_ip_proto_udp_dst_ip_16.178.207.38_src_ip_114.230.15.11_dst_port_24251_src_port_9653 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f7002770>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:5 Tx 0 Rx 1828 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:6 Tx 2015628 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_policer_basic_functionality[shared_block-udp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=150, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=150, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=14] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 00:39:59 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=150, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=15] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=150, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=16] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 00:40:03 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=150, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=150, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=150, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=18] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":145,"ifname":"bridge0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=150, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=150, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=20] Command: ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=150, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=150, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=21] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=150, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=22] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 00:40:04 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=150, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=23] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=150, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=150, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=24] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp34","parent":"ffff:fff1","ingress_block":2222,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=150, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=25] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=150, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=150, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=150, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=26] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=150, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=27] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=150, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=150, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=150, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=28] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=150, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=29] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=150, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=150, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=150, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=30] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=150, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=31] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=150, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=150, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=150, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=32] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=150, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=33] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=150, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=150, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=150, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=34] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=150, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=35] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=150, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=150, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=150, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=36] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=150, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=37] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=150, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=150, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=150, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=38] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=150, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=150, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=150, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=150, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=40] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=150, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=150, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=150, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=150, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=42] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=150, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=150, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=150, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=150, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=150, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=150, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=46] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=150, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=150, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=46] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=150, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=150, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=48] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=150, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=150, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=48] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=150, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 ingress INFO asyncssh:logging.py:92 [conn=150, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=50] Command: tc qdisc delete dev swp34 ingress INFO asyncssh:logging.py:92 [conn=150, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=50] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=150, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=150, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=52] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=150, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=150, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=52] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=150, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=150, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=150, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=150, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=150, chan=54] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=150, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=150, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=150, chan=54] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/policer/test_policer_basic_functionality.py::test_policer_basic_functionality[shared_block-tcp] | 135.44 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_policer_basic_functionality[shared_block-tcp]">Starting testcase:test_policer_basic_functionality[shared_block-tcp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-8817' coro=<test_policer_basic_functionality() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py:48> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=150, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=151] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=151] Local address: 172.17.0.3, port 52032 INFO asyncssh:logging.py:92 [conn=151] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=151] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=151] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=151, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=0] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 00:40:04 UTC 2023 INFO asyncssh:logging.py:92 [conn=151, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add type bridge INFO asyncssh:logging.py:92 [conn=151, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=2] Command: ip link add type bridge INFO asyncssh:logging.py:92 [conn=151, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=151, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=151, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=4] Command: ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=151, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=151, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 INFO asyncssh:logging.py:92 [conn=151, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=6] Command: ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 INFO asyncssh:logging.py:92 [conn=151, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=151, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=7] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp34 ingress_block 1124 ingress INFO asyncssh:logging.py:92 [conn=151, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=8] Command: tc qdisc add dev swp34 ingress_block 1124 ingress INFO asyncssh:logging.py:92 [conn=151, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=151, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=9] Channel closed DEBUG infra2:Logger.py:156 tc filter add block 1124 ingress protocol 0x0800 flower skip_sw src_ip 113.162.66.195 dst_ip 44.214.147.89 ip_proto tcp src_port 6435 dst_port 26700 action police rate 300000 burst 301000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=151, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=10] Command: tc filter add block 1124 ingress protocol 0x0800 flower skip_sw src_ip 113.162.66.195 dst_ip 44.214.147.89 ip_proto tcp src_port 6435 dst_port 26700 action police rate 300000 burst 301000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=151, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=151, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=11] Channel closed DEBUG infra2:Logger.py:156 tc -j filter show block 1124 ingress INFO asyncssh:logging.py:92 [conn=151, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=12] Command: tc -j filter show block 1124 ingress INFO asyncssh:logging.py:92 [conn=151, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=12] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"ip","pref":49152,"kind":"flower","chain":0},{"protocol":"ip","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"eth_type":"ipv4","ip_proto":"tcp","dst_ip":"44.214.147.89","src_ip":"113.162.66.195","dst_port":26700,"src_port":6435},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp34_eth_type_ipv4_ip_proto_tcp_dst_ip_44.214.147.89_src_ip_113.162.66.195_dst_port_26700_src_port_6435 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f7446aa0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:5 Tx 0 Rx 1906 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:6 Tx 2256773 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_policer_basic_functionality[shared_block-tcp] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_basic_functionality.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=151, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=151, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=14] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 00:42:14 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=151, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=15] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=151, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=16] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 00:42:19 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=151, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=151, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=151, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=18] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":146,"ifname":"bridge0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=151, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=151, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=20] Command: ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=151, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=151, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=21] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=151, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=22] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 00:42:19 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=151, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=23] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=151, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=151, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=24] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp34","parent":"ffff:fff1","ingress_block":1124,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=151, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=25] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=151, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=151, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=151, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=26] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=151, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=27] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=151, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=151, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=151, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=28] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=151, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=29] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=151, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=151, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=151, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=30] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=151, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=31] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=151, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=151, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=151, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=32] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=151, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=33] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=151, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=151, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=151, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=34] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=151, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=35] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=151, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=151, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=151, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=36] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=151, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=37] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=151, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=151, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=151, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=38] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=151, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=151, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=151, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=151, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=40] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=151, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=151, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=151, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=151, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=42] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=151, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=151, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=151, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=151, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=151, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=151, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=46] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=151, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=151, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=46] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=151, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=151, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=48] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=151, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=151, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=48] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=151, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 ingress INFO asyncssh:logging.py:92 [conn=151, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=50] Command: tc qdisc delete dev swp34 ingress INFO asyncssh:logging.py:92 [conn=151, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=50] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=151, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=151, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=52] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=151, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=151, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=52] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=151, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=151, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=151, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=151, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=151, chan=54] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=151, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=151, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=151, chan=54] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/policer/test_policer_dynamic_traps.py::test_policer_interact_with_acl_drop | 242.93 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_policer_interact_with_acl_drop">Starting testcase:test_policer_interact_with_acl_drop from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_dynamic_traps.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-8884' coro=<test_policer_interact_with_acl_drop() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_dynamic_traps.py:50> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=151, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=152] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=152] Local address: 172.17.0.3, port 39000 INFO asyncssh:logging.py:92 [conn=152] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=152] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=152] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=152, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=0] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 00:42:20 UTC 2023 INFO asyncssh:logging.py:92 [conn=152, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add type bridge INFO asyncssh:logging.py:92 [conn=152, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=2] Command: ip link add type bridge INFO asyncssh:logging.py:92 [conn=152, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=152, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=152, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=4] Command: ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=152, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=152, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 && ip link set dev swp35 up master bridge0 && ip link set dev swp36 up master bridge0 INFO asyncssh:logging.py:92 [conn=152, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=6] Command: ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 && ip link set dev swp35 up master bridge0 && ip link set dev swp36 up master bridge0 INFO asyncssh:logging.py:92 [conn=152, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=152, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=7] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=152, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=8] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=152, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=152, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=9] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=152, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=10] Command: tc filter add dev swp33 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=152, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=152, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=11] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol 0x8100 pref 200 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action drop INFO asyncssh:logging.py:92 [conn=152, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=12] Command: tc filter add dev swp33 ingress protocol 0x8100 pref 200 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action drop INFO asyncssh:logging.py:92 [conn=152, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=152, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=13] Channel closed DEBUG infra2:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=152, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=14] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=152, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=14] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1942,"dst_mac":"02:06:a2:54:22:9f","src_mac":"02:15:53:62:36:d1"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}},{"protocol":"802.1Q","pref":200,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":200,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1942,"dst_mac":"02:06:a2:54:22:9f","src_mac":"02:15:53:62:36:d1"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"gact","control_action":{"type":"drop"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_1942_dst_mac_02:06:a2:54:22:9f_src_mac_02:15:53:62:36:d1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f6e92aa0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:5 Tx 9582088 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:6 Tx 0 Rx 3565 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:7 Tx 0 Rx 3565 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:8 Tx 0 Rx 3564 INFO asyncssh:logging.py:92 [conn=152, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=15] Channel closed DEBUG infra2:Logger.py:156 tc filter delete dev swp33 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=152, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=16] Command: tc filter delete dev swp33 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=152, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=152, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=17] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=152, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=18] Command: tc filter add dev swp33 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=152, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f6e92b30>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:5 Tx 12393807 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:6 Tx 0 Rx 5295 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:7 Tx 0 Rx 5295 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:8 Tx 0 Rx 5295 INFO asyncssh:logging.py:92 [conn=152, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=19] Channel closed DEBUG infra2:Logger.py:156 tc filter delete dev swp33 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=152, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=20] Command: tc filter delete dev swp33 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=152, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=152, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=21] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol 0x8100 pref 300 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=152, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=22] Command: tc filter add dev swp33 ingress protocol 0x8100 pref 300 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=152, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=22] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f6fb8dc0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:5 Tx 26877632 Rx 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:6 Tx 0 Rx 6159 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:7 Tx 0 Rx 6159 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:8 Tx 0 Rx 6159 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_policer_interact_with_acl_drop from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_dynamic_traps.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=152, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=23] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=152, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=24] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 00:46:17 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=152, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=25] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=152, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=26] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 00:46:21 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=152, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=27] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=152, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=28] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=152, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=28] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"bridge0","root":true,"refcnt":2,"options":{}}] INFO asyncssh:logging.py:92 [conn=152, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=29] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=152, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=30] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=152, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=152, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=30] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=152, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=31] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=152, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=32] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=152, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=152, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=32] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=152, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=33] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=152, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=152, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=152, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=34] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=152, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=35] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=152, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=152, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=152, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=36] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=152, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=37] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=152, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=152, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=152, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=38] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=152, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=152, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=152, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=152, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=40] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=152, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=152, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=152, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=152, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=42] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=152, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=152, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=152, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=152, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=152, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=152, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=152, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=152, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=46] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=152, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=152, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=152, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=152, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=48] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=152, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=152, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=50] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=152, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=152, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=50] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=152, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=152, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=52] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=152, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=52] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=152, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=152, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=54] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=152, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=152, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=54] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=152, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=55] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=152, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=56] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=152, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=152, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=56] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=152, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=57] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=152, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=58] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=152, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=152, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=58] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=152, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=59] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev bridge0 root INFO asyncssh:logging.py:92 [conn=152, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=60] Command: tc qdisc delete dev bridge0 root INFO asyncssh:logging.py:92 [conn=152, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=152, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=60] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=152, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=61] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=152, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=62] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=62] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 00:46:22 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=152, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=63] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=152, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=64] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=152, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=64] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":147,"ifname":"bridge0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=152, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=152, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=65] Channel closed DEBUG infra2:Logger.py:156 ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=152, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=152, chan=66] Command: ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=152, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=152, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=152, chan=66] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/policer/test_policer_interaction_with_span.py::test_policer_interaction_span | 328.39 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_policer_interaction_span">Starting testcase:test_policer_interaction_span from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_interaction_with_span.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-8963' coro=<test_policer_interaction_span() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_interaction_with_span.py:45> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=152, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=153] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=153] Local address: 172.17.0.3, port 41036 INFO asyncssh:logging.py:92 [conn=153] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=153] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=153] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=153, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=0] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 00:46:23 UTC 2023 INFO asyncssh:logging.py:92 [conn=153, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add type bridge INFO asyncssh:logging.py:92 [conn=153, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=2] Command: ip link add type bridge INFO asyncssh:logging.py:92 [conn=153, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=153, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=153, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=4] Command: ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=153, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=153, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 && ip link set dev swp35 up master bridge0 && ip link set dev swp36 up master bridge0 INFO asyncssh:logging.py:92 [conn=153, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=6] Command: ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 && ip link set dev swp35 up master bridge0 && ip link set dev swp36 up master bridge0 INFO asyncssh:logging.py:92 [conn=153, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=153, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=7] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=153, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=8] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=153, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=153, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=9] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress pref 200 matchall skip_sw action mirred egress mirror dev swp34 INFO asyncssh:logging.py:92 [conn=153, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=10] Command: tc filter add dev swp33 ingress pref 200 matchall skip_sw action mirred egress mirror dev swp34 INFO asyncssh:logging.py:92 [conn=153, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=153, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=11] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol ip pref 300 flower src_mac 02:05:0e:11:9c:a8 dst_mac 02:dd:57:ee:81:88 src_ip 106.38.228.165 dst_ip 123.179.185.167 action police rate 50000000 burst 50100000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=153, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=12] Command: tc filter add dev swp33 ingress protocol ip pref 300 flower src_mac 02:05:0e:11:9c:a8 dst_mac 02:dd:57:ee:81:88 src_ip 106.38.228.165 dst_ip 123.179.185.167 action police rate 50000000 burst 50100000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=153, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=153, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=13] Channel closed DEBUG infra2:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=153, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=14] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=153, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=14] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"all","pref":200,"kind":"matchall","chain":0},{"protocol":"all","pref":200,"kind":"matchall","chain":0,"options":{"handle":1,"skip_sw":true,"in_hw":true,"actions":[{"order":1,"kind":"mirred","mirred_action":"mirror","direction":"egress","to_dev":"swp34","control_action":{"type":"pipe"},"index":1,"ref":1,"bind":1}]}},{"protocol":"ip","pref":300,"kind":"flower","chain":0},{"protocol":"ip","pref":300,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:dd:57:ee:81:88","src_mac":"02:05:0e:11:9c:a8","eth_type":"ipv4","dst_ip":"123.179.185.167","src_ip":"106.38.228.165"},"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f7063b50>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:5 Tx 2276473 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:6 Tx 0 Rx 2851515 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:7 Tx 0 Rx 575095 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:8 Tx 0 Rx 575086 INFO DENT:Logger.py:84 [DENT infrastructure 2] Verifying rate for the mirred port 10.36.118.199:2:6 INFO DENT:Logger.py:84 [DENT infrastructure 2] Verifying rate for the port 10.36.118.199:2:7 INFO DENT:Logger.py:84 [DENT infrastructure 2] Verifying rate for the port 10.36.118.199:2:8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f7002fe0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:5 Tx 2434065 Rx 2434065 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:6 Tx 2434011 Rx 3035383 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:7 Tx 0 Rx 3035318 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:8 Tx 0 Rx 3035254 INFO DENT:Logger.py:84 [DENT infrastructure 2] Verifying rate for the port 10.36.118.199:2:5 INFO DENT:Logger.py:84 [DENT infrastructure 2] Verifying rate for the port 10.36.118.199:2:6 INFO DENT:Logger.py:84 [DENT infrastructure 2] Verifying rate for the port 10.36.118.199:2:7 INFO DENT:Logger.py:84 [DENT infrastructure 2] Verifying rate for the port 10.36.118.199:2:8 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f7003310>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI stream_swp33 SIP-DIP N/A Tx 1658693 Rx 1967609 Loss INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI stream_swp33 SIP-DIP N/A Tx 1658693 Rx 410515 Loss 75.251 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI stream_swp33 SIP-DIP N/A Tx 1658693 Rx 305632 Loss 81.574 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI stream_swp34 SIP-DIP N/A Tx 1658693 Rx 1658693 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:7 TI stream_swp34 SIP-DIP N/A Tx 1658693 Rx 1658692 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:8 TI stream_swp34 SIP-DIP N/A Tx 1658693 Rx 1658692 Loss 0.000 INFO DENT:Logger.py:84 [DENT infrastructure 2] Verifying rate for the port 10.36.118.199:2:5 and stream stream_swp34 INFO DENT:Logger.py:84 [DENT infrastructure 2] Verifying rate for the port 10.36.118.199:2:7 and stream stream_swp34 INFO DENT:Logger.py:84 [DENT infrastructure 2] Verifying rate for the port 10.36.118.199:2:8 and stream stream_swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_policer_interaction_span from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_interaction_with_span.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=153, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=15] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=153, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=16] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 00:51:46 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=153, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=17] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=153, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=18] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 00:51:50 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=153, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=19] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=153, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=20] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=153, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=20] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"bridge0","root":true,"refcnt":2,"options":{}}] INFO asyncssh:logging.py:92 [conn=153, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=21] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=153, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=22] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=153, chan=22] Received exit status 2 INFO asyncssh:logging.py:92 [conn=153, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=22] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=153, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=23] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=153, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=24] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=153, chan=24] Received exit status 2 INFO asyncssh:logging.py:92 [conn=153, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=24] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=153, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=25] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=153, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=26] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=153, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=153, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=26] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=153, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=27] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=153, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=28] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=153, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=153, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=28] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=153, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=29] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=153, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=153, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=153, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=30] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=153, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=31] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=153, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=153, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=153, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=32] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=153, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=33] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=153, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=153, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=153, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=34] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=153, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=35] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=153, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=153, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=153, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=36] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=153, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=37] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=153, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=153, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=153, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=38] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=153, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=153, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=153, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=153, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=40] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=153, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=153, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=42] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=153, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=153, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=42] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=153, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=153, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=44] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=153, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=44] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=153, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=153, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=46] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=153, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=153, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=46] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=153, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=153, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=48] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=153, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=153, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=48] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=153, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=153, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=50] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=153, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=153, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=50] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=153, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev bridge0 root INFO asyncssh:logging.py:92 [conn=153, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=52] Command: tc qdisc delete dev bridge0 root INFO asyncssh:logging.py:92 [conn=153, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=153, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=52] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=153, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=53] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=153, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=54] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=54] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 00:51:51 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=153, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=55] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=153, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=56] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=153, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=56] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":148,"ifname":"bridge0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=153, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=153, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=57] Channel closed DEBUG infra2:Logger.py:156 ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=153, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=153, chan=58] Command: ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=153, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=153, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=153, chan=58] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/policer/test_policer_negative_add_rule_to_bond.py::test_policer_bond_rule_not_offloaded | 1.50 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_policer_bond_rule_not_offloaded">Starting testcase:test_policer_bond_rule_not_offloaded from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_negative_add_rule_to_bond.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-9034' coro=<test_policer_bond_rule_not_offloaded() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_negative_add_rule_to_bond.py:32> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=153, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=154] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=154] Local address: 172.17.0.3, port 51018 INFO asyncssh:logging.py:92 [conn=154] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=154] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=154] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=154, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=0] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 00:51:51 UTC 2023 INFO asyncssh:logging.py:92 [conn=154, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add name bond33 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=154, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=2] Command: ip link add name bond33 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=154, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=154, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev bond33 up INFO asyncssh:logging.py:92 [conn=154, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=4] Command: ip link set dev bond33 up INFO asyncssh:logging.py:92 [conn=154, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=154, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down INFO asyncssh:logging.py:92 [conn=154, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=6] Command: ip link set dev swp33 down && ip link set dev swp34 down INFO asyncssh:logging.py:92 [conn=154, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=154, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 master bond33 && ip link set dev swp34 master bond33 INFO asyncssh:logging.py:92 [conn=154, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=8] Command: ip link set dev swp33 master bond33 && ip link set dev swp34 master bond33 INFO asyncssh:logging.py:92 [conn=154, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=154, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up INFO asyncssh:logging.py:92 [conn=154, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up INFO asyncssh:logging.py:92 [conn=154, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=154, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=11] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev bond33 ingress INFO asyncssh:logging.py:92 [conn=154, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=12] Command: tc qdisc add dev bond33 ingress INFO asyncssh:logging.py:92 [conn=154, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=154, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=13] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev bond33 ingress protocol 0x9300 flower action trap INFO asyncssh:logging.py:92 [conn=154, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=14] Command: tc filter add dev bond33 ingress protocol 0x9300 flower action trap INFO asyncssh:logging.py:92 [conn=154, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=154, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=15] Channel closed DEBUG infra2:Logger.py:156 tc -j filter show dev bond33 ingress INFO asyncssh:logging.py:92 [conn=154, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=16] Command: tc -j filter show dev bond33 ingress INFO asyncssh:logging.py:92 [conn=154, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"[37632]","pref":49152,"kind":"flower","chain":0},{"protocol":"[37632]","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"eth_type":"9300"},"not_in_hw":true,"actions":[{"order":1,"kind":"gact","control_action":{"type":"trap"},"prob":{"random_type":"none","control_action":{"type":"pass"},"val":0},"index":1,"ref":1,"bind":1}]}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_policer_bond_rule_not_offloaded from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_negative_add_rule_to_bond.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=154, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=17] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=154, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=18] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 00:51:51 UTC 2023 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=154, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=154, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=20] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=154, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=20] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"f6:33:41:29:6d:87","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond33","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"18:be:92:13:64:a5","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":69,"ad_actor_oper_port_state_str":["active","aggregating","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","SLAVE","UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond33","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","permaddr":"18:be:92:13:64:a6","promiscuity":0,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"BACKUP","mii_status":"DOWN","link_failure_count":0,"perm_hwaddr":"18:be:92:13:64:a6","queue_id":0,"ad_aggregator_id":2,"ad_actor_oper_port_state":69,"ad_actor_oper_port_state_str":["active","aggregating","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":149,"ifname":"bond33","flags":["BROADCAST","MULTICAST","MASTER","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535}] INFO asyncssh:logging.py:92 [conn=154, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond33 INFO asyncssh:logging.py:92 [conn=154, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=22] Command: ip link delete bond33 INFO asyncssh:logging.py:92 [conn=154, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=22] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=154, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=23] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=154, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=24] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 00:51:52 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=154, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=25] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=154, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=26] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 00:51:52 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=154, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=27] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=154, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=28] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=154, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=28] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=154, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=29] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=154, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=30] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=154, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=154, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=30] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=154, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=31] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=154, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=32] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=154, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=154, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=32] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=154, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=33] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=154, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=154, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=154, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=34] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=154, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=35] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=154, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=154, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=154, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=36] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=154, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=37] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=154, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=154, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=154, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=38] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=154, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=154, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=154, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=154, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=40] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=154, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=154, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=154, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=154, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=42] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=154, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=154, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=154, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=154, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=154, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=154, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=154, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=154, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=46] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=154, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=154, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=154, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=154, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=48] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=154, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=154, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=50] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=154, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=154, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=50] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=154, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=154, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=52] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=154, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=154, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=52] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=154, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=154, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=54] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=154, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=154, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=54] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=154, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=154, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=154, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=55] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=154, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=154, chan=56] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=154, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=154, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=154, chan=56] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/policer/test_policer_rate_per_rule.py::test_policer_rate_per_rule | 228.56 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_policer_rate_per_rule">Starting testcase:test_policer_rate_per_rule from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_rate_per_rule.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-9103' coro=<test_policer_rate_per_rule() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_rate_per_rule.py:46> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=154, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=155] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=155] Local address: 172.17.0.3, port 42254 INFO asyncssh:logging.py:92 [conn=155] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=155] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=155] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=155, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=0] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 00:51:53 UTC 2023 INFO asyncssh:logging.py:92 [conn=155, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add type bridge INFO asyncssh:logging.py:92 [conn=155, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=2] Command: ip link add type bridge INFO asyncssh:logging.py:92 [conn=155, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=155, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=155, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=4] Command: ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=155, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=155, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 && ip link set dev swp35 up master bridge0 && ip link set dev swp36 up master bridge0 INFO asyncssh:logging.py:92 [conn=155, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=6] Command: ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 && ip link set dev swp35 up master bridge0 && ip link set dev swp36 up master bridge0 INFO asyncssh:logging.py:92 [conn=155, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=155, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=7] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=155, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=8] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=155, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=155, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=9] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol ipv4 pref 100 flower src_mac 02:72:87:ba:43:fd dst_mac 02:43:56:9a:42:85 src_ip 118.10.58.66 dst_ip 63.150.214.112 ip_proto udp src_port 34957 dst_port 4026 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=155, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=10] Command: tc filter add dev swp33 ingress protocol ipv4 pref 100 flower src_mac 02:72:87:ba:43:fd dst_mac 02:43:56:9a:42:85 src_ip 118.10.58.66 dst_ip 63.150.214.112 ip_proto udp src_port 34957 dst_port 4026 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=155, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=155, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=11] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol 0x0800 pref 200 flower src_mac 02:77:f6:74:d8:d1 dst_mac 02:6e:00:8e:76:82 src_ip 114.227.76.234 dst_ip 25.133.193.130 ip_proto udp src_port 15649 dst_port 61659 action police rate 400000 burst 401000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=155, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=12] Command: tc filter add dev swp33 ingress protocol 0x0800 pref 200 flower src_mac 02:77:f6:74:d8:d1 dst_mac 02:6e:00:8e:76:82 src_ip 114.227.76.234 dst_ip 25.133.193.130 ip_proto udp src_port 15649 dst_port 61659 action police rate 400000 burst 401000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=155, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=155, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=13] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol ipv4 pref 300 flower src_mac 02:96:83:e8:bb:6b dst_mac 02:af:f0:4d:8c:cb src_ip 20.62.51.58 dst_ip 99.14.107.160 ip_proto udp src_port 35747 dst_port 20876 action police rate 600000 burst 601000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=155, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=14] Command: tc filter add dev swp33 ingress protocol ipv4 pref 300 flower src_mac 02:96:83:e8:bb:6b dst_mac 02:af:f0:4d:8c:cb src_ip 20.62.51.58 dst_ip 99.14.107.160 ip_proto udp src_port 35747 dst_port 20876 action police rate 600000 burst 601000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=155, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=155, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=15] Channel closed DEBUG infra2:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=155, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=16] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=155, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"ip","pref":100,"kind":"flower","chain":0},{"protocol":"ip","pref":100,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:43:56:9a:42:85","src_mac":"02:72:87:ba:43:fd","eth_type":"ipv4","ip_proto":"udp","dst_ip":"63.150.214.112","src_ip":"118.10.58.66","dst_port":4026,"src_port":34957},"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}},{"protocol":"ip","pref":200,"kind":"flower","chain":0},{"protocol":"ip","pref":200,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:6e:00:8e:76:82","src_mac":"02:77:f6:74:d8:d1","eth_type":"ipv4","ip_proto":"udp","dst_ip":"25.133.193.130","src_ip":"114.227.76.234","dst_port":61659,"src_port":15649},"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":2,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}},{"protocol":"ip","pref":300,"kind":"flower","chain":0},{"protocol":"ip","pref":300,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:af:f0:4d:8c:cb","src_mac":"02:96:83:e8:bb:6b","eth_type":"ipv4","ip_proto":"udp","dst_ip":"99.14.107.160","src_ip":"20.62.51.58","dst_port":20876,"src_port":35747},"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":3,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:43:56:9a:42:85_src_mac_02:72:87:ba:43:fd_eth_type_ipv4_ip_proto_udp_dst_ip_63.150.214.112_src_ip_118.10.58.66_dst_port_4026_src_port_34957 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:6e:00:8e:76:82_src_mac_02:77:f6:74:d8:d1_eth_type_ipv4_ip_proto_udp_dst_ip_25.133.193.130_src_ip_114.227.76.234_dst_port_61659_src_port_15649 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:af:f0:4d:8c:cb_src_mac_02:96:83:e8:bb:6b_eth_type_ipv4_ip_proto_udp_dst_ip_99.14.107.160_src_ip_20.62.51.58_dst_port_20876_src_port_35747 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f7063550>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item swp33_dst_mac_02:43:56:9a:42:85_src_mac_02:72:87:ba:43:fd_eth_type_ipv4_ip_proto_udp_dst_ip_63.150.214.112_src_ip_118.10.58.66_dst_port_4026_src_port_34957 Tx 2714235 Rx 3176 Frames Delta 2711059 Loss 99.883 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item swp33_dst_mac_02:6e:00:8e:76:82_src_mac_02:77:f6:74:d8:d1_eth_type_ipv4_ip_proto_udp_dst_ip_25.133.193.130_src_ip_114.227.76.234_dst_port_61659_src_port_15649 Tx 2714235 Rx 5078 Frames Delta 2709157 Loss 99.813 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item swp33_dst_mac_02:af:f0:4d:8c:cb_src_mac_02:96:83:e8:bb:6b_eth_type_ipv4_ip_proto_udp_dst_ip_99.14.107.160_src_ip_20.62.51.58_dst_port_20876_src_port_35747 Tx 2714233 Rx 7615 Frames Delta 2706618 Loss 99.719 INFO DENT:Logger.py:84 [DENT infrastructure 2] Veryfing rate for the stream swp33_dst_mac_02:43:56:9a:42:85_src_mac_02:72:87:ba:43:fd_eth_type_ipv4_ip_proto_udp_dst_ip_63.150.214.112_src_ip_118.10.58.66_dst_port_4026_src_port_34957 INFO DENT:Logger.py:84 [DENT infrastructure 2] Veryfing rate for the stream swp33_dst_mac_02:6e:00:8e:76:82_src_mac_02:77:f6:74:d8:d1_eth_type_ipv4_ip_proto_udp_dst_ip_25.133.193.130_src_ip_114.227.76.234_dst_port_61659_src_port_15649 INFO DENT:Logger.py:84 [DENT infrastructure 2] Veryfing rate for the stream swp33_dst_mac_02:af:f0:4d:8c:cb_src_mac_02:96:83:e8:bb:6b_eth_type_ipv4_ip_proto_udp_dst_ip_99.14.107.160_src_ip_20.62.51.58_dst_port_20876_src_port_35747 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_policer_rate_per_rule from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_rate_per_rule.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=155, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=17] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=155, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=18] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 00:55:35 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=155, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=19] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=155, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=20] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 00:55:40 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=155, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=21] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=155, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=22] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=155, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=22] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"bridge0","root":true,"refcnt":2,"options":{}}] INFO asyncssh:logging.py:92 [conn=155, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=23] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=155, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=24] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=155, chan=24] Received exit status 2 INFO asyncssh:logging.py:92 [conn=155, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=24] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=155, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=25] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=155, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=26] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=155, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=155, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=26] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=155, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=27] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=155, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=28] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=155, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=155, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=28] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=155, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=29] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=155, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=155, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=155, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=30] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=155, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=31] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=155, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=155, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=155, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=32] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=155, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=33] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=155, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=155, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=155, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=34] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=155, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=35] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=155, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=155, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=155, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=36] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=155, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=37] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=155, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=155, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=155, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=38] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=155, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=155, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=155, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=155, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=40] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=155, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=155, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=155, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=155, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=42] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=155, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=155, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=44] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=155, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=155, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=155, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=155, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=46] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=155, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=46] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=155, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=155, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=48] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=155, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=155, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=48] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=155, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=155, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=50] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=155, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=155, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=50] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=155, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=155, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=52] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=155, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=155, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=52] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=155, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev bridge0 root INFO asyncssh:logging.py:92 [conn=155, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=54] Command: tc qdisc delete dev bridge0 root INFO asyncssh:logging.py:92 [conn=155, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=155, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=54] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=155, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=55] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=155, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=56] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=56] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 00:55:41 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=155, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=57] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=155, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=58] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=155, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=58] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":150,"ifname":"bridge0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=155, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=155, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=59] Channel closed DEBUG infra2:Logger.py:156 ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=155, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=155, chan=60] Command: ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=155, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=155, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=155, chan=60] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/policer/test_policer_rate_units.py::test_policer_rate_config[IEC] | 236.31 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_policer_rate_config[IEC]">Starting testcase:test_policer_rate_config[IEC] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_rate_units.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-9176' coro=<test_policer_rate_config() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_rate_units.py:46> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=155, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=156] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=156] Local address: 172.17.0.3, port 48314 INFO asyncssh:logging.py:92 [conn=156] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=156] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=156] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=156, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=0] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 00:55:41 UTC 2023 INFO asyncssh:logging.py:92 [conn=156, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add type bridge INFO asyncssh:logging.py:92 [conn=156, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=2] Command: ip link add type bridge INFO asyncssh:logging.py:92 [conn=156, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=156, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=156, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=4] Command: ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=156, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=156, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 INFO asyncssh:logging.py:92 [conn=156, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=6] Command: ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 INFO asyncssh:logging.py:92 [conn=156, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=156, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=7] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=156, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=8] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=156, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=156, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=9] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol ipv4 flower skip_sw src_mac 02:5a:44:e1:1a:3b dst_mac 02:ba:43:36:21:f8 src_ip 120.15.43.66 dst_ip 31.88.41.87 ip_proto tcp src_port 247 dst_port 37033 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=156, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=10] Command: tc filter add dev swp33 ingress protocol ipv4 flower skip_sw src_mac 02:5a:44:e1:1a:3b dst_mac 02:ba:43:36:21:f8 src_ip 120.15.43.66 dst_ip 31.88.41.87 ip_proto tcp src_port 247 dst_port 37033 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=156, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=156, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=11] Channel closed DEBUG infra2:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=156, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=12] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=156, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=12] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"ip","pref":49152,"kind":"flower","chain":0},{"protocol":"ip","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:ba:43:36:21:f8","src_mac":"02:5a:44:e1:1a:3b","eth_type":"ipv4","ip_proto":"tcp","dst_ip":"31.88.41.87","src_ip":"120.15.43.66","dst_port":37033,"src_port":247},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:ba:43:36:21:f8_src_mac_02:5a:44:e1:1a:3b_eth_type_ipv4_ip_proto_tcp_dst_ip_31.88.41.87_src_ip_120.15.43.66_dst_port_37033_src_port_247 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=156, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=13] Channel closed DEBUG infra2:Logger.py:156 tc filter delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=156, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=14] Command: tc filter delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=156, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=156, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=15] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol ipv4 flower skip_sw src_mac 02:5a:44:e1:1a:3b dst_mac 02:ba:43:36:21:f8 src_ip 120.15.43.66 dst_ip 31.88.41.87 ip_proto tcp src_port 247 dst_port 37033 action police rate 0.00023283064365386998gibit burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=156, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=16] Command: tc filter add dev swp33 ingress protocol ipv4 flower skip_sw src_mac 02:5a:44:e1:1a:3b dst_mac 02:ba:43:36:21:f8 src_ip 120.15.43.66 dst_ip 31.88.41.87 ip_proto tcp src_port 247 dst_port 37033 action police rate 0.00023283064365386998gibit burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=156, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f7001bd0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:5 Tx 5307339 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:6 Tx 0 Rx 2414 INFO asyncssh:logging.py:92 [conn=156, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=17] Channel closed DEBUG infra2:Logger.py:156 tc filter delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=156, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=18] Command: tc filter delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=156, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=156, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=19] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol ipv4 flower skip_sw src_mac 02:5a:44:e1:1a:3b dst_mac 02:ba:43:36:21:f8 src_ip 120.15.43.66 dst_ip 31.88.41.87 ip_proto tcp src_port 247 dst_port 37033 action police rate 30.517578125kibps burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=156, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=20] Command: tc filter add dev swp33 ingress protocol ipv4 flower skip_sw src_mac 02:5a:44:e1:1a:3b dst_mac 02:ba:43:36:21:f8 src_ip 120.15.43.66 dst_ip 31.88.41.87 ip_proto tcp src_port 247 dst_port 37033 action police rate 30.517578125kibps burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=156, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f6e92410>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:5 Tx 15417795 Rx 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:6 Tx 0 Rx 41718 INFO asyncssh:logging.py:92 [conn=156, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=21] Channel closed DEBUG infra2:Logger.py:156 tc filter delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=156, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=22] Command: tc filter delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=156, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=22] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=156, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=23] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol ipv4 flower skip_sw src_mac 02:5a:44:e1:1a:3b dst_mac 02:ba:43:36:21:f8 src_ip 120.15.43.66 dst_ip 31.88.41.87 ip_proto tcp src_port 247 dst_port 37033 action police rate 0.029802322387695mibps burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=156, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=24] Command: tc filter add dev swp33 ingress protocol ipv4 flower skip_sw src_mac 02:5a:44:e1:1a:3b dst_mac 02:ba:43:36:21:f8 src_ip 120.15.43.66 dst_ip 31.88.41.87 ip_proto tcp src_port 247 dst_port 37033 action police rate 0.029802322387695mibps burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=156, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=24] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f7445480>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:5 Tx 25302062 Rx 3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:6 Tx 0 Rx 80936 INFO asyncssh:logging.py:92 [conn=156, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=25] Channel closed DEBUG infra2:Logger.py:156 tc filter delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=156, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=26] Command: tc filter delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=156, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=26] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=156, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=27] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol ipv4 flower skip_sw src_mac 02:5a:44:e1:1a:3b dst_mac 02:ba:43:36:21:f8 src_ip 120.15.43.66 dst_ip 31.88.41.87 ip_proto tcp src_port 247 dst_port 37033 action police rate 2.9103830456735e-05gibps burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=156, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=28] Command: tc filter add dev swp33 ingress protocol ipv4 flower skip_sw src_mac 02:5a:44:e1:1a:3b dst_mac 02:ba:43:36:21:f8 src_ip 120.15.43.66 dst_ip 31.88.41.87 ip_proto tcp src_port 247 dst_port 37033 action police rate 2.9103830456735e-05gibps burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=156, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=28] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f7000ac0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:5 Tx 35165318 Rx 3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:6 Tx 0 Rx 120229 INFO asyncssh:logging.py:92 [conn=156, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=29] Channel closed DEBUG infra2:Logger.py:156 tc filter delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=156, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=30] Command: tc filter delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=156, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=30] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=156, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=31] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol ipv4 flower skip_sw src_mac 02:5a:44:e1:1a:3b dst_mac 02:ba:43:36:21:f8 src_ip 120.15.43.66 dst_ip 31.88.41.87 ip_proto tcp src_port 247 dst_port 37033 action police rate 2.8421709430404997e-08tibps burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=156, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=32] Command: tc filter add dev swp33 ingress protocol ipv4 flower skip_sw src_mac 02:5a:44:e1:1a:3b dst_mac 02:ba:43:36:21:f8 src_ip 120.15.43.66 dst_ip 31.88.41.87 ip_proto tcp src_port 247 dst_port 37033 action police rate 2.8421709430404997e-08tibps burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=156, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=32] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f7063070>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:5 Tx 45269892 Rx 4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:6 Tx 0 Rx 159256 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_policer_rate_config[IEC] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_rate_units.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=156, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=33] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=156, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=34] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 00:59:31 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=156, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=35] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=156, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=36] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 00:59:36 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=156, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=37] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=156, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=38] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=156, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=38] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"bridge0","root":true,"refcnt":2,"options":{}}] INFO asyncssh:logging.py:92 [conn=156, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=156, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=40] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=156, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=156, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=40] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=156, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=156, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=42] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=156, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=156, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=42] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=156, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=156, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=156, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=156, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=156, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=156, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=156, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=156, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=46] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=156, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=156, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=156, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=156, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=48] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=156, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=156, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=156, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=156, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=50] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=156, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=156, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=52] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=156, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=156, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=52] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=156, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=156, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=54] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=156, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=156, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=54] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=156, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=55] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=156, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=56] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=156, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=156, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=56] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=156, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=57] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=156, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=58] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=156, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=156, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=58] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=156, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=59] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=156, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=60] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=156, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=156, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=60] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=156, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=61] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=156, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=62] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=156, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=62] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=156, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=63] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=156, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=64] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=156, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=156, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=64] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=156, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=65] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=156, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=66] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=156, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=156, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=66] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=156, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=67] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=156, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=68] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=156, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=156, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=68] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=156, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=69] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev bridge0 root INFO asyncssh:logging.py:92 [conn=156, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=70] Command: tc qdisc delete dev bridge0 root INFO asyncssh:logging.py:92 [conn=156, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=156, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=70] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=156, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=71] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=156, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=72] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=72] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 00:59:37 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=156, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=73] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=156, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=74] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=156, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=74] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":151,"ifname":"bridge0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=156, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=156, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=75] Channel closed DEBUG infra2:Logger.py:156 ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=156, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=156, chan=76] Command: ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=156, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=156, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=156, chan=76] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/policer/test_policer_rate_units.py::test_policer_rate_config[SI] | 260.59 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_policer_rate_config[SI]">Starting testcase:test_policer_rate_config[SI] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_rate_units.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-9265' coro=<test_policer_rate_config() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_rate_units.py:46> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=156, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=157] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=157] Local address: 172.17.0.3, port 37202 INFO asyncssh:logging.py:92 [conn=157] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=157] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=157] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=157, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=0] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 00:59:37 UTC 2023 INFO asyncssh:logging.py:92 [conn=157, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add type bridge INFO asyncssh:logging.py:92 [conn=157, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=2] Command: ip link add type bridge INFO asyncssh:logging.py:92 [conn=157, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=157, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=4] Command: ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=157, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 INFO asyncssh:logging.py:92 [conn=157, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=6] Command: ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 INFO asyncssh:logging.py:92 [conn=157, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=7] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=157, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=8] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=157, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=9] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol 0x0800 flower skip_sw src_mac 02:d7:d9:3f:c8:96 dst_mac 02:f5:3c:d8:2d:d4 src_ip 84.160.232.229 dst_ip 29.144.54.73 ip_proto tcp src_port 36459 dst_port 7143 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=157, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=10] Command: tc filter add dev swp33 ingress protocol 0x0800 flower skip_sw src_mac 02:d7:d9:3f:c8:96 dst_mac 02:f5:3c:d8:2d:d4 src_ip 84.160.232.229 dst_ip 29.144.54.73 ip_proto tcp src_port 36459 dst_port 7143 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=157, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=11] Channel closed DEBUG infra2:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=157, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=12] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=157, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=12] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"ip","pref":49152,"kind":"flower","chain":0},{"protocol":"ip","pref":49152,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"dst_mac":"02:f5:3c:d8:2d:d4","src_mac":"02:d7:d9:3f:c8:96","eth_type":"ipv4","ip_proto":"tcp","dst_ip":"29.144.54.73","src_ip":"84.160.232.229","dst_port":7143,"src_port":36459},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_dst_mac_02:f5:3c:d8:2d:d4_src_mac_02:d7:d9:3f:c8:96_eth_type_ipv4_ip_proto_tcp_dst_ip_29.144.54.73_src_ip_84.160.232.229_dst_port_7143_src_port_36459 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=157, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=13] Channel closed DEBUG infra2:Logger.py:156 tc filter delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=157, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=14] Command: tc filter delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=157, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=15] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol 0x0800 flower skip_sw src_mac 02:d7:d9:3f:c8:96 dst_mac 02:f5:3c:d8:2d:d4 src_ip 84.160.232.229 dst_ip 29.144.54.73 ip_proto tcp src_port 36459 dst_port 7143 action police rate 0.00025gbit burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=157, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=16] Command: tc filter add dev swp33 ingress protocol 0x0800 flower skip_sw src_mac 02:d7:d9:3f:c8:96 dst_mac 02:f5:3c:d8:2d:d4 src_ip 84.160.232.229 dst_ip 29.144.54.73 ip_proto tcp src_port 36459 dst_port 7143 action police rate 0.00025gbit burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=157, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f6e91cf0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:5 Tx 4580127 Rx 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:6 Tx 0 Rx 2216 INFO asyncssh:logging.py:92 [conn=157, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=17] Channel closed DEBUG infra2:Logger.py:156 tc filter delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=157, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=18] Command: tc filter delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=157, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=19] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol 0x0800 flower skip_sw src_mac 02:d7:d9:3f:c8:96 dst_mac 02:f5:3c:d8:2d:d4 src_ip 84.160.232.229 dst_ip 29.144.54.73 ip_proto tcp src_port 36459 dst_port 7143 action police rate 31250.0bps burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=157, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=20] Command: tc filter add dev swp33 ingress protocol 0x0800 flower skip_sw src_mac 02:d7:d9:3f:c8:96 dst_mac 02:f5:3c:d8:2d:d4 src_ip 84.160.232.229 dst_ip 29.144.54.73 ip_proto tcp src_port 36459 dst_port 7143 action police rate 31250.0bps burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=157, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f6e91150>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:5 Tx 14675839 Rx 3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:6 Tx 0 Rx 48027 INFO asyncssh:logging.py:92 [conn=157, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=21] Channel closed DEBUG infra2:Logger.py:156 tc filter delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=157, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=22] Command: tc filter delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=157, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=22] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=23] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol 0x0800 flower skip_sw src_mac 02:d7:d9:3f:c8:96 dst_mac 02:f5:3c:d8:2d:d4 src_ip 84.160.232.229 dst_ip 29.144.54.73 ip_proto tcp src_port 36459 dst_port 7143 action police rate 31.25kbps burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=157, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=24] Command: tc filter add dev swp33 ingress protocol 0x0800 flower skip_sw src_mac 02:d7:d9:3f:c8:96 dst_mac 02:f5:3c:d8:2d:d4 src_ip 84.160.232.229 dst_ip 29.144.54.73 ip_proto tcp src_port 36459 dst_port 7143 action police rate 31.25kbps burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=157, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=24] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f7002170>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:5 Tx 24524807 Rx 4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:6 Tx 0 Rx 89775 INFO asyncssh:logging.py:92 [conn=157, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=25] Channel closed DEBUG infra2:Logger.py:156 tc filter delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=157, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=26] Command: tc filter delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=157, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=26] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=27] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol 0x0800 flower skip_sw src_mac 02:d7:d9:3f:c8:96 dst_mac 02:f5:3c:d8:2d:d4 src_ip 84.160.232.229 dst_ip 29.144.54.73 ip_proto tcp src_port 36459 dst_port 7143 action police rate 0.03125mbps burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=157, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=28] Command: tc filter add dev swp33 ingress protocol 0x0800 flower skip_sw src_mac 02:d7:d9:3f:c8:96 dst_mac 02:f5:3c:d8:2d:d4 src_ip 84.160.232.229 dst_ip 29.144.54.73 ip_proto tcp src_port 36459 dst_port 7143 action police rate 0.03125mbps burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=157, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=28] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f75ec670>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:5 Tx 34606902 Rx 4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:6 Tx 0 Rx 124697 INFO asyncssh:logging.py:92 [conn=157, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=29] Channel closed DEBUG infra2:Logger.py:156 tc filter delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=157, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=30] Command: tc filter delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=157, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=30] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=31] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol 0x0800 flower skip_sw src_mac 02:d7:d9:3f:c8:96 dst_mac 02:f5:3c:d8:2d:d4 src_ip 84.160.232.229 dst_ip 29.144.54.73 ip_proto tcp src_port 36459 dst_port 7143 action police rate 3.125e-05gbps burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=157, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=32] Command: tc filter add dev swp33 ingress protocol 0x0800 flower skip_sw src_mac 02:d7:d9:3f:c8:96 dst_mac 02:f5:3c:d8:2d:d4 src_ip 84.160.232.229 dst_ip 29.144.54.73 ip_proto tcp src_port 36459 dst_port 7143 action police rate 3.125e-05gbps burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=157, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=32] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f75ef940>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:5 Tx 44427657 Rx 5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:6 Tx 0 Rx 158914 INFO asyncssh:logging.py:92 [conn=157, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=33] Channel closed DEBUG infra2:Logger.py:156 tc filter delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=157, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=34] Command: tc filter delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=157, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=34] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=35] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol 0x0800 flower skip_sw src_mac 02:d7:d9:3f:c8:96 dst_mac 02:f5:3c:d8:2d:d4 src_ip 84.160.232.229 dst_ip 29.144.54.73 ip_proto tcp src_port 36459 dst_port 7143 action police rate 3.125e-08tbps burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=157, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=36] Command: tc filter add dev swp33 ingress protocol 0x0800 flower skip_sw src_mac 02:d7:d9:3f:c8:96 dst_mac 02:f5:3c:d8:2d:d4 src_ip 84.160.232.229 dst_ip 29.144.54.73 ip_proto tcp src_port 36459 dst_port 7143 action police rate 3.125e-08tbps burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=157, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=36] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f6e92bf0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:5 Tx 55407190 Rx 6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:6 Tx 0 Rx 196808 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_policer_rate_config[SI] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_rate_units.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=157, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=37] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=157, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=38] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=38] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 01:03:52 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=157, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=39] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=157, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=40] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=40] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 01:03:57 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=157, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=157, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=42] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=157, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=42] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"bridge0","root":true,"refcnt":2,"options":{}}] INFO asyncssh:logging.py:92 [conn=157, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=157, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=44] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=157, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=157, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=157, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=157, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=46] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=157, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=157, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=46] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=157, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=157, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=157, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=157, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=48] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=157, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=157, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=157, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=157, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=50] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=157, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=157, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=52] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=157, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=157, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=52] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=157, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=157, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=54] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=157, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=157, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=54] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=157, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=55] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=157, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=56] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=157, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=157, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=56] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=157, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=57] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=157, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=58] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=157, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=157, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=58] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=157, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=59] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=157, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=60] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=157, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=157, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=60] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=157, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=61] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=157, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=62] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=157, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=157, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=62] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=157, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=63] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=157, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=64] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=157, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=157, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=64] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=157, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=65] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=157, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=66] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=157, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=66] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=157, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=67] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=157, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=68] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=157, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=157, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=68] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=157, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=69] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=157, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=70] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=157, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=157, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=70] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=157, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=71] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=157, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=72] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=157, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=157, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=72] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=157, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=73] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev bridge0 root INFO asyncssh:logging.py:92 [conn=157, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=74] Command: tc qdisc delete dev bridge0 root INFO asyncssh:logging.py:92 [conn=157, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=157, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=74] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=157, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=75] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=157, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=76] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=76] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 01:03:58 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=157, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=77] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=157, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=78] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=157, chan=78] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=78] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":152,"ifname":"bridge0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=157, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=157, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=79] Channel closed DEBUG infra2:Logger.py:156 ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=157, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=157, chan=80] Command: ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=157, chan=80] Received exit status 0 INFO asyncssh:logging.py:92 [conn=157, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=157, chan=80] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/policer/test_policer_rules_priority.py::test_policer_rules_priority[port] | 222.92 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_policer_rules_priority[port]">Starting testcase:test_policer_rules_priority[port] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_rules_priority.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-9358' coro=<test_policer_rules_priority() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_rules_priority.py:52> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=157, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=158] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=158] Local address: 172.17.0.3, port 54342 INFO asyncssh:logging.py:92 [conn=158] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=158] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=158] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=158, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=0] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 01:03:58 UTC 2023 INFO asyncssh:logging.py:92 [conn=158, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add type bridge INFO asyncssh:logging.py:92 [conn=158, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=2] Command: ip link add type bridge INFO asyncssh:logging.py:92 [conn=158, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=158, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=158, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=4] Command: ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=158, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=158, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 && ip link set dev swp35 up master bridge0 && ip link set dev swp36 up master bridge0 INFO asyncssh:logging.py:92 [conn=158, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=6] Command: ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 && ip link set dev swp35 up master bridge0 && ip link set dev swp36 up master bridge0 INFO asyncssh:logging.py:92 [conn=158, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=158, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=7] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=158, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=8] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=158, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=158, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=9] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=158, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=10] Command: tc filter add dev swp33 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=158, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=158, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=11] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol 0x8100 pref 200 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 275000.0 burst 276000.0 conform-exceed drop INFO asyncssh:logging.py:92 [conn=158, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=12] Command: tc filter add dev swp33 ingress protocol 0x8100 pref 200 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 275000.0 burst 276000.0 conform-exceed drop INFO asyncssh:logging.py:92 [conn=158, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=158, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=13] Channel closed DEBUG infra2:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=158, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=14] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=158, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=14] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1942,"dst_mac":"02:06:a2:54:22:9f","src_mac":"02:15:53:62:36:d1"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}},{"protocol":"802.1Q","pref":200,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":200,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1942,"dst_mac":"02:06:a2:54:22:9f","src_mac":"02:15:53:62:36:d1"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":2,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO asyncssh:logging.py:92 [conn=158, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=15] Channel closed DEBUG infra2:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=158, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=16] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=158, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1942,"dst_mac":"02:06:a2:54:22:9f","src_mac":"02:15:53:62:36:d1"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}},{"protocol":"802.1Q","pref":200,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":200,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1942,"dst_mac":"02:06:a2:54:22:9f","src_mac":"02:15:53:62:36:d1"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":2,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_1942_dst_mac_02:06:a2:54:22:9f_src_mac_02:15:53:62:36:d1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f75eed70>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:5 Tx 9772634 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:6 Tx 0 Rx 3616 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:7 Tx 0 Rx 3616 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:8 Tx 0 Rx 3615 INFO asyncssh:logging.py:92 [conn=158, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=17] Channel closed DEBUG infra2:Logger.py:156 tc filter delete dev swp33 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=158, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=18] Command: tc filter delete dev swp33 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=158, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=158, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=19] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=158, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=20] Command: tc filter add dev swp33 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=158, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f70019f0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:5 Tx 12351551 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:6 Tx 0 Rx 5390 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:7 Tx 0 Rx 5390 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:8 Tx 0 Rx 5390 INFO asyncssh:logging.py:92 [conn=158, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=21] Channel closed DEBUG infra2:Logger.py:156 tc filter delete dev swp33 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=158, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=22] Command: tc filter delete dev swp33 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=158, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=22] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=158, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=23] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol 0x8100 pref 300 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=158, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=24] Command: tc filter add dev swp33 ingress protocol 0x8100 pref 300 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=158, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=24] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f7063dc0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:5 Tx 17968742 Rx 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:6 Tx 0 Rx 8876 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:7 Tx 0 Rx 8875 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:8 Tx 0 Rx 8875 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_policer_rules_priority[port] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_rules_priority.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=158, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=25] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=158, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=26] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 01:07:35 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=158, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=27] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=158, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=28] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 01:07:40 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=158, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=29] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=158, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=30] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=158, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=30] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"bridge0","root":true,"refcnt":2,"options":{}}] INFO asyncssh:logging.py:92 [conn=158, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=31] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=158, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=32] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=158, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=158, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=32] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=158, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=33] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=158, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=34] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=158, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=158, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=34] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=158, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=35] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=158, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=158, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=158, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=36] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=158, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=37] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=158, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=158, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=158, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=38] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=158, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=158, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=158, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=158, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=40] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=158, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=158, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=158, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=158, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=42] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=158, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=158, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=158, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=158, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=158, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=158, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=158, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=158, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=46] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=158, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=158, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=158, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=158, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=48] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=158, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=158, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=158, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=158, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=50] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=158, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=158, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=52] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=158, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=158, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=52] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=158, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=158, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=54] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=158, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=54] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=158, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=55] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=158, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=56] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=158, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=158, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=56] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=158, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=57] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=158, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=58] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=158, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=158, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=58] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=158, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=59] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=158, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=60] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=158, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=158, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=60] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=158, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=61] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev bridge0 root INFO asyncssh:logging.py:92 [conn=158, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=62] Command: tc qdisc delete dev bridge0 root INFO asyncssh:logging.py:92 [conn=158, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=158, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=62] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=158, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=63] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=158, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=64] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=64] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 01:07:40 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=158, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=65] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=158, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=66] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=158, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=66] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":153,"ifname":"bridge0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=158, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=158, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=67] Channel closed DEBUG infra2:Logger.py:156 ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=158, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=158, chan=68] Command: ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=158, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=158, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=158, chan=68] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/policer/test_policer_rules_priority.py::test_policer_rules_priority[shared_block] | 251.56 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_policer_rules_priority[shared_block]">Starting testcase:test_policer_rules_priority[shared_block] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_rules_priority.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-9439' coro=<test_policer_rules_priority() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_rules_priority.py:52> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=158, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=159] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=159] Local address: 172.17.0.3, port 40132 INFO asyncssh:logging.py:92 [conn=159] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=159] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=159] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=159, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=0] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 01:07:41 UTC 2023 INFO asyncssh:logging.py:92 [conn=159, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add type bridge INFO asyncssh:logging.py:92 [conn=159, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=2] Command: ip link add type bridge INFO asyncssh:logging.py:92 [conn=159, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=159, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=159, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=4] Command: ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=159, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=159, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 && ip link set dev swp35 up master bridge0 && ip link set dev swp36 up master bridge0 INFO asyncssh:logging.py:92 [conn=159, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=6] Command: ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 && ip link set dev swp35 up master bridge0 && ip link set dev swp36 up master bridge0 INFO asyncssh:logging.py:92 [conn=159, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=159, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=7] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp34 ingress_block 831 ingress && tc qdisc add dev swp35 ingress_block 831 ingress && tc qdisc add dev swp36 ingress_block 831 ingress INFO asyncssh:logging.py:92 [conn=159, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=8] Command: tc qdisc add dev swp34 ingress_block 831 ingress && tc qdisc add dev swp35 ingress_block 831 ingress && tc qdisc add dev swp36 ingress_block 831 ingress INFO asyncssh:logging.py:92 [conn=159, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=159, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=9] Channel closed DEBUG infra2:Logger.py:156 tc filter add block 831 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=159, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=10] Command: tc filter add block 831 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=159, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=159, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=11] Channel closed DEBUG infra2:Logger.py:156 tc filter add block 831 ingress protocol 0x8100 pref 200 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 275000.0 burst 276000.0 conform-exceed drop INFO asyncssh:logging.py:92 [conn=159, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=12] Command: tc filter add block 831 ingress protocol 0x8100 pref 200 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 275000.0 burst 276000.0 conform-exceed drop INFO asyncssh:logging.py:92 [conn=159, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=159, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=13] Channel closed DEBUG infra2:Logger.py:156 tc -j filter show block 831 ingress INFO asyncssh:logging.py:92 [conn=159, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=14] Command: tc -j filter show block 831 ingress INFO asyncssh:logging.py:92 [conn=159, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=14] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1942,"dst_mac":"02:06:a2:54:22:9f","src_mac":"02:15:53:62:36:d1"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}},{"protocol":"802.1Q","pref":200,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":200,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1942,"dst_mac":"02:06:a2:54:22:9f","src_mac":"02:15:53:62:36:d1"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":2,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO asyncssh:logging.py:92 [conn=159, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=15] Channel closed DEBUG infra2:Logger.py:156 tc -j filter show block 831 ingress INFO asyncssh:logging.py:92 [conn=159, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=16] Command: tc -j filter show block 831 ingress INFO asyncssh:logging.py:92 [conn=159, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1942,"dst_mac":"02:06:a2:54:22:9f","src_mac":"02:15:53:62:36:d1"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}},{"protocol":"802.1Q","pref":200,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":200,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1942,"dst_mac":"02:06:a2:54:22:9f","src_mac":"02:15:53:62:36:d1"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":2,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp34_vlan_id_1942_dst_mac_02:06:a2:54:22:9f_src_mac_02:15:53:62:36:d1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp35_vlan_id_1942_dst_mac_02:06:a2:54:22:9f_src_mac_02:15:53:62:36:d1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp36_vlan_id_1942_dst_mac_02:06:a2:54:22:9f_src_mac_02:15:53:62:36:d1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f6e91210>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:5 Tx 0 Rx 3695 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:6 Tx 10557161 Rx 2556 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:7 Tx 10556999 Rx 2558 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:8 Tx 10556837 Rx 2544 INFO asyncssh:logging.py:92 [conn=159, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=17] Channel closed DEBUG infra2:Logger.py:156 tc filter delete block 831 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=159, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=18] Command: tc filter delete block 831 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=159, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=159, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=19] Channel closed DEBUG infra2:Logger.py:156 tc filter add block 831 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=159, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=20] Command: tc filter add block 831 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=159, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f70612d0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:5 Tx 0 Rx 6179 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:6 Tx 13362066 Rx 4435 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:7 Tx 13361904 Rx 4440 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:8 Tx 13361728 Rx 4423 INFO asyncssh:logging.py:92 [conn=159, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=21] Channel closed DEBUG infra2:Logger.py:156 tc filter delete block 831 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=159, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=22] Command: tc filter delete block 831 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=159, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=22] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=159, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=23] Channel closed DEBUG infra2:Logger.py:156 tc filter add block 831 ingress protocol 0x8100 pref 300 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=159, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=24] Command: tc filter add block 831 ingress protocol 0x8100 pref 300 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=159, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=24] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f7443190>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:5 Tx 0 Rx 8541 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:6 Tx 18752177 Rx 6094 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:7 Tx 18752016 Rx 6098 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:8 Tx 18751848 Rx 6077 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_policer_rules_priority[shared_block] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_rules_priority.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=159, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=25] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=159, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=26] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 01:11:46 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=159, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=27] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=159, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=28] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 01:11:51 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=159, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=29] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=159, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=30] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=159, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=30] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp34","parent":"ffff:fff1","ingress_block":831,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp35","parent":"ffff:fff1","ingress_block":831,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp36","parent":"ffff:fff1","ingress_block":831,"options":{}},{"kind":"noqueue","handle":"0:","dev":"bridge0","root":true,"refcnt":2,"options":{}}] INFO asyncssh:logging.py:92 [conn=159, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=31] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=159, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=32] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=159, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=159, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=32] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=159, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=33] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=159, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=34] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=159, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=159, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=34] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=159, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=35] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=159, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=159, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=159, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=36] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=159, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=37] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=159, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=159, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=159, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=38] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=159, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=159, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=159, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=159, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=40] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=159, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=159, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=159, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=159, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=42] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=159, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=159, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=159, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=159, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=159, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=159, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=159, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=159, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=46] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=159, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=159, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=159, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=159, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=48] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=159, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=159, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=159, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=159, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=50] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=159, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=159, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=52] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=159, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=159, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=52] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=159, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=159, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=54] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=159, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=159, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=54] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=159, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=55] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 ingress INFO asyncssh:logging.py:92 [conn=159, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=56] Command: tc qdisc delete dev swp34 ingress INFO asyncssh:logging.py:92 [conn=159, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=56] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=159, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=57] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=159, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=58] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=159, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=159, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=58] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=159, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=59] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 ingress INFO asyncssh:logging.py:92 [conn=159, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=60] Command: tc qdisc delete dev swp35 ingress INFO asyncssh:logging.py:92 [conn=159, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=60] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=159, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=61] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=159, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=62] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=159, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=159, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=62] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=159, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=63] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 ingress INFO asyncssh:logging.py:92 [conn=159, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=64] Command: tc qdisc delete dev swp36 ingress INFO asyncssh:logging.py:92 [conn=159, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=64] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=159, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=65] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev bridge0 root INFO asyncssh:logging.py:92 [conn=159, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=66] Command: tc qdisc delete dev bridge0 root INFO asyncssh:logging.py:92 [conn=159, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=159, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=66] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=159, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=67] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=159, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=68] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=68] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 01:11:52 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=159, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=69] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=159, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=70] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=159, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=70] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":154,"ifname":"bridge0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=159, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=159, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=71] Channel closed DEBUG infra2:Logger.py:156 ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=159, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=159, chan=72] Command: ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=159, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=159, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=159, chan=72] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/policer/test_policer_same_pref_rules_priority.py::test_policer_same_pref_rules[port] | 208.59 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_policer_same_pref_rules[port]">Starting testcase:test_policer_same_pref_rules[port] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_same_pref_rules_priority.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-9524' coro=<test_policer_same_pref_rules() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_same_pref_rules_priority.py:50> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=159, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=160] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=160] Local address: 172.17.0.3, port 45320 INFO asyncssh:logging.py:92 [conn=160] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=160] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=160] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=160, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=0] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 01:11:53 UTC 2023 INFO asyncssh:logging.py:92 [conn=160, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add type bridge INFO asyncssh:logging.py:92 [conn=160, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=2] Command: ip link add type bridge INFO asyncssh:logging.py:92 [conn=160, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=160, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=160, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=4] Command: ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=160, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=160, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 && ip link set dev swp35 up master bridge0 && ip link set dev swp36 up master bridge0 INFO asyncssh:logging.py:92 [conn=160, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=6] Command: ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 && ip link set dev swp35 up master bridge0 && ip link set dev swp36 up master bridge0 INFO asyncssh:logging.py:92 [conn=160, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=160, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=7] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=160, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=8] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=160, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=160, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=9] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol 0x8100 pref 100 flower skip_sw dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop && tc filter add dev swp33 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 500000 burst 501000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=160, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=10] Command: tc filter add dev swp33 ingress protocol 0x8100 pref 100 flower skip_sw dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop && tc filter add dev swp33 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 500000 burst 501000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=160, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=160, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=11] Channel closed DEBUG infra2:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=160, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=12] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=160, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=12] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1942,"dst_mac":"02:06:a2:54:22:9f"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}},{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0,"options":{"handle":2,"keys":{"vlan_id":1942,"dst_mac":"02:06:a2:54:22:9f","src_mac":"02:15:53:62:36:d1"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":2,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO asyncssh:logging.py:92 [conn=160, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=13] Channel closed DEBUG infra2:Logger.py:156 tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=160, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=14] Command: tc -j filter show dev swp33 ingress INFO asyncssh:logging.py:92 [conn=160, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=14] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1942,"dst_mac":"02:06:a2:54:22:9f"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}},{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0,"options":{"handle":2,"keys":{"vlan_id":1942,"dst_mac":"02:06:a2:54:22:9f","src_mac":"02:15:53:62:36:d1"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":2,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp33_vlan_id_1942_dst_mac_02:06:a2:54:22:9f_src_mac_02:15:53:62:36:d1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f7063580>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:5 Tx 9807574 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:6 Tx 0 Rx 3625 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:7 Tx 0 Rx 3625 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:8 Tx 0 Rx 3624 INFO asyncssh:logging.py:92 [conn=160, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=15] Channel closed DEBUG infra2:Logger.py:156 tc filter delete dev swp33 ingress handle 0x1 pref 100 flower INFO asyncssh:logging.py:92 [conn=160, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=16] Command: tc filter delete dev swp33 ingress handle 0x1 pref 100 flower INFO asyncssh:logging.py:92 [conn=160, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=160, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=17] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol 0x8100 pref 100 flower skip_sw dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=160, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=18] Command: tc filter add dev swp33 ingress protocol 0x8100 pref 100 flower skip_sw dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=160, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f7062d10>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:5 Tx 12627098 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:6 Tx 0 Rx 6426 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:7 Tx 0 Rx 6426 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:8 Tx 0 Rx 6426 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_policer_same_pref_rules[port] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_same_pref_rules_priority.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=160, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=19] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=160, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=20] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 01:15:20 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=160, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=21] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=160, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=22] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 01:15:20 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=160, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=23] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=160, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=160, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=24] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"bridge0","root":true,"refcnt":2,"options":{}}] INFO asyncssh:logging.py:92 [conn=160, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=25] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=160, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=160, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=160, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=26] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=160, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=27] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=160, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=160, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=160, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=28] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=160, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=29] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=160, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=160, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=160, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=30] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=160, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=31] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=160, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=160, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=160, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=32] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=160, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=33] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=160, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=160, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=160, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=34] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=160, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=35] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=160, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=160, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=160, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=36] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=160, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=37] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=160, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=160, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=160, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=38] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=160, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=160, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=160, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=160, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=40] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=160, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=160, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=160, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=160, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=42] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=160, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=160, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=160, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=160, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=160, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=160, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=46] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=160, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=160, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=46] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=160, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=160, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=48] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=160, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=48] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=160, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=160, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=50] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=160, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=160, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=50] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=160, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=160, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=52] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=160, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=160, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=52] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=160, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=160, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=54] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=160, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=160, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=54] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=160, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=55] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev bridge0 root INFO asyncssh:logging.py:92 [conn=160, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=56] Command: tc qdisc delete dev bridge0 root INFO asyncssh:logging.py:92 [conn=160, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=160, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=56] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=160, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=57] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=160, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=58] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=58] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 01:15:21 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=160, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=59] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=160, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=60] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=160, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=60] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":155,"ifname":"bridge0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=160, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=160, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=61] Channel closed DEBUG infra2:Logger.py:156 ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=160, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=160, chan=62] Command: ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=160, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=160, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=160, chan=62] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/policer/test_policer_same_pref_rules_priority.py::test_policer_same_pref_rules[shared_block] | 233.05 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_policer_same_pref_rules[shared_block]">Starting testcase:test_policer_same_pref_rules[shared_block] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_same_pref_rules_priority.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-9599' coro=<test_policer_same_pref_rules() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_same_pref_rules_priority.py:50> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=160, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=161] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=161] Local address: 172.17.0.3, port 49680 INFO asyncssh:logging.py:92 [conn=161] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=161] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=161] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=161, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=0] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 01:15:21 UTC 2023 INFO asyncssh:logging.py:92 [conn=161, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add type bridge INFO asyncssh:logging.py:92 [conn=161, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=2] Command: ip link add type bridge INFO asyncssh:logging.py:92 [conn=161, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=161, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=4] Command: ip link set dev bridge0 up INFO asyncssh:logging.py:92 [conn=161, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 && ip link set dev swp35 up master bridge0 && ip link set dev swp36 up master bridge0 INFO asyncssh:logging.py:92 [conn=161, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=6] Command: ip link set dev swp33 up master bridge0 && ip link set dev swp34 up master bridge0 && ip link set dev swp35 up master bridge0 && ip link set dev swp36 up master bridge0 INFO asyncssh:logging.py:92 [conn=161, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=7] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp34 ingress_block 201 ingress && tc qdisc add dev swp35 ingress_block 201 ingress && tc qdisc add dev swp36 ingress_block 201 ingress INFO asyncssh:logging.py:92 [conn=161, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=8] Command: tc qdisc add dev swp34 ingress_block 201 ingress && tc qdisc add dev swp35 ingress_block 201 ingress && tc qdisc add dev swp36 ingress_block 201 ingress INFO asyncssh:logging.py:92 [conn=161, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=9] Channel closed DEBUG infra2:Logger.py:156 tc filter add block 201 ingress protocol 0x8100 pref 100 flower skip_sw dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop && tc filter add block 201 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 500000 burst 501000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=161, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=10] Command: tc filter add block 201 ingress protocol 0x8100 pref 100 flower skip_sw dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop && tc filter add block 201 ingress protocol 0x8100 pref 100 flower skip_sw src_mac 02:15:53:62:36:d1 dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 500000 burst 501000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=161, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=11] Channel closed DEBUG infra2:Logger.py:156 tc -j filter show block 201 ingress INFO asyncssh:logging.py:92 [conn=161, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=12] Command: tc -j filter show block 201 ingress INFO asyncssh:logging.py:92 [conn=161, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=12] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1942,"dst_mac":"02:06:a2:54:22:9f"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}},{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0,"options":{"handle":2,"keys":{"vlan_id":1942,"dst_mac":"02:06:a2:54:22:9f","src_mac":"02:15:53:62:36:d1"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":2,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO asyncssh:logging.py:92 [conn=161, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=13] Channel closed DEBUG infra2:Logger.py:156 tc -j filter show block 201 ingress INFO asyncssh:logging.py:92 [conn=161, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=14] Command: tc -j filter show block 201 ingress INFO asyncssh:logging.py:92 [conn=161, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=14] Channel closed DEBUG infra2:Logger.py:156 [{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0},{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0,"options":{"handle":1,"keys":{"vlan_id":1942,"dst_mac":"02:06:a2:54:22:9f"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":1,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}},{"protocol":"802.1Q","pref":100,"kind":"flower","chain":0,"options":{"handle":2,"keys":{"vlan_id":1942,"dst_mac":"02:06:a2:54:22:9f","src_mac":"02:15:53:62:36:d1"},"skip_sw":true,"in_hw":true,"in_hw_count":1,"actions":[{"order":1,"kind":"police","index":2,"control_action":{"type":"drop"},"overhead":0,"ref":1,"bind":1,"used_hw_stats":["delayed"]}]}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp34_vlan_id_1942_dst_mac_02:06:a2:54:22:9f_src_mac_02:15:53:62:36:d1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp35_vlan_id_1942_dst_mac_02:06:a2:54:22:9f_src_mac_02:15:53:62:36:d1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for swp36_vlan_id_1942_dst_mac_02:06:a2:54:22:9f_src_mac_02:15:53:62:36:d1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f7063b50>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:5 Tx 0 Rx 3308 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:6 Tx 9129474 Rx 2104 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:7 Tx 9129307 Rx 2387 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:8 Tx 9129141 Rx 2395 INFO asyncssh:logging.py:92 [conn=161, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=15] Channel closed DEBUG infra2:Logger.py:156 tc filter delete block 201 ingress handle 0x1 pref 100 flower INFO asyncssh:logging.py:92 [conn=161, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=16] Command: tc filter delete block 201 ingress handle 0x1 pref 100 flower INFO asyncssh:logging.py:92 [conn=161, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=17] Channel closed DEBUG infra2:Logger.py:156 tc filter add block 201 ingress protocol 0x8100 pref 100 flower skip_sw dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=161, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=18] Command: tc filter add block 201 ingress protocol 0x8100 pref 100 flower skip_sw dst_mac 02:06:a2:54:22:9f vlan_id 1942 action police rate 250000 burst 251000 conform-exceed drop INFO asyncssh:logging.py:92 [conn=161, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f7002170>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:5 Tx 0 Rx 5527 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:6 Tx 12641549 Rx 3896 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:7 Tx 12641386 Rx 4300 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:8 Tx 12641206 Rx 4300 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_policer_same_pref_rules[shared_block] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/policer/test_policer_same_pref_rules_priority.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=161, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=19] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=161, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=20] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 01:19:13 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=161, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=21] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=161, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=22] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 01:19:13 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=161, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=23] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=161, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=161, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=24] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp34","parent":"ffff:fff1","ingress_block":201,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp35","parent":"ffff:fff1","ingress_block":201,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp36","parent":"ffff:fff1","ingress_block":201,"options":{}},{"kind":"noqueue","handle":"0:","dev":"bridge0","root":true,"refcnt":2,"options":{}}] INFO asyncssh:logging.py:92 [conn=161, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=25] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=161, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=161, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=161, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=26] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=161, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=27] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=161, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=161, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=161, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=28] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=161, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=29] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=161, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=161, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=161, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=30] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=161, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=31] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=161, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=161, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=161, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=32] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=161, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=33] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=161, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=161, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=161, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=34] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=161, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=35] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=161, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=161, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=161, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=36] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=161, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=37] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=161, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=161, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=161, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=38] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=161, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=161, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=161, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=161, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=40] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=161, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=161, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=161, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=161, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=42] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=161, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=161, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=161, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=161, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=161, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=161, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=46] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=161, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=161, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=46] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=161, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=161, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=48] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=161, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=161, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=48] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=161, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 ingress INFO asyncssh:logging.py:92 [conn=161, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=50] Command: tc qdisc delete dev swp34 ingress INFO asyncssh:logging.py:92 [conn=161, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=50] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=161, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=52] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=161, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=161, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=52] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=161, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 ingress INFO asyncssh:logging.py:92 [conn=161, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=54] Command: tc qdisc delete dev swp35 ingress INFO asyncssh:logging.py:92 [conn=161, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=54] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=55] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=161, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=56] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=161, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=161, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=56] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=161, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=57] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 ingress INFO asyncssh:logging.py:92 [conn=161, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=58] Command: tc qdisc delete dev swp36 ingress INFO asyncssh:logging.py:92 [conn=161, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=58] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=161, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=59] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev bridge0 root INFO asyncssh:logging.py:92 [conn=161, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=60] Command: tc qdisc delete dev bridge0 root INFO asyncssh:logging.py:92 [conn=161, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=161, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=60] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=161, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=61] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=161, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=62] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=62] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 01:19:14 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=161, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=63] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=161, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=64] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=161, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=64] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":156,"ifname":"bridge0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=161, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=161, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=65] Channel closed DEBUG infra2:Logger.py:156 ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=161, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=161, chan=66] Command: ip link delete bridge0 INFO asyncssh:logging.py:92 [conn=161, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=161, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=161, chan=66] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/port_isolation/test_port_isolation_basic_functionality.py::test_port_isolation_basic_functionality | 426.00 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_port_isolation_basic_functionality">Starting testcase:test_port_isolation_basic_functionality from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_basic_functionality.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-9677' coro=<test_port_isolation_basic_functionality() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_basic_functionality.py:51> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=161, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=162] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=162] Local address: 172.17.0.3, port 50868 INFO asyncssh:logging.py:92 [conn=162] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=162] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=162] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=162, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=0] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 01:19:14 UTC 2023 INFO asyncssh:logging.py:92 [conn=162, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=162, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=162, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=162, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=162, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=162, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=162, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=162, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=162, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=162, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=7] Channel closed DEBUG infra2:Logger.py:156 bridge link set dev swp33 isolated on && bridge link set dev swp34 isolated on && bridge link set dev swp35 isolated on INFO asyncssh:logging.py:92 [conn=162, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=8] Command: bridge link set dev swp33 isolated on && bridge link set dev swp34 isolated on && bridge link set dev swp35 isolated on INFO asyncssh:logging.py:92 [conn=162, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f6fb8a90>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI stream_0 SIP-DIP N/A Tx 10496 Rx 10496 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:8 TI stream_1 SIP-DIP N/A Tx 10496 Rx 10496 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:8 TI stream_2 SIP-DIP N/A Tx 10496 Rx 10496 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:8 Rx 10.36.118.199:2:7 TI stream_3 SIP-DIP N/A Tx 10496 Rx 10496 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f7062440>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI stream_0 SIP-DIP N/A Tx 10451 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:7 TI stream_1 SIP-DIP N/A Tx 10451 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:6 TI stream_2 SIP-DIP N/A Tx 10451 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:8 Rx 10.36.118.199:2:6 TI stream_3 SIP-DIP N/A Tx 10451 Rx 10451 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f70608b0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI stream_0 SIP-DIP N/A Tx 10470 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI stream_1 SIP-DIP N/A Tx 10470 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:5 TI stream_2 SIP-DIP N/A Tx 10470 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:8 Rx 10.36.118.199:2:5 TI stream_3 SIP-DIP N/A Tx 10470 Rx 10470 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_port_isolation_basic_functionality from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_basic_functionality.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=162, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=9] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=162, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=10] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=10] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 01:26:19 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=162, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=11] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=162, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=12] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 01:26:20 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=162, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=162, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=14] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=162, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=14] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":157,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=162, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=162, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=162, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=162, chan=16] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=162, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=162, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=162, chan=16] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/port_isolation/test_port_isolation_enable_disable_feature_under_ws_traffic.py::test_port_isolation_enable_disable_feature_under_ws_traffic | 227.63 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_port_isolation_enable_disable_feature_under_ws_traffic">Starting testcase:test_port_isolation_enable_disable_feature_under_ws_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_enable_disable_feature_under_ws_traffic.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-9703' coro=<test_port_isolation_enable_disable_feature_under_ws_traffic() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_enable_disable_feature_under_ws_traffic.py:60> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=162, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=163] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=163] Local address: 172.17.0.3, port 43930 INFO asyncssh:logging.py:92 [conn=163] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=163] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=163] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=163, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=0] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 01:26:20 UTC 2023 INFO asyncssh:logging.py:92 [conn=163, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=163, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=163, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=163, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=163, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=163, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=163, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=163, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=163, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=163, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=7] Channel closed DEBUG infra2:Logger.py:156 bridge link set dev swp33 isolated on && bridge link set dev swp34 isolated on && bridge link set dev swp35 isolated on INFO asyncssh:logging.py:92 [conn=163, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=8] Command: bridge link set dev swp33 isolated on && bridge link set dev swp34 isolated on && bridge link set dev swp35 isolated on INFO asyncssh:logging.py:92 [conn=163, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f6e91f90>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI stream_1 SIP-DIP N/A Tx 7981 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI stream_2 SIP-DIP N/A Tx 7981 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI stream_3 SIP-DIP N/A Tx 7981 Rx 7981 Loss 0.000 INFO asyncssh:logging.py:92 [conn=163, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=9] Channel closed DEBUG infra2:Logger.py:156 bridge link set dev swp33 isolated off && bridge link set dev swp34 isolated off && bridge link set dev swp35 isolated off INFO asyncssh:logging.py:92 [conn=163, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=10] Command: bridge link set dev swp33 isolated off && bridge link set dev swp34 isolated off && bridge link set dev swp35 isolated off INFO asyncssh:logging.py:92 [conn=163, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clearing Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clear Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_stats', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f6e92c50>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI stream_1 SIP-DIP N/A Tx 7018 Rx 7018 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI stream_2 SIP-DIP N/A Tx 7018 Rx 7018 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI stream_3 SIP-DIP N/A Tx 7018 Rx 7018 Loss 0.000 INFO asyncssh:logging.py:92 [conn=163, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=11] Channel closed DEBUG infra2:Logger.py:156 bridge link set dev swp33 isolated on && bridge link set dev swp34 isolated on && bridge link set dev swp35 isolated on INFO asyncssh:logging.py:92 [conn=163, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=12] Command: bridge link set dev swp33 isolated on && bridge link set dev swp34 isolated on && bridge link set dev swp35 isolated on INFO asyncssh:logging.py:92 [conn=163, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clearing Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clear Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_stats', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f75ee350>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI stream_1 SIP-DIP N/A Tx 7114 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI stream_2 SIP-DIP N/A Tx 7114 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI stream_3 SIP-DIP N/A Tx 7114 Rx 7114 Loss 0.000 INFO asyncssh:logging.py:92 [conn=163, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=13] Channel closed DEBUG infra2:Logger.py:156 bridge link set dev swp33 isolated off && bridge link set dev swp34 isolated off && bridge link set dev swp35 isolated off INFO asyncssh:logging.py:92 [conn=163, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=14] Command: bridge link set dev swp33 isolated off && bridge link set dev swp34 isolated off && bridge link set dev swp35 isolated off INFO asyncssh:logging.py:92 [conn=163, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clearing Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Clear Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_stats', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f7063f10>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI stream_1 SIP-DIP N/A Tx 8603 Rx 8603 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI stream_2 SIP-DIP N/A Tx 8603 Rx 8603 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI stream_3 SIP-DIP N/A Tx 8603 Rx 8603 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_port_isolation_enable_disable_feature_under_ws_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_enable_disable_feature_under_ws_traffic.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=163, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=15] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=163, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=16] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 01:30:02 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=163, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=17] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=163, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=18] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 01:30:07 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=163, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=163, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=163, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=20] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":158,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=163, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=163, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=163, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=163, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=163, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=163, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=163, chan=22] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/port_isolation/test_port_isolation_incremental_mac_addresses.py::test_port_isolation_incremental_mac_addresses | 423.18 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_port_isolation_incremental_mac_addresses">Starting testcase:test_port_isolation_incremental_mac_addresses from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_incremental_mac_addresses.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-9735' coro=<test_port_isolation_incremental_mac_addresses() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_incremental_mac_addresses.py:48> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=163, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=164] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=164] Local address: 172.17.0.3, port 45652 INFO asyncssh:logging.py:92 [conn=164] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=164] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=164] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=164, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=0] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 01:30:08 UTC 2023 INFO asyncssh:logging.py:92 [conn=164, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=164, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=164, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=164, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=164, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=164, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=164, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=164, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=164, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=164, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=7] Channel closed DEBUG infra2:Logger.py:156 bridge link set dev swp33 isolated on && bridge link set dev swp34 isolated on && bridge link set dev swp35 isolated on INFO asyncssh:logging.py:92 [conn=164, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=8] Command: bridge link set dev swp33 isolated on && bridge link set dev swp34 isolated on && bridge link set dev swp35 isolated on INFO asyncssh:logging.py:92 [conn=164, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f6fbbb80>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI stream_0 SIP-DIP N/A Tx 41628 Rx 41628 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:8 TI stream_1 SIP-DIP N/A Tx 41628 Rx 41628 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:8 TI stream_2 SIP-DIP N/A Tx 41628 Rx 41628 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:8 Rx 10.36.118.199:2:7 TI stream_3 SIP-DIP N/A Tx 41628 Rx 41628 Loss 0.000 INFO asyncssh:logging.py:92 [conn=164, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=9] Channel closed DEBUG infra2:Logger.py:156 bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=164, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=10] Command: bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=164, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=10] Channel closed DEBUG infra2:Logger.py:156 20004 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f7061330>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI stream_0 SIP-DIP N/A Tx 41841 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:7 TI stream_1 SIP-DIP N/A Tx 41841 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:6 TI stream_2 SIP-DIP N/A Tx 41841 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:8 Rx 10.36.118.199:2:6 TI stream_3 SIP-DIP N/A Tx 41841 Rx 41841 Loss 0.000 INFO asyncssh:logging.py:92 [conn=164, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=11] Channel closed DEBUG infra2:Logger.py:156 bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=164, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=12] Command: bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=164, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=12] Channel closed DEBUG infra2:Logger.py:156 20004 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f70612d0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI stream_0 SIP-DIP N/A Tx 41792 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI stream_1 SIP-DIP N/A Tx 41792 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:5 TI stream_2 SIP-DIP N/A Tx 41792 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:8 Rx 10.36.118.199:2:5 TI stream_3 SIP-DIP N/A Tx 41792 Rx 41792 Loss 0.000 INFO asyncssh:logging.py:92 [conn=164, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=13] Channel closed DEBUG infra2:Logger.py:156 bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=164, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=14] Command: bridge fdb show br br0 | grep 'extern_learn.*offload' | wc -l INFO asyncssh:logging.py:92 [conn=164, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=14] Channel closed DEBUG infra2:Logger.py:156 20004 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_port_isolation_incremental_mac_addresses from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_incremental_mac_addresses.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=164, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=15] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=164, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=16] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 01:37:10 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=164, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=17] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=164, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=18] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 01:37:10 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=164, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=164, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=164, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=20] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":159,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=164, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=164, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=164, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=164, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=164, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=164, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=164, chan=22] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/port_isolation/test_port_isolation_interaction_br_storm_control.py::test_port_isolation_interaction_br_storm_control | 207.56 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_port_isolation_interaction_br_storm_control">Starting testcase:test_port_isolation_interaction_br_storm_control from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_br_storm_control.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-9767' coro=<test_port_isolation_interaction_br_storm_control() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_br_storm_control.py:53> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=164, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=165] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=165] Local address: 172.17.0.3, port 47836 INFO asyncssh:logging.py:92 [conn=165] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=165] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=165] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=165, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=0] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 01:37:11 UTC 2023 INFO asyncssh:logging.py:92 [conn=165, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=165, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=165, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=165, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=165, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=165, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=165, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=165, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=165, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=165, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=7] Channel closed DEBUG infra2:Logger.py:156 bridge link set dev swp33 isolated on && bridge link set dev swp34 isolated on && bridge link set dev swp35 isolated on INFO asyncssh:logging.py:92 [conn=165, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=8] Command: bridge link set dev swp33 isolated on && bridge link set dev swp34 isolated on && bridge link set dev swp35 isolated on INFO asyncssh:logging.py:92 [conn=165, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=165, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=9] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 30277 cmode runtime INFO asyncssh:logging.py:92 [conn=165, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=10] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 30277 cmode runtime INFO asyncssh:logging.py:92 [conn=165, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=165, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=11] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=165, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=12] Command: devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=165, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=12] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":30277}]}]}} INFO asyncssh:logging.py:92 [conn=165, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=13] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 105367 cmode runtime INFO asyncssh:logging.py:92 [conn=165, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=14] Command: devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 105367 cmode runtime INFO asyncssh:logging.py:92 [conn=165, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=165, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=15] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=165, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=16] Command: devlink -j port param show pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=165, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=16] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":105367}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f6e93d60>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:5 Tx 2822277 Rx 1619017 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:6 Tx 0 Rx 1618927 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:7 Tx 0 Rx 1618834 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:8 Tx 1835297 Rx 732803 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f702d270>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI stream_1 SIP-DIP N/A Tx 641404 Rx 166537 Loss 74.036 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI stream_2 SIP-DIP N/A Tx 662728 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI stream_3 SIP-DIP N/A Tx 3691636 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:8 Rx 10.36.118.199:2:7 TI stream_4 SIP-DIP N/A Tx 1748669 Rx 1537337 Loss 12.085 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:8 Rx 10.36.118.199:2:6 TI stream_5 SIP-DIP N/A Tx 952908 Rx 845935 Loss 11.226 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:8 Rx 10.36.118.199:2:5 TI stream_6 SIP-DIP N/A Tx 547661 Rx 481112 Loss 12.151 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=165, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=17] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=165, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=18] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=165, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=18] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":30277}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":105367}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/49":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/50":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/51":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/52":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=165, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=19] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=165, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=20] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=165, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=165, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=21] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=165, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=22] Command: devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=165, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=22] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=165, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=23] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=165, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=24] Command: devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=165, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=24] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=165, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=25] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=165, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=26] Command: devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=165, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=26] Channel closed DEBUG infra2:Logger.py:156 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_port_isolation_interaction_br_storm_control from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_br_storm_control.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=165, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=27] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=165, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=28] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 01:40:33 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=165, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=29] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=165, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=30] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 01:40:38 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=165, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=31] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=165, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=32] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=165, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=32] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":160,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=165, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=165, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=33] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=165, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=165, chan=34] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=165, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=165, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=165, chan=34] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/port_isolation/test_port_isolation_interaction_mc_and_br_storm_control.py::test_port_isolation_interaction_mc_and_br_storm_control | 196.22 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_port_isolation_interaction_mc_and_br_storm_control">Starting testcase:test_port_isolation_interaction_mc_and_br_storm_control from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_mc_and_br_storm_control.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-9811' coro=<test_port_isolation_interaction_mc_and_br_storm_control() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_mc_and_br_storm_control.py:51> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=165, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=166] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=166] Local address: 172.17.0.3, port 47098 INFO asyncssh:logging.py:92 [conn=166] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=166] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=166] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=166, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=0] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 01:40:39 UTC 2023 INFO asyncssh:logging.py:92 [conn=166, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=166, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=166, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=166, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=166, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=166, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=166, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=166, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=166, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=166, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=7] Channel closed DEBUG infra2:Logger.py:156 bridge link set dev swp33 isolated on && bridge link set dev swp34 isolated on && bridge link set dev swp35 isolated on INFO asyncssh:logging.py:92 [conn=166, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=8] Command: bridge link set dev swp33 isolated on && bridge link set dev swp34 isolated on && bridge link set dev swp35 isolated on INFO asyncssh:logging.py:92 [conn=166, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=166, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=9] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 9042 cmode runtime INFO asyncssh:logging.py:92 [conn=166, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=10] Command: devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 9042 cmode runtime INFO asyncssh:logging.py:92 [conn=166, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=166, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=11] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=166, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=12] Command: devlink -j port param show pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=166, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=12] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/34":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":9042}]}]}} INFO asyncssh:logging.py:92 [conn=166, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=13] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 65394 cmode runtime INFO asyncssh:logging.py:92 [conn=166, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=14] Command: devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 65394 cmode runtime INFO asyncssh:logging.py:92 [conn=166, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=166, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=15] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=166, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=16] Command: devlink -j port param show pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=166, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=16] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":65394}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f702c160>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:5 Tx 0 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:6 Tx 819893 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:7 Tx 1287331 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:8 Tx 0 Rx 753794 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f7001ea0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:8 TI stream_1 SIP-DIP N/A Tx 1225980 Rx 90513 Loss 92.617 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:8 TI stream_2 SIP-DIP N/A Tx 310085 Rx 169381 Loss 45.376 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:6 TI stream_3 SIP-DIP N/A Tx 544886 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:5 TI stream_4 SIP-DIP N/A Tx 1070110 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=166, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=17] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=166, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=18] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=166, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=18] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":9042}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":65394}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/49":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/50":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/51":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/52":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=166, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=19] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=166, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=20] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=166, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=166, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=21] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=166, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=22] Command: devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=166, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=22] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=166, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=23] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=166, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=24] Command: devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=166, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=24] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=166, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=25] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=166, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=26] Command: devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=166, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=26] Channel closed DEBUG infra2:Logger.py:156 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_port_isolation_interaction_mc_and_br_storm_control from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_mc_and_br_storm_control.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=166, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=27] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=166, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=28] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 01:43:49 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=166, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=29] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=166, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=30] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 01:43:54 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=166, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=31] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=166, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=32] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=166, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=32] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":161,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=166, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=166, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=33] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=166, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=166, chan=34] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=166, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=166, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=166, chan=34] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/port_isolation/test_port_isolation_interaction_ports_inside_lag.py::test_port_isolation_interaction_ports_inside_lag | 407.38 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_port_isolation_interaction_ports_inside_lag">Starting testcase:test_port_isolation_interaction_ports_inside_lag from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_ports_inside_lag.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-9856' coro=<test_port_isolation_interaction_ports_inside_lag() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_ports_inside_lag.py:47> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=166, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=167] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=167] Local address: 172.17.0.3, port 59222 INFO asyncssh:logging.py:92 [conn=167] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=167] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=167] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=167, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=0] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 01:43:55 UTC 2023 INFO asyncssh:logging.py:92 [conn=167, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add bond1 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=167, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=2] Command: ip link add bond1 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=167, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=167, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev bond1 up && ip link set dev swp33 down && ip link set dev swp33 master bond1 INFO asyncssh:logging.py:92 [conn=167, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=4] Command: ip link set dev bond1 up && ip link set dev swp33 down && ip link set dev swp33 master bond1 INFO asyncssh:logging.py:92 [conn=167, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=167, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link add bond2 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=167, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=6] Command: ip link add bond2 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=167, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=167, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link set dev bond2 up && ip link set dev swp34 down && ip link set dev swp34 master bond2 INFO asyncssh:logging.py:92 [conn=167, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=8] Command: ip link set dev bond2 up && ip link set dev swp34 down && ip link set dev swp34 master bond2 INFO asyncssh:logging.py:92 [conn=167, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=167, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=167, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=167, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=167, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=11] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=167, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=12] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=167, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=167, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=167, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=14] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=167, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=167, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp35 master br0 && ip link set dev swp36 master br0 INFO asyncssh:logging.py:92 [conn=167, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=16] Command: ip link set dev swp35 master br0 && ip link set dev swp36 master br0 INFO asyncssh:logging.py:92 [conn=167, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=167, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip link set dev bond1 master br0 && ip link set dev bond2 master br0 INFO asyncssh:logging.py:92 [conn=167, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=18] Command: ip link set dev bond1 master br0 && ip link set dev bond2 master br0 INFO asyncssh:logging.py:92 [conn=167, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=167, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=19] Channel closed DEBUG infra2:Logger.py:156 bridge link set dev bond1 isolated on && bridge link set dev swp35 isolated on INFO asyncssh:logging.py:92 [conn=167, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=20] Command: bridge link set dev bond1 isolated on && bridge link set dev swp35 isolated on INFO asyncssh:logging.py:92 [conn=167, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f7019b40>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI stream_0 SIP-DIP N/A Tx 10877 Rx 10877 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI stream_1 SIP-DIP N/A Tx 10877 Rx 10877 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f701a650>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI stream_0 SIP-DIP N/A Tx 10844 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:7 TI stream_1 SIP-DIP N/A Tx 10844 Rx 10844 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f701add0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI stream_0 SIP-DIP N/A Tx 10862 Rx 10862 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:8 TI stream_1 SIP-DIP N/A Tx 10862 Rx 10862 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_port_isolation_interaction_ports_inside_lag from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_ports_inside_lag.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=167, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=21] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=167, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=22] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 01:50:40 UTC 2023 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=167, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=23] Channel closed DEBUG infra2:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=167, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=24] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=167, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=24] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"f6:33:41:29:6d:87","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"18:be:92:13:64:a5","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"18:be:92:13:64:a6","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":0,"bridge_id":"8000.18:be:92:13:64:a5","root_id":"8000.18:be:92:13:64:a5","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":true,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.18:be:92:13:64:a5","root_id":"8000.18:be:92:13:64:a5","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":162,"ifname":"bond1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1},"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8003","no":"0x3","designated_port":32771,"designated_cost":0,"bridge_id":"8000.18:be:92:13:64:a5","root_id":"8000.18:be:92:13:64:a5","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":true,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":163,"ifname":"bond2","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1},"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8004","no":"0x4","designated_port":32772,"designated_cost":0,"bridge_id":"8000.18:be:92:13:64:a5","root_id":"8000.18:be:92:13:64:a5","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":164,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":30000,"stp_state":0,"priority":32768,"vlan_filtering":1,"vlan_protocol":"802.1Q","bridge_id":"8000.18:be:92:13:64:a5","root_id":"8000.18:be:92:13:64:a5","root_port":0,"root_path_cost":0,"topology_change":0,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":196.31,"vlan_default_pvid":1,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535}] INFO asyncssh:logging.py:92 [conn=167, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=25] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond1 INFO asyncssh:logging.py:92 [conn=167, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=26] Command: ip link delete bond1 INFO asyncssh:logging.py:92 [conn=167, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=26] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=167, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=27] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond2 INFO asyncssh:logging.py:92 [conn=167, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=28] Command: ip link delete bond2 INFO asyncssh:logging.py:92 [conn=167, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=28] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=167, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=29] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=167, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=30] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 01:50:42 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=167, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=31] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=167, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=32] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 01:50:42 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=167, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=33] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=167, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=34] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=167, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=34] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":164,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=167, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=167, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=35] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=167, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=167, chan=36] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=167, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=167, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=167, chan=36] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/port_isolation/test_port_isolation_interaction_span_rule.py::test_port_isolation_interaction_span_rule | 166.39 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_port_isolation_interaction_span_rule">Starting testcase:test_port_isolation_interaction_span_rule from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_span_rule.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-9956' coro=<test_port_isolation_interaction_span_rule() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_span_rule.py:49> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=168, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=169] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=169] Local address: 172.17.0.3, port 50538 INFO asyncssh:logging.py:92 [conn=169] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=169] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=169] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=169, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=0] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 01:53:10 UTC 2023 INFO asyncssh:logging.py:92 [conn=169, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=169, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=169, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=169, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=169, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=169, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=169, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=169, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=169, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=169, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=7] Channel closed DEBUG infra2:Logger.py:156 bridge link set dev swp33 isolated on && bridge link set dev swp34 isolated on INFO asyncssh:logging.py:92 [conn=169, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=8] Command: bridge link set dev swp33 isolated on && bridge link set dev swp34 isolated on INFO asyncssh:logging.py:92 [conn=169, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=169, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=9] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=169, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=10] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=169, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=169, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=11] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress matchall skip_sw action mirred egress mirror dev swp34 INFO asyncssh:logging.py:92 [conn=169, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=12] Command: tc filter add dev swp33 ingress matchall skip_sw action mirred egress mirror dev swp34 INFO asyncssh:logging.py:92 [conn=169, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:2:7' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for bridgeStream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f701bb80>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI bridgeStream SIP-DIP N/A Tx 9982 Rx 9982 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f70198d0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item bridgeStream Tx 11045 Rx 11045 Frames Delta 0 Loss 0.000 INFO asyncssh:logging.py:92 [conn=169, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=13] Channel closed DEBUG infra2:Logger.py:156 tc filter delete dev swp33 ingress pref 49152 INFO asyncssh:logging.py:92 [conn=169, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=14] Command: tc filter delete dev swp33 ingress pref 49152 INFO asyncssh:logging.py:92 [conn=169, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f701bb80>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI bridgeStream SIP-DIP N/A Tx 11986 Rx 0 Loss 100.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_port_isolation_interaction_span_rule from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_span_rule.py INFO asyncssh:logging.py:92 [conn=169, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=15] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=169, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=16] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 01:55:53 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=169, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=17] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=169, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=18] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=169, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=18] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{}}] INFO asyncssh:logging.py:92 [conn=169, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=19] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=169, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=20] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=169, chan=20] Received exit status 2 INFO asyncssh:logging.py:92 [conn=169, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=20] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=169, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=21] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=169, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=22] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=169, chan=22] Received exit status 2 INFO asyncssh:logging.py:92 [conn=169, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=22] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=169, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=23] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=169, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=24] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=169, chan=24] Received exit status 2 INFO asyncssh:logging.py:92 [conn=169, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=24] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=169, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=25] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=169, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=26] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=169, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=169, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=26] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=169, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=27] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=169, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=28] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=169, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=169, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=28] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=169, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=29] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=169, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=169, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=169, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=30] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=169, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=31] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=169, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=169, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=169, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=32] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=169, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=33] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=169, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=169, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=169, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=34] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=169, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=35] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=169, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=169, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=169, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=36] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=169, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=37] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=169, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=169, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=169, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=38] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=169, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=169, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=40] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=169, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=169, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=40] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=169, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=169, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=42] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=169, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=42] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=169, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=169, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=44] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=169, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=169, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=169, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=169, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=46] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=169, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=169, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=46] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=169, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=169, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=48] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=169, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=169, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=48] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=169, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev br0 root INFO asyncssh:logging.py:92 [conn=169, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=50] Command: tc qdisc delete dev br0 root INFO asyncssh:logging.py:92 [conn=169, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=169, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=50] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=169, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=51] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=169, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=52] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=52] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 01:55:54 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=169, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=53] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=169, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=54] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=54] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 01:55:56 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=169, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=55] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=169, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=56] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=169, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=56] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":168,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=169, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=169, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=57] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=169, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=169, chan=58] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=169, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=169, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=169, chan=58] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/port_isolation/test_port_isolation_interaction_unk_uc_storm_control.py::test_port_isolation_interaction_unk_uc_storm_control | 205.22 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_port_isolation_interaction_unk_uc_storm_control">Starting testcase:test_port_isolation_interaction_unk_uc_storm_control from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_unk_uc_storm_control.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-10026' coro=<test_port_isolation_interaction_unk_uc_storm_control() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_unk_uc_storm_control.py:53> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=169, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=170] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=170] Local address: 172.17.0.3, port 57690 INFO asyncssh:logging.py:92 [conn=170] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=170] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=170] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=170, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=0] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 01:55:57 UTC 2023 INFO asyncssh:logging.py:92 [conn=170, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=170, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=170, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=170, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=170, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=170, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=170, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=170, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=170, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=170, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=7] Channel closed DEBUG infra2:Logger.py:156 bridge link set dev swp33 isolated on && bridge link set dev swp34 isolated on && bridge link set dev swp35 isolated on INFO asyncssh:logging.py:92 [conn=170, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=8] Command: bridge link set dev swp33 isolated on && bridge link set dev swp34 isolated on && bridge link set dev swp35 isolated on INFO asyncssh:logging.py:92 [conn=170, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=170, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=9] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 15277 cmode runtime INFO asyncssh:logging.py:92 [conn=170, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=10] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 15277 cmode runtime INFO asyncssh:logging.py:92 [conn=170, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=170, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=11] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=170, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=12] Command: devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=170, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=12] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":15277}]}]}} INFO asyncssh:logging.py:92 [conn=170, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=13] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 97367 cmode runtime INFO asyncssh:logging.py:92 [conn=170, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=14] Command: devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 97367 cmode runtime INFO asyncssh:logging.py:92 [conn=170, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=170, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=15] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=170, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=16] Command: devlink -j port param show pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=170, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=16] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/36":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":97367}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_6 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f6e93160>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:5 Tx 1055588 Rx 477181 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:6 Tx 0 Rx 477146 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:7 Tx 0 Rx 477108 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:8 Tx 599897 Rx 133569 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f6e915a0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI stream_1 SIP-DIP N/A Tx 1057284 Rx 133396 Loss 87.383 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI stream_2 SIP-DIP N/A Tx 500987 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI stream_3 SIP-DIP N/A Tx 913727 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:8 Rx 10.36.118.199:2:7 TI stream_4 SIP-DIP N/A Tx 331325 Rx 263791 Loss 20.383 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:8 Rx 10.36.118.199:2:6 TI stream_5 SIP-DIP N/A Tx 574372 Rx 460159 Loss 19.885 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:8 Rx 10.36.118.199:2:5 TI stream_6 SIP-DIP N/A Tx 499479 Rx 392496 Loss 21.419 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=170, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=17] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=170, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=18] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=170, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=18] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":15277}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":9042}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":97367}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/49":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/50":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/51":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/52":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=170, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=19] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=170, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=20] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=170, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=170, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=21] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=170, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=22] Command: devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=170, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=22] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=170, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=23] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=170, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=24] Command: devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=170, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=24] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=170, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=25] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=170, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=26] Command: devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=170, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=26] Channel closed DEBUG infra2:Logger.py:156 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_port_isolation_interaction_unk_uc_storm_control from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_unk_uc_storm_control.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=170, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=27] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=170, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=28] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 01:59:16 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=170, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=29] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=170, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=30] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 01:59:21 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=170, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=31] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=170, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=32] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=170, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=32] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":169,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=170, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=170, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=33] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=170, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=170, chan=34] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=170, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=170, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=170, chan=34] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/port_isolation/test_port_isolation_interaction_vlan_membership.py::test_port_isolation_interaction_vlan_membership | 414.22 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_port_isolation_interaction_vlan_membership">Starting testcase:test_port_isolation_interaction_vlan_membership from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_vlan_membership.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-10070' coro=<test_port_isolation_interaction_vlan_membership() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_vlan_membership.py:52> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=170, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=171] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=171] Local address: 172.17.0.3, port 38124 INFO asyncssh:logging.py:92 [conn=171] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=171] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=171] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=171, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=0] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 01:59:22 UTC 2023 INFO asyncssh:logging.py:92 [conn=171, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=171, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=171, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=171, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=171, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=171, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=171, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=171, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=171, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=171, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=7] Channel closed DEBUG infra2:Logger.py:156 bridge link set dev swp33 isolated on && bridge link set dev swp34 isolated on INFO asyncssh:logging.py:92 [conn=171, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=8] Command: bridge link set dev swp33 isolated on && bridge link set dev swp34 isolated on INFO asyncssh:logging.py:92 [conn=171, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=171, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=9] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp33 vid 22 && bridge vlan add dev swp34 vid 22 && bridge vlan add dev swp35 vid 22 && bridge vlan add dev swp36 vid 22 INFO asyncssh:logging.py:92 [conn=171, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=10] Command: bridge vlan add dev swp33 vid 22 && bridge vlan add dev swp34 vid 22 && bridge vlan add dev swp35 vid 22 && bridge vlan add dev swp36 vid 22 INFO asyncssh:logging.py:92 [conn=171, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=171, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=11] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp33 vid 23 && bridge vlan add dev swp34 vid 23 && bridge vlan add dev swp35 vid 23 && bridge vlan add dev swp36 vid 23 INFO asyncssh:logging.py:92 [conn=171, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=12] Command: bridge vlan add dev swp33 vid 23 && bridge vlan add dev swp34 vid 23 && bridge vlan add dev swp35 vid 23 && bridge vlan add dev swp36 vid 23 INFO asyncssh:logging.py:92 [conn=171, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=171, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=13] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp33 vid 24 pvid && bridge vlan add dev swp34 vid 24 pvid && bridge vlan add dev swp35 vid 24 pvid && bridge vlan add dev swp36 vid 24 pvid INFO asyncssh:logging.py:92 [conn=171, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=14] Command: bridge vlan add dev swp33 vid 24 pvid && bridge vlan add dev swp34 vid 24 pvid && bridge vlan add dev swp35 vid 24 pvid && bridge vlan add dev swp36 vid 24 pvid INFO asyncssh:logging.py:92 [conn=171, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=171, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=15] Channel closed DEBUG infra2:Logger.py:156 bridge -j vlan show INFO asyncssh:logging.py:92 [conn=171, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=16] Command: bridge -j vlan show INFO asyncssh:logging.py:92 [conn=171, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"ifname":"swp33","vlans":[{"vlan":22},{"vlan":23},{"vlan":24,"flags":["PVID"]}]},{"ifname":"swp34","vlans":[{"vlan":22},{"vlan":23},{"vlan":24,"flags":["PVID"]}]},{"ifname":"swp35","vlans":[{"vlan":22},{"vlan":23},{"vlan":24,"flags":["PVID"]}]},{"ifname":"swp36","vlans":[{"vlan":22},{"vlan":23},{"vlan":24,"flags":["PVID"]}]}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f7060e50>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI stream_0 SIP-DIP N/A Tx 5446 Rx 5445 Loss 0.018 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:8 TI stream_1 SIP-DIP N/A Tx 5446 Rx 5446 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:8 TI stream_2 SIP-DIP N/A Tx 5446 Rx 5446 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:8 Rx 10.36.118.199:2:7 TI stream_3 SIP-DIP N/A Tx 5446 Rx 5446 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f7062770>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI stream_0 SIP-DIP N/A Tx 5441 Rx 5441 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:7 TI stream_1 SIP-DIP N/A Tx 5441 Rx 5441 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:6 TI stream_2 SIP-DIP N/A Tx 5441 Rx 5441 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:8 Rx 10.36.118.199:2:6 TI stream_3 SIP-DIP N/A Tx 5441 Rx 5441 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f70602e0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI stream_0 SIP-DIP N/A Tx 5430 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI stream_1 SIP-DIP N/A Tx 5430 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:5 TI stream_2 SIP-DIP N/A Tx 5430 Rx 5430 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:8 Rx 10.36.118.199:2:5 TI stream_3 SIP-DIP N/A Tx 5430 Rx 5430 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_port_isolation_interaction_vlan_membership from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_interaction_vlan_membership.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=171, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=17] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=171, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=18] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 02:06:15 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=171, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=19] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=171, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=20] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=20] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 02:06:15 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=171, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=171, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=22] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=171, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=22] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":170,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=171, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=171, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=23] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=171, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=171, chan=24] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=171, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=171, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=171, chan=24] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/port_isolation/test_port_isolation_maximum_isolated_ports_on_bridge.py::test_port_isolation_maximum_isolated_ports_on_bridge | 185.94 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_port_isolation_maximum_isolated_ports_on_bridge">Starting testcase:test_port_isolation_maximum_isolated_ports_on_bridge from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_maximum_isolated_ports_on_bridge.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-10104' coro=<test_port_isolation_maximum_isolated_ports_on_bridge() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_maximum_isolated_ports_on_bridge.py:48> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete It took 0:00:00.034762 to verify ports presence. It took 0:00:00.061550 to set entities to 'UP' state. -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=171, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=172] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=172] Local address: 172.17.0.3, port 46640 INFO asyncssh:logging.py:92 [conn=172] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=172] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=172] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=172, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=0] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 02:06:16 UTC 2023 INFO asyncssh:logging.py:92 [conn=172, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=1] Channel closed DEBUG infra2:Logger.py:156 ifconfig -a INFO asyncssh:logging.py:92 [conn=172, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=2] Command: ifconfig -a INFO asyncssh:logging.py:92 [conn=172, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=2] Channel closed DEBUG infra2:Logger.py:156 dummy0: flags=130<BROADCAST,NOARP> mtu 1500 ether f6:33:41:29:6d:87 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 lo: flags=73<UP,LOOPBACK,RUNNING> mtu 65536 inet 127.0.0.1 netmask 255.0.0.0 inet6 ::1 prefixlen 128 scopeid 0x10<host> loop txqueuelen 1000 (Local Loopback) RX packets 6898 bytes 344900 (336.8 KiB) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 6898 bytes 344900 (336.8 KiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 ma1: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500 inet 10.36.118.23 netmask 255.255.255.0 broadcast 10.36.118.255 inet6 fe80::1abe:92ff:fe13:6482 prefixlen 64 scopeid 0x20<link> ether 18:be:92:13:64:82 txqueuelen 2048 (Ethernet) RX packets 94907 bytes 8513029 (8.1 MiB) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 71861 bytes 10122234 (9.6 MiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 sit0: flags=128<NOARP> mtu 1480 sit txqueuelen 1000 (IPv6-in-IPv4) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp1: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:85 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp2: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:86 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp3: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:87 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp4: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:88 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp5: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:89 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp6: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:8a txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp7: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:8b txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp8: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:8c txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp9: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:8d txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp10: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:8e txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp11: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:8f txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp12: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:90 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp13: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:91 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp14: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:92 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp15: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:93 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp16: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:94 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp17: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:95 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp18: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:96 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp19: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:97 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp20: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:98 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp21: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:99 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp22: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:9a txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp23: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:9b txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp24: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:9c txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp25: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:9d txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp26: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:9e txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp27: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:9f txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp28: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:a0 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp29: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:a1 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp30: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:a2 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp31: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:a3 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp32: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:a4 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp33: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500 inet6 fe80::1abe:92ff:fe13:64a5 prefixlen 64 scopeid 0x20<link> ether 18:be:92:13:64:a5 txqueuelen 1000 (Ethernet) RX packets 516772701 bytes 176444334242 (164.3 GiB) RX errors 0 dropped 3794650 overruns 0 frame 12065 TX packets 21178893 bytes 8957256147 (8.3 GiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp34: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500 inet6 fe80::1abe:92ff:fe13:64a6 prefixlen 64 scopeid 0x20<link> ether 18:be:92:13:64:a6 txqueuelen 1000 (Ethernet) RX packets 99743506 bytes 30242209310 (28.1 GiB) RX errors 0 dropped 16819 overruns 0 frame 11867 TX packets 38078269 bytes 15361444581 (14.3 GiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp35: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500 inet6 fe80::1abe:92ff:fe13:64a7 prefixlen 64 scopeid 0x20<link> ether 18:be:92:13:64:a7 txqueuelen 1000 (Ethernet) RX packets 57069449 bytes 18426393114 (17.1 GiB) RX errors 0 dropped 5919 overruns 0 frame 0 TX packets 26297303 bytes 11527133966 (10.7 GiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp36: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500 inet6 fe80::1abe:92ff:fe13:64a8 prefixlen 64 scopeid 0x20<link> ether 18:be:92:13:64:a8 txqueuelen 1000 (Ethernet) RX packets 57832453 bytes 19724735887 (18.3 GiB) RX errors 0 dropped 5919 overruns 0 frame 0 TX packets 23580915 bytes 9644555160 (8.9 GiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp37: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:a9 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp38: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:aa txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp39: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:ab txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp40: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:ac txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp41: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:ad txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp42: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:ae txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp43: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:af txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp44: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:b0 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp45: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:b1 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp46: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:b2 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp47: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:b3 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp48: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:b4 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp49: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:b5 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp50: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:b6 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp51: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:b7 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 swp52: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 18:be:92:13:64:b8 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 INFO asyncssh:logging.py:92 [conn=172, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=172, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=4] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=172, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=172, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=172, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=6] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=172, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=172, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=172, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=8] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=172, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=172, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=172, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=10] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=172, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=10] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"f6:33:41:29:6d:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":171,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=172, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=11] Channel closed DEBUG infra2:Logger.py:156 bridge link set dev swp33 isolated on && bridge link set dev swp34 isolated on && bridge link set dev swp35 isolated on && bridge link set dev swp36 isolated on INFO asyncssh:logging.py:92 [conn=172, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=12] Command: bridge link set dev swp33 isolated on && bridge link set dev swp34 isolated on && bridge link set dev swp35 isolated on && bridge link set dev swp36 isolated on INFO asyncssh:logging.py:92 [conn=172, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f6fb9750>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI stream_1 SIP-DIP N/A Tx 7975 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI stream_2 SIP-DIP N/A Tx 7975 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI stream_3 SIP-DIP N/A Tx 7975 Rx 0 Loss 100.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_port_isolation_maximum_isolated_ports_on_bridge from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/port_isolation/test_port_isolation_maximum_isolated_ports_on_bridge.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=172, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=172, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=14] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 02:09:21 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=172, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=15] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=172, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=16] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 02:09:21 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=172, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=172, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=172, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=18] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":171,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=172, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=172, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=172, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=172, chan=20] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=172, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=172, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=172, chan=20] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/qos/test_qos_class_precedence.py::test_qos_class_precedence[L2] | 305.06 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-10134' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_qos_class_precedence[L2]">Starting testcase:test_qos_class_precedence[L2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_class_precedence.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=172, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=173] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=173] Local address: 172.17.0.3, port 39722 INFO asyncssh:logging.py:92 [conn=173] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=173] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=173] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=173, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=0] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 02:09:22 UTC 2023 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=173, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=1] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=173, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=2] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=2] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 02:09:22 UTC 2023 INFO asyncssh:logging.py:92 [conn=173, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link add name br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=173, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=4] Command: ip link add name br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=173, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=173, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=173, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=173, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=173, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=7] Channel closed DEBUG infra2:Logger.py:156 bridge vlan delete dev swp33 vid 1 && bridge vlan delete dev swp34 vid 1 && bridge vlan delete dev swp35 vid 1 INFO asyncssh:logging.py:92 [conn=173, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=8] Command: bridge vlan delete dev swp33 vid 1 && bridge vlan delete dev swp34 vid 1 && bridge vlan delete dev swp35 vid 1 INFO asyncssh:logging.py:92 [conn=173, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=173, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=9] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp33 vid 3005 && bridge vlan add dev swp34 vid 3005 && bridge vlan add dev swp35 vid 3005 INFO asyncssh:logging.py:92 [conn=173, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=10] Command: bridge vlan add dev swp33 vid 3005 && bridge vlan add dev swp34 vid 3005 && bridge vlan add dev swp35 vid 3005 INFO asyncssh:logging.py:92 [conn=173, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=173, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=11] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp35 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=173, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=12] Command: tc qdisc add dev swp35 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=173, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=173, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=13] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp35 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=173, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=14] Command: tc qdisc add dev swp35 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=173, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=173, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=15] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=173, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=16] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=173, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': 3005, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': 3005, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.10', 'plen': 24, 'vlan': 3005, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for high priority traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for low priority traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=173, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=17] Channel closed DEBUG infra2:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=173, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=18] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=173, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=18] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":10159135,"packets":72174,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1828316,"packets":15270,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1846001,"packets":15447,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1839082,"packets":15437,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":4645736,"packets":26020,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2185938,"packets":18293,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":138090645,"packets":357089,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":2658,"packets":13,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":6240,"packets":38,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1987348,"packets":16708,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=173, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=19] Channel closed DEBUG infra2:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=173, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=20] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=173, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=20] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":10161841,"packets":72195,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1828316,"packets":15270,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1848139,"packets":15464,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1839566,"packets":15439,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":4645820,"packets":26022,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2186199,"packets":18294,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":138090906,"packets":357090,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":2989,"packets":15,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1875052032,"packets":3662211,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":6942,"packets":42,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1249831936,"packets":2441078,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1987836,"packets":16710,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f6fb9750>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI high priority traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 1220539 Rx 1220539 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:7 TI high priority traffic #1 SIP-DIP 00:12:01:00:00:01-00:13:01:00:00:01 Tx 1220539 Rx 1220539 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI low priority traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 2441077 Rx 1845144 Loss 24.413 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:7 TI low priority traffic #1 SIP-DIP 00:12:01:00:00:01-00:13:01:00:00:01 Tx 2441077 Rx 1817067 Loss 25.563 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for medium priority traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=173, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=21] Channel closed DEBUG infra2:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=173, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=22] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=173, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=22] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":10164545,"packets":72217,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1828316,"packets":15270,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1850233,"packets":15481,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1840092,"packets":15442,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":4645904,"packets":26024,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2186791,"packets":18297,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":138091428,"packets":357092,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":3511,"packets":17,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1875052032,"packets":3662211,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":8538,"packets":54,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1249831936,"packets":2441078,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1988324,"packets":16712,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=173, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=23] Channel closed DEBUG infra2:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=173, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=24] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=173, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=24] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":10166951,"packets":72238,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1828316,"packets":15270,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1852313,"packets":15499,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1840376,"packets":15444,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":4645946,"packets":26025,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2187313,"packets":18299,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":138091950,"packets":357094,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":4033,"packets":19,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1246150656,"packets":2433888,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":2498432512,"packets":4879751,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":9622,"packets":58,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":2495982592,"packets":4874966,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1988568,"packets":16713,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f7061c60>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI high priority traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 1216944 Rx 1216944 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:7 TI high priority traffic #1 SIP-DIP 00:12:01:00:00:01-00:13:01:00:00:01 Tx 1216944 Rx 1216944 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI low priority traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 2433888 Rx 616020 Loss 74.690 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:7 TI low priority traffic #1 SIP-DIP 00:12:01:00:00:01-00:13:01:00:00:01 Tx 2433888 Rx 601520 Loss 75.286 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI medium priority traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 1216944 Rx 1216944 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:7 TI medium priority traffic #1 SIP-DIP 00:12:01:00:00:01-00:13:01:00:00:01 Tx 1216944 Rx 1216944 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_qos_class_precedence[L2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_class_precedence.py INFO asyncssh:logging.py:92 [conn=173, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=25] Channel closed DEBUG infra2:Logger.py:156 dcb app flush dev swp33 && dcb app flush dev swp34 && dcb app flush dev swp35 && dcb app flush dev swp36 INFO asyncssh:logging.py:92 [conn=173, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=26] Command: dcb app flush dev swp33 && dcb app flush dev swp34 && dcb app flush dev swp35 && dcb app flush dev swp36 INFO asyncssh:logging.py:92 [conn=173, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=26] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=173, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=27] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=173, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=28] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 02:14:26 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=173, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=29] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=173, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=30] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=173, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=30] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":172,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=173, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=31] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=173, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=32] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=173, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=32] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=173, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=33] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=173, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=34] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 02:14:26 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=173, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=35] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=173, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=36] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=173, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=36] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=173, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=37] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=173, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=38] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=173, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=173, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=38] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=173, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=173, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=40] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=173, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=173, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=40] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=173, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=173, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=173, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=173, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=42] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=173, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=173, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=173, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=173, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=173, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=173, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=173, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=173, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=46] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=173, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=173, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=173, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=173, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=48] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=173, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=173, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=173, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=173, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=50] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=173, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=173, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=52] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=173, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=173, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=52] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=173, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=173, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=54] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=173, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=173, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=54] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=173, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=55] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=173, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=56] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=173, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=173, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=56] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=173, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=57] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=173, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=58] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=173, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=173, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=58] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=173, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=59] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=173, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=60] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=173, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=173, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=60] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=173, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=61] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=173, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=62] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=173, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=62] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=173, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=63] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=173, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=64] Command: tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=173, chan=64] Received exit status 1 INFO asyncssh:logging.py:92 [conn=173, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=64] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=173, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=65] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=173, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=66] Command: tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=173, chan=66] Received exit status 1 INFO asyncssh:logging.py:92 [conn=173, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=66] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=173, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=67] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=173, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=68] Command: tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=173, chan=68] Received exit status 1 INFO asyncssh:logging.py:92 [conn=173, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=68] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=173, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=69] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=173, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=70] Command: tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=173, chan=70] Received exit status 1 INFO asyncssh:logging.py:92 [conn=173, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=70] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=173, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=71] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=173, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=72] Command: tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=173, chan=72] Received exit status 1 INFO asyncssh:logging.py:92 [conn=173, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=72] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=173, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=73] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=173, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=74] Command: tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=173, chan=74] Received exit status 1 INFO asyncssh:logging.py:92 [conn=173, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=74] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=173, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=75] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=173, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=76] Command: tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=173, chan=76] Received exit status 1 INFO asyncssh:logging.py:92 [conn=173, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=76] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=173, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=77] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=173, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=78] Command: tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=173, chan=78] Received exit status 1 INFO asyncssh:logging.py:92 [conn=173, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=78] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=173, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=173, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=173, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=79] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=173, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=173, chan=80] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=173, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=173, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=173, chan=80] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/qos/test_qos_class_precedence.py::test_qos_class_precedence[L3] | 298.68 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-10227' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_qos_class_precedence[L3]">Starting testcase:test_qos_class_precedence[L3] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_class_precedence.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=173, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=174] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=174] Local address: 172.17.0.3, port 47632 INFO asyncssh:logging.py:92 [conn=174] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=174] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=174] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=174, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=0] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 02:14:27 UTC 2023 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=174, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=1] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=174, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=2] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=2] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 02:14:27 UTC 2023 INFO asyncssh:logging.py:92 [conn=174, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link add name br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=174, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=4] Command: ip link add name br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=174, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=174, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=174, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=174, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=174, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=7] Channel closed DEBUG infra2:Logger.py:156 dcb app add dev swp33 dscp-prio 3:0 2:1 43:2 24:3 32:4 4:5 40:6 6:7&& dcb app add dev swp34 dscp-prio 3:0 2:1 43:2 24:3 32:4 4:5 40:6 6:7 INFO asyncssh:logging.py:92 [conn=174, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=8] Command: dcb app add dev swp33 dscp-prio 3:0 2:1 43:2 24:3 32:4 4:5 40:6 6:7&& dcb app add dev swp34 dscp-prio 3:0 2:1 43:2 24:3 32:4 4:5 40:6 6:7 INFO asyncssh:logging.py:92 [conn=174, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=174, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=9] Channel closed DEBUG infra2:Logger.py:156 dcb -j app show dev swp33 dscp-prio INFO asyncssh:logging.py:92 [conn=174, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=10] Command: dcb -j app show dev swp33 dscp-prio INFO asyncssh:logging.py:92 [conn=174, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=10] Channel closed DEBUG infra2:Logger.py:156 {"dscp_prio":[[2,1],[3,0],[4,5],[6,7],[24,3],[32,4],[40,6],[43,2]]} INFO asyncssh:logging.py:92 [conn=174, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=11] Channel closed DEBUG infra2:Logger.py:156 dcb -j app show dev swp34 dscp-prio INFO asyncssh:logging.py:92 [conn=174, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=12] Command: dcb -j app show dev swp34 dscp-prio INFO asyncssh:logging.py:92 [conn=174, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=12] Channel closed DEBUG infra2:Logger.py:156 {"dscp_prio":[[2,1],[3,0],[4,5],[6,7],[24,3],[32,4],[40,6],[43,2]]} INFO asyncssh:logging.py:92 [conn=174, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=13] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp35 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=174, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=14] Command: tc qdisc add dev swp35 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=174, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=174, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=15] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp35 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=174, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=16] Command: tc qdisc add dev swp35 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=174, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=174, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=17] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=174, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=18] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=174, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=18] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.10', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for high priority traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for low priority traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=174, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=19] Channel closed DEBUG infra2:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=174, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=20] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=174, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=20] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":10229028,"packets":72813,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1866171,"packets":15630,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1865669,"packets":15611,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1849492,"packets":15526,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":4647696,"packets":26046,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2190411,"packets":18324,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":138095048,"packets":357119,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":2636,"packets":21,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":5806,"packets":49,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":910,"packets":9,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1989788,"packets":16718,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=174, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=21] Channel closed DEBUG infra2:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=174, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=22] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=174, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=22] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":10231916,"packets":72835,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1866655,"packets":15632,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1865711,"packets":15612,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1851812,"packets":15544,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":4647738,"packets":26047,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2190899,"packets":18326,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":138095292,"packets":357120,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":2880,"packets":22,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1872567296,"packets":3657358,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":6314,"packets":51,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1248176014,"packets":2437851,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1990276,"packets":16720,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f701a8f0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI high priority traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 1218921 Rx 1218921 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:7 TI high priority traffic #1 SIP-DIP 00:12:01:00:00:01-00:13:01:00:00:01 Tx 1218921 Rx 1218921 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI low priority traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 2437841 Rx 1807876 Loss 25.841 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:7 TI low priority traffic #1 SIP-DIP 00:12:01:00:00:01-00:13:01:00:00:01 Tx 2437841 Rx 1849482 Loss 24.134 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for medium priority traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=174, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=23] Channel closed DEBUG infra2:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=174, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=24] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=174, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=24] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":10234748,"packets":72859,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1867139,"packets":15634,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1865711,"packets":15612,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1854034,"packets":15563,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":4647864,"packets":26050,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2191457,"packets":18329,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":138096094,"packets":357124,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":3682,"packets":26,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1872567296,"packets":3657358,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":8510,"packets":67,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1248176014,"packets":2437851,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1990764,"packets":16722,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=174, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=25] Channel closed DEBUG infra2:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=174, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=26] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=174, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=26] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":10237214,"packets":72880,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1867381,"packets":15635,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1865711,"packets":15612,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1856174,"packets":15581,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":4647948,"packets":26052,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":2191701,"packets":18330,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":138096338,"packets":357125,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":3926,"packets":27,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":2496219136,"packets":4875428,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":9018,"packets":69,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":2494867342,"packets":4872795,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1246691328,"packets":2434944,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1991008,"packets":16723,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f70188b0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI high priority traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 1217472 Rx 1217472 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:7 TI high priority traffic #1 SIP-DIP 00:12:01:00:00:01-00:13:01:00:00:01 Tx 1217472 Rx 1217472 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI low priority traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 2434944 Rx 610726 Loss 74.918 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:7 TI low priority traffic #1 SIP-DIP 00:12:01:00:00:01-00:13:01:00:00:01 Tx 2434944 Rx 607344 Loss 75.057 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI medium priority traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 1217472 Rx 1217472 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:7 TI medium priority traffic #1 SIP-DIP 00:12:01:00:00:01-00:13:01:00:00:01 Tx 1217472 Rx 1217472 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_qos_class_precedence[L3] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_class_precedence.py INFO asyncssh:logging.py:92 [conn=174, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=27] Channel closed DEBUG infra2:Logger.py:156 dcb app flush dev swp33 && dcb app flush dev swp34 && dcb app flush dev swp35 && dcb app flush dev swp36 INFO asyncssh:logging.py:92 [conn=174, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=28] Command: dcb app flush dev swp33 && dcb app flush dev swp34 && dcb app flush dev swp35 && dcb app flush dev swp36 INFO asyncssh:logging.py:92 [conn=174, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=28] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=174, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=29] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=174, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=30] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 02:19:25 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=174, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=31] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=174, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=32] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=174, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=32] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":173,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=174, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=33] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=174, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=34] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=174, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=34] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=174, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=35] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=174, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=36] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=36] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 02:19:25 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=174, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=37] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=174, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=38] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=174, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=38] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=174, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=174, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=40] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=174, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=174, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=40] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=174, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=174, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=42] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=174, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=174, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=42] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=174, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=174, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=174, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=174, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=174, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=174, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=174, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=174, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=46] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=174, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=174, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=174, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=174, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=48] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=174, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=174, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=174, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=174, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=50] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=174, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=174, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=52] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=174, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=174, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=52] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=174, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=174, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=54] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=174, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=174, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=54] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=174, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=55] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=174, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=56] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=174, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=174, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=56] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=174, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=57] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=174, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=58] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=174, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=174, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=58] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=174, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=59] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=174, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=60] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=174, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=174, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=60] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=174, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=61] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=174, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=62] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=174, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=174, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=62] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=174, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=63] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=174, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=64] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=174, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=64] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=174, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=65] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=174, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=66] Command: tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=174, chan=66] Received exit status 1 INFO asyncssh:logging.py:92 [conn=174, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=66] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=174, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=67] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=174, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=68] Command: tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=174, chan=68] Received exit status 1 INFO asyncssh:logging.py:92 [conn=174, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=68] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=174, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=69] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=174, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=70] Command: tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=174, chan=70] Received exit status 1 INFO asyncssh:logging.py:92 [conn=174, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=70] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=174, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=71] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=174, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=72] Command: tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=174, chan=72] Received exit status 1 INFO asyncssh:logging.py:92 [conn=174, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=72] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=174, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=73] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=174, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=74] Command: tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=174, chan=74] Received exit status 1 INFO asyncssh:logging.py:92 [conn=174, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=74] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=174, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=75] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=174, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=76] Command: tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=174, chan=76] Received exit status 1 INFO asyncssh:logging.py:92 [conn=174, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=76] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=174, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=77] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=174, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=78] Command: tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=174, chan=78] Received exit status 1 INFO asyncssh:logging.py:92 [conn=174, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=78] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=174, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=79] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=174, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=80] Command: tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=174, chan=80] Received exit status 1 INFO asyncssh:logging.py:92 [conn=174, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=80] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=174, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=174, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=174, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=81] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=174, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=174, chan=82] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=174, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=174, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=174, chan=82] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/qos/test_qos_default_prio.py::test_qos_default_prio | 653.77 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-10322' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_qos_default_prio">Starting testcase:test_qos_default_prio from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_default_prio.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=174, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=175] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=175] Local address: 172.17.0.3, port 57586 INFO asyncssh:logging.py:92 [conn=175] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=175] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=175] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=175, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=0] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 02:19:26 UTC 2023 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=175, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=1] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=175, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=2] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=2] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 02:19:26 UTC 2023 INFO asyncssh:logging.py:92 [conn=175, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link add name br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=175, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=4] Command: ip link add name br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=175, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=175, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=175, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=175, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=175, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=7] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp33 vid 1492 pvid untagged && bridge vlan add dev swp34 vid 1492 pvid untagged && bridge vlan add dev swp35 vid 1492 pvid && bridge vlan add dev swp36 vid 1492 pvid INFO asyncssh:logging.py:92 [conn=175, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=8] Command: bridge vlan add dev swp33 vid 1492 pvid untagged && bridge vlan add dev swp34 vid 1492 pvid untagged && bridge vlan add dev swp35 vid 1492 pvid && bridge vlan add dev swp36 vid 1492 pvid INFO asyncssh:logging.py:92 [conn=175, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=175, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=9] Channel closed DEBUG infra2:Logger.py:156 dcb app add dev swp33 dscp-prio 16:0 33:1 36:2 47:3 1:4 41:5 6:6 38:7 INFO asyncssh:logging.py:92 [conn=175, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=10] Command: dcb app add dev swp33 dscp-prio 16:0 33:1 36:2 47:3 1:4 41:5 6:6 38:7 INFO asyncssh:logging.py:92 [conn=175, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=175, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=11] Channel closed DEBUG infra2:Logger.py:156 dcb -j app show dev swp33 dscp-prio INFO asyncssh:logging.py:92 [conn=175, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=12] Command: dcb -j app show dev swp33 dscp-prio INFO asyncssh:logging.py:92 [conn=175, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=12] Channel closed DEBUG infra2:Logger.py:156 {"dscp_prio":[[1,4],[6,6],[16,0],[33,1],[36,2],[38,7],[41,5],[47,3]]} INFO asyncssh:logging.py:92 [conn=175, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=13] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp33 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 && tc qdisc add dev swp34 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 && tc qdisc add dev swp35 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 && tc qdisc add dev swp36 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=175, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=14] Command: tc qdisc add dev swp33 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 && tc qdisc add dev swp34 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 && tc qdisc add dev swp35 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 && tc qdisc add dev swp36 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=175, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=175, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=15] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp33 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp36 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp33 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp36 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp33 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp36 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp33 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp36 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp33 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp36 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp33 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp36 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp33 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp36 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp33 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp36 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=175, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=16] Command: tc qdisc add dev swp33 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp36 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp33 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp36 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp33 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp36 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp33 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp36 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp33 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp36 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp33 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp36 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp33 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp36 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp33 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp35 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp36 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=175, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=175, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=17] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=175, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=18] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=175, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=18] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp33","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp33","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp33","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp33","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp33","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp33","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp33","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp33","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp33","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"ets","handle":"10:","dev":"swp36","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp36","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp36","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp36","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp36","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp36","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp36","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp36","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp36","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.4', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.3', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.2', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=175, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=19] Channel closed DEBUG infra2:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=175, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=20] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=175, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=20] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":10299921,"packets":73456,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1871447,"packets":15658,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1887992,"packets":15823,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1889812,"packets":15894,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":4650670,"packets":26081,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp33","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":3000,"packets":14,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp33","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp33","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp33","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp33","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp33","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp33","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7328,"packets":46,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp33","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp33","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":2462,"packets":12,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":6148,"packets":41,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":3000,"packets":14,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7584,"packets":50,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp36","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":3000,"packets":14,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp36","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp36","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp36","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp36","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp36","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp36","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7584,"packets":50,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp36","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp36","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=175, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=21] Channel closed DEBUG infra2:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=175, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=22] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=175, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=22] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":10303191,"packets":73479,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1871689,"packets":15659,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1887992,"packets":15823,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1892724,"packets":15914,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":4650786,"packets":26083,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp33","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":3269,"packets":15,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp33","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp33","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp33","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp33","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp33","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp33","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7886,"packets":48,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp33","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp33","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":2731,"packets":13,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3398144,"packets":6637,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3398144,"packets":6637,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3397632,"packets":6636,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3398144,"packets":6637,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3398144,"packets":6637,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":6802482,"packets":13316,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3397992,"packets":6640,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3398144,"packets":6637,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":3269,"packets":15,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3398144,"packets":6637,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3398144,"packets":6637,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3397632,"packets":6636,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3398144,"packets":6637,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3398144,"packets":6637,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":6803918,"packets":13325,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3397992,"packets":6640,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3398144,"packets":6637,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp36","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":3269,"packets":15,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp36","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3398144,"packets":6637,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp36","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3398144,"packets":6637,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp36","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3397632,"packets":6636,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp36","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3398144,"packets":6637,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp36","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3398144,"packets":6637,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp36","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":6803918,"packets":13325,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp36","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3397992,"packets":6640,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp36","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3398144,"packets":6637,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f701b0d0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6637 Rx 6637 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6637 Rx 6637 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6637 Rx 6637 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6636 Rx 6636 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6636 Rx 6636 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6636 Rx 6636 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6637 Rx 6637 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6637 Rx 6637 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6637 Rx 6637 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6637 Rx 6637 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6637 Rx 6637 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6637 Rx 6637 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6637 Rx 6637 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6637 Rx 6637 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6637 Rx 6637 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6636 Rx 6636 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6636 Rx 6636 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6636 Rx 6636 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6637 Rx 6637 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6637 Rx 6637 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6637 Rx 6637 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6637 Rx 6637 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6637 Rx 6637 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6637 Rx 6637 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6636 Rx 6636 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6636 Rx 6636 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6636 Rx 6636 Loss 0.000 INFO asyncssh:logging.py:92 [conn=175, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=23] Channel closed DEBUG infra2:Logger.py:156 dcb app add dev swp33 dscp-prio 63:7 INFO asyncssh:logging.py:92 [conn=175, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=24] Command: dcb app add dev swp33 dscp-prio 63:7 INFO asyncssh:logging.py:92 [conn=175, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=24] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=175, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=25] Channel closed DEBUG infra2:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=175, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=26] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=175, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=26] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":10307389,"packets":73512,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1871689,"packets":15659,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1887992,"packets":15823,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1896550,"packets":15943,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":4651158,"packets":26087,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp33","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":3269,"packets":15,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp33","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp33","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp33","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp33","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp33","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp33","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7886,"packets":48,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp33","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp33","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":2731,"packets":13,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3398144,"packets":6637,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3398144,"packets":6637,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3397632,"packets":6636,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3398144,"packets":6637,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3398144,"packets":6637,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":6802482,"packets":13316,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3397992,"packets":6640,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3398144,"packets":6637,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":3269,"packets":15,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3398144,"packets":6637,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3398144,"packets":6637,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3397632,"packets":6636,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3398144,"packets":6637,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3398144,"packets":6637,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":6803918,"packets":13325,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3397992,"packets":6640,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3398144,"packets":6637,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp36","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":3269,"packets":15,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp36","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3398144,"packets":6637,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp36","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3398144,"packets":6637,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp36","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3397632,"packets":6636,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp36","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3398144,"packets":6637,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp36","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3398144,"packets":6637,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp36","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":6803918,"packets":13325,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp36","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3397992,"packets":6640,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp36","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3398144,"packets":6637,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=175, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=27] Channel closed DEBUG infra2:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=175, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=28] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=175, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=28] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":10310173,"packets":73532,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1871931,"packets":15660,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1887992,"packets":15823,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1896550,"packets":15943,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":4653700,"packets":26106,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp33","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":3538,"packets":16,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp33","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp33","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp33","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp33","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp33","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp33","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":8444,"packets":50,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp33","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp33","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":3269,"packets":15,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7266304,"packets":14192,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7266304,"packets":14192,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7265792,"packets":14191,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7266304,"packets":14192,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7266304,"packets":14192,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":10671758,"packets":20875,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":11133288,"packets":21748,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7266304,"packets":14192,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":3538,"packets":16,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7266304,"packets":14192,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7266304,"packets":14192,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7265792,"packets":14191,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7266304,"packets":14192,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7266304,"packets":14192,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":10672636,"packets":20882,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":11133288,"packets":21748,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7266304,"packets":14192,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp36","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":3538,"packets":16,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp36","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7266304,"packets":14192,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp36","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7266304,"packets":14192,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp36","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7265280,"packets":14190,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp36","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7266304,"packets":14192,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp36","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7266304,"packets":14192,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp36","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":10672636,"packets":20882,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp36","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":11133288,"packets":21748,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp36","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7266304,"packets":14192,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f6e938e0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7555 Rx 7555 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7555 Rx 7555 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7555 Rx 7555 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7555 Rx 7555 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7555 Rx 7555 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7554 Rx 7554 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7555 Rx 7555 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7555 Rx 7555 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7555 Rx 7555 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7555 Rx 7555 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7555 Rx 7555 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7555 Rx 7555 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7555 Rx 7555 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7555 Rx 7555 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7555 Rx 7555 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7554 Rx 7554 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7554 Rx 7554 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7554 Rx 7554 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7555 Rx 7555 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7555 Rx 7555 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7555 Rx 7555 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7555 Rx 7555 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7555 Rx 7555 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7555 Rx 7555 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7554 Rx 7554 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7554 Rx 7554 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7554 Rx 7554 Loss 0.000 INFO asyncssh:logging.py:92 [conn=175, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=29] Channel closed DEBUG infra2:Logger.py:156 dcb app flush dev swp33 && dcb app flush dev swp34 && dcb app flush dev swp35 && dcb app flush dev swp36 INFO asyncssh:logging.py:92 [conn=175, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=30] Command: dcb app flush dev swp33 && dcb app flush dev swp34 && dcb app flush dev swp35 && dcb app flush dev swp36 INFO asyncssh:logging.py:92 [conn=175, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=30] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=175, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=31] Channel closed DEBUG infra2:Logger.py:156 dcb app add dev swp33 dscp-prio 16:0 33:1 36:2 47:3 1:4 41:5 6:6 38:7 INFO asyncssh:logging.py:92 [conn=175, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=32] Command: dcb app add dev swp33 dscp-prio 16:0 33:1 36:2 47:3 1:4 41:5 6:6 38:7 INFO asyncssh:logging.py:92 [conn=175, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=32] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=175, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=33] Channel closed DEBUG infra2:Logger.py:156 dcb -j app show dev swp33 dscp-prio INFO asyncssh:logging.py:92 [conn=175, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=34] Command: dcb -j app show dev swp33 dscp-prio INFO asyncssh:logging.py:92 [conn=175, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=34] Channel closed DEBUG infra2:Logger.py:156 {"dscp_prio":[[1,4],[6,6],[16,0],[33,1],[36,2],[38,7],[41,5],[47,3]]} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for L2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for L3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for L2_tagged INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for L3_tagged INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=175, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=35] Channel closed DEBUG infra2:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=175, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=36] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=175, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=36] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":10318465,"packets":73602,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1872899,"packets":15664,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1888034,"packets":15824,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1899752,"packets":15972,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":4657780,"packets":26142,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp33","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":4883,"packets":21,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp33","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp33","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp33","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp33","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp33","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp33","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":12002,"packets":72,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp33","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp33","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":4345,"packets":19,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7266304,"packets":14192,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7266304,"packets":14192,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7265792,"packets":14191,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7266304,"packets":14192,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7266304,"packets":14192,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":10674758,"packets":20895,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":11133288,"packets":21748,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7266304,"packets":14192,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":4883,"packets":21,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7266304,"packets":14192,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7266304,"packets":14192,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7265792,"packets":14191,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7266304,"packets":14192,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7266304,"packets":14192,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":10676450,"packets":20908,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":11133288,"packets":21748,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7266304,"packets":14192,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp36","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":4953,"packets":22,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp36","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7266304,"packets":14192,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp36","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7266304,"packets":14192,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp36","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7265280,"packets":14190,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp36","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7266304,"packets":14192,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp36","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7266304,"packets":14192,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp36","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":10676610,"packets":20910,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp36","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":11133288,"packets":21748,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp36","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":7266304,"packets":14192,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=175, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=37] Channel closed DEBUG infra2:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=175, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=38] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=175, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=38] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":10321501,"packets":73624,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1873141,"packets":15665,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1888076,"packets":15825,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1902504,"packets":15992,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":4657780,"packets":26142,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp33","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":5152,"packets":22,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp33","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp33","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp33","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp33","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp33","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp33","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":12560,"packets":74,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp33","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp33","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":4614,"packets":20,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17465344,"packets":34112,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17465344,"packets":34112,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17464832,"packets":34111,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17465344,"packets":34112,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17465344,"packets":34112,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":92264052,"packets":180250,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":21330792,"packets":41665,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17465344,"packets":34112,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":5152,"packets":22,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17465344,"packets":34112,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17465344,"packets":34112,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17464832,"packets":34111,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17465344,"packets":34112,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17465344,"packets":34112,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":92265744,"packets":180263,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":21330792,"packets":41665,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17465344,"packets":34112,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp36","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":5222,"packets":23,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp36","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17465344,"packets":34112,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp36","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17465344,"packets":34112,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp36","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17464320,"packets":34110,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp36","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17465344,"packets":34112,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp36","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17465344,"packets":34112,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp36","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":92265904,"packets":180265,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp36","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":21330792,"packets":41665,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp36","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17465344,"packets":34112,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f701add0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6639 Rx 6639 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6639 Rx 6639 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6639 Rx 6639 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6639 Rx 6639 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6639 Rx 6639 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6639 Rx 6639 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6640 Rx 6640 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6640 Rx 6640 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6640 Rx 6640 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6640 Rx 6640 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6640 Rx 6640 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6640 Rx 6640 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6640 Rx 6640 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6640 Rx 6640 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6640 Rx 6640 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6640 Rx 6640 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6640 Rx 6640 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6640 Rx 6640 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6640 Rx 6640 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6640 Rx 6640 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6640 Rx 6640 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6640 Rx 6640 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6640 Rx 6640 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6640 Rx 6640 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6640 Rx 6640 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6640 Rx 6640 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6640 Rx 6640 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L2_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 59758 Rx 59758 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L2_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 59758 Rx 59758 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L2_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 59758 Rx 59758 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6639 Rx 6639 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6639 Rx 6639 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6639 Rx 6639 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6639 Rx 6639 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6639 Rx 6639 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6639 Rx 6639 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6640 Rx 6640 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6640 Rx 6640 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6640 Rx 6640 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6640 Rx 6640 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6640 Rx 6640 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6640 Rx 6640 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6640 Rx 6640 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6640 Rx 6640 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6640 Rx 6640 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6640 Rx 6640 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6640 Rx 6640 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6640 Rx 6640 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6640 Rx 6640 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6640 Rx 6640 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6640 Rx 6640 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6640 Rx 6640 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6640 Rx 6640 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6640 Rx 6640 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6640 Rx 6640 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6640 Rx 6640 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6640 Rx 6640 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L2 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 59758 Rx 59758 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L2 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 59758 Rx 59758 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L2 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 59758 Rx 59758 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6639 Rx 6639 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6639 Rx 6639 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6639 Rx 6639 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6639 Rx 6639 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6639 Rx 6639 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6639 Rx 6639 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6640 Rx 6640 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6640 Rx 6640 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6640 Rx 6640 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6640 Rx 6640 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6640 Rx 6640 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6640 Rx 6640 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6640 Rx 6640 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6640 Rx 6640 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6640 Rx 6640 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6640 Rx 6640 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6640 Rx 6640 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6640 Rx 6640 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6640 Rx 6640 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6640 Rx 6640 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6640 Rx 6640 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6640 Rx 6640 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6640 Rx 6640 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6640 Rx 6640 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 6640 Rx 6640 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 6640 Rx 6640 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 6640 Rx 6640 Loss 0.000 INFO asyncssh:logging.py:92 [conn=175, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=39] Channel closed DEBUG infra2:Logger.py:156 dcb app add dev swp33 default-prio 2&& dcb app add dev swp34 default-prio 2&& dcb app add dev swp35 default-prio 2&& dcb app add dev swp36 default-prio 2 INFO asyncssh:logging.py:92 [conn=175, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=40] Command: dcb app add dev swp33 default-prio 2&& dcb app add dev swp34 default-prio 2&& dcb app add dev swp35 default-prio 2&& dcb app add dev swp36 default-prio 2 INFO asyncssh:logging.py:92 [conn=175, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=40] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=175, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=41] Channel closed DEBUG infra2:Logger.py:156 dcb -j app show dev swp33 default-prio INFO asyncssh:logging.py:92 [conn=175, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=42] Command: dcb -j app show dev swp33 default-prio INFO asyncssh:logging.py:92 [conn=175, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=42] Channel closed DEBUG infra2:Logger.py:156 {"default_prio":[2]} INFO asyncssh:logging.py:92 [conn=175, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=43] Channel closed DEBUG infra2:Logger.py:156 dcb -j app show dev swp34 default-prio INFO asyncssh:logging.py:92 [conn=175, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=44] Command: dcb -j app show dev swp34 default-prio INFO asyncssh:logging.py:92 [conn=175, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=44] Channel closed DEBUG infra2:Logger.py:156 {"default_prio":[2]} INFO asyncssh:logging.py:92 [conn=175, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=45] Channel closed DEBUG infra2:Logger.py:156 dcb -j app show dev swp35 default-prio INFO asyncssh:logging.py:92 [conn=175, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=46] Command: dcb -j app show dev swp35 default-prio INFO asyncssh:logging.py:92 [conn=175, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=46] Channel closed DEBUG infra2:Logger.py:156 {"default_prio":[2]} INFO asyncssh:logging.py:92 [conn=175, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=47] Channel closed DEBUG infra2:Logger.py:156 dcb -j app show dev swp36 default-prio INFO asyncssh:logging.py:92 [conn=175, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=48] Command: dcb -j app show dev swp36 default-prio INFO asyncssh:logging.py:92 [conn=175, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=48] Channel closed DEBUG infra2:Logger.py:156 {"default_prio":[2]} INFO asyncssh:logging.py:92 [conn=175, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=175, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=50] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=175, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=50] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":10331453,"packets":73716,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1873425,"packets":15667,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1888076,"packets":15825,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1903742,"packets":15999,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":4666210,"packets":26225,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp33","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":5421,"packets":23,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp33","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp33","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp33","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp33","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp33","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp33","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":13118,"packets":76,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp33","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp33","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":4883,"packets":21,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17465344,"packets":34112,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17465344,"packets":34112,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17464832,"packets":34111,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17465344,"packets":34112,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17465344,"packets":34112,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":92264610,"packets":180252,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":21330792,"packets":41665,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17465344,"packets":34112,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":5421,"packets":23,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17465344,"packets":34112,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17465344,"packets":34112,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17464832,"packets":34111,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17465344,"packets":34112,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17465344,"packets":34112,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":92266302,"packets":180265,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":21330792,"packets":41665,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17465344,"packets":34112,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp36","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":5491,"packets":24,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp36","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17465344,"packets":34112,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp36","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17465344,"packets":34112,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp36","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17464320,"packets":34110,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp36","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17465344,"packets":34112,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp36","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17465344,"packets":34112,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp36","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":92266462,"packets":180267,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp36","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":21330792,"packets":41665,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp36","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17465344,"packets":34112,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=175, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=175, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=52] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=175, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=52] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":10334373,"packets":73736,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1873667,"packets":15668,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1888076,"packets":15825,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1903742,"packets":15999,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":4668888,"packets":26244,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp33","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":5690,"packets":24,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp33","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp33","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp33","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp33","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp33","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp33","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":13676,"packets":78,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp33","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp33","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":5152,"packets":22,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":29079040,"packets":56795,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":29079040,"packets":56795,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":29076992,"packets":56791,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":29077504,"packets":56792,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":110368256,"packets":215563,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":103878864,"packets":202937,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":32942952,"packets":64345,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":29077504,"packets":56792,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":5690,"packets":24,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":29079040,"packets":56795,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":29079040,"packets":56795,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":29076992,"packets":56791,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":29077504,"packets":56792,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":110368256,"packets":215563,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":103880556,"packets":202950,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":32942952,"packets":64345,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":29077504,"packets":56792,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp36","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":5760,"packets":25,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp36","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":29077504,"packets":56792,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp36","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":29079040,"packets":56795,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp36","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":29076480,"packets":56790,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp36","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":29077504,"packets":56792,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp36","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":110367232,"packets":215561,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp36","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":103880716,"packets":202952,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp36","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":32942952,"packets":64345,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp36","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":29077504,"packets":56792,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f730ab30>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7560 Rx 7560 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7560 Rx 7560 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7560 Rx 7560 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7560 Rx 7560 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7560 Rx 7560 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7560 Rx 7560 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7560 Rx 7560 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7560 Rx 7560 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7560 Rx 7560 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7560 Rx 7560 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7560 Rx 7560 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7560 Rx 7560 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7560 Rx 7560 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7560 Rx 7560 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7560 Rx 7560 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7561 Rx 7561 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7561 Rx 7561 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7560 Rx 7560 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7561 Rx 7561 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7561 Rx 7561 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7561 Rx 7561 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7561 Rx 7561 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7561 Rx 7561 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7561 Rx 7561 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7561 Rx 7561 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7561 Rx 7561 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7561 Rx 7561 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L2_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 68044 Rx 68044 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L2_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 68044 Rx 68044 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L2_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 68043 Rx 68043 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7560 Rx 7560 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7560 Rx 7560 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7560 Rx 7560 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7560 Rx 7560 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7560 Rx 7560 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7560 Rx 7560 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7560 Rx 7560 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7560 Rx 7560 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7560 Rx 7560 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7560 Rx 7560 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7560 Rx 7560 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7560 Rx 7560 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7560 Rx 7560 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7560 Rx 7560 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7560 Rx 7560 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7561 Rx 7561 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7561 Rx 7561 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7560 Rx 7560 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7561 Rx 7561 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7561 Rx 7561 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7561 Rx 7561 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7561 Rx 7561 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7561 Rx 7561 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7561 Rx 7561 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7561 Rx 7561 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7561 Rx 7561 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7561 Rx 7561 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L2 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 68044 Rx 68044 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L2 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 68044 Rx 68044 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L2 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 68043 Rx 68043 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7560 Rx 7560 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7560 Rx 7560 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7560 Rx 7560 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7560 Rx 7560 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7560 Rx 7560 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7560 Rx 7560 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7560 Rx 7560 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7560 Rx 7560 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7560 Rx 7560 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7560 Rx 7560 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7560 Rx 7560 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7560 Rx 7560 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7560 Rx 7560 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7560 Rx 7560 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7560 Rx 7560 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7561 Rx 7561 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7561 Rx 7561 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7560 Rx 7560 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7561 Rx 7561 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7561 Rx 7561 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7561 Rx 7561 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7561 Rx 7561 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7561 Rx 7561 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7561 Rx 7561 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7561 Rx 7561 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7561 Rx 7561 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7561 Rx 7561 Loss 0.000 INFO asyncssh:logging.py:92 [conn=175, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=53] Channel closed DEBUG infra2:Logger.py:156 dcb app add dev swp33 default-prio 1&& dcb app add dev swp34 default-prio 1&& dcb app add dev swp35 default-prio 1&& dcb app add dev swp36 default-prio 1 INFO asyncssh:logging.py:92 [conn=175, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=54] Command: dcb app add dev swp33 default-prio 1&& dcb app add dev swp34 default-prio 1&& dcb app add dev swp35 default-prio 1&& dcb app add dev swp36 default-prio 1 INFO asyncssh:logging.py:92 [conn=175, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=54] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=175, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=55] Channel closed DEBUG infra2:Logger.py:156 dcb -j app show dev swp33 default-prio INFO asyncssh:logging.py:92 [conn=175, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=56] Command: dcb -j app show dev swp33 default-prio INFO asyncssh:logging.py:92 [conn=175, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=56] Channel closed DEBUG infra2:Logger.py:156 {"default_prio":[1,2]} INFO asyncssh:logging.py:92 [conn=175, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=57] Channel closed DEBUG infra2:Logger.py:156 dcb -j app show dev swp34 default-prio INFO asyncssh:logging.py:92 [conn=175, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=58] Command: dcb -j app show dev swp34 default-prio INFO asyncssh:logging.py:92 [conn=175, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=58] Channel closed DEBUG infra2:Logger.py:156 {"default_prio":[1,2]} INFO asyncssh:logging.py:92 [conn=175, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=59] Channel closed DEBUG infra2:Logger.py:156 dcb -j app show dev swp35 default-prio INFO asyncssh:logging.py:92 [conn=175, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=60] Command: dcb -j app show dev swp35 default-prio INFO asyncssh:logging.py:92 [conn=175, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=60] Channel closed DEBUG infra2:Logger.py:156 {"default_prio":[1,2]} INFO asyncssh:logging.py:92 [conn=175, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=61] Channel closed DEBUG infra2:Logger.py:156 dcb -j app show dev swp36 default-prio INFO asyncssh:logging.py:92 [conn=175, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=62] Command: dcb -j app show dev swp36 default-prio INFO asyncssh:logging.py:92 [conn=175, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=62] Channel closed DEBUG infra2:Logger.py:156 {"default_prio":[1,2]} INFO asyncssh:logging.py:92 [conn=175, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=63] Channel closed DEBUG infra2:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=175, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=64] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=175, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=64] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":10344485,"packets":73828,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1873909,"packets":15669,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1893862,"packets":15882,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1903784,"packets":16000,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":4672930,"packets":26277,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp33","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":5959,"packets":25,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp33","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp33","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp33","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp33","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp33","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp33","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":14234,"packets":80,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp33","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp33","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":5421,"packets":23,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":29079040,"packets":56795,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":29079040,"packets":56795,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":29076992,"packets":56791,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":29077504,"packets":56792,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":110368256,"packets":215563,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":103879422,"packets":202939,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":32942952,"packets":64345,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":29077504,"packets":56792,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":5959,"packets":25,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":29079040,"packets":56795,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":29079040,"packets":56795,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":29076992,"packets":56791,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":29077504,"packets":56792,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":110368256,"packets":215563,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":103881114,"packets":202952,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":32942952,"packets":64345,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":29077504,"packets":56792,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp36","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":6029,"packets":26,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp36","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":29077504,"packets":56792,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp36","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":29079040,"packets":56795,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp36","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":29076480,"packets":56790,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp36","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":29077504,"packets":56792,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp36","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":110367232,"packets":215561,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp36","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":103881274,"packets":202954,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp36","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":32942952,"packets":64345,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp36","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":29077504,"packets":56792,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=175, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=65] Channel closed DEBUG infra2:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=175, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=66] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=175, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=66] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":10347245,"packets":73846,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1874151,"packets":15670,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1896380,"packets":15899,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1903784,"packets":16000,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":4672930,"packets":26277,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp33","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":6228,"packets":26,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp33","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp33","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp33","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp33","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp33","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp33","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":14792,"packets":82,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp33","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp33","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":5690,"packets":24,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":40695808,"packets":79484,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":40695808,"packets":79484,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":40693760,"packets":79480,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":40694272,"packets":79481,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":203298816,"packets":397068,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":115496748,"packets":225630,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":44558184,"packets":87031,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":40694272,"packets":79481,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":6228,"packets":26,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":40695808,"packets":79484,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":40695808,"packets":79484,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":40693760,"packets":79480,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":40694272,"packets":79481,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":203298816,"packets":397068,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":115498440,"packets":225643,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":44558184,"packets":87031,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":40694272,"packets":79481,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp36","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":6298,"packets":27,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp36","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":40694272,"packets":79481,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp36","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":40695808,"packets":79484,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp36","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":40691712,"packets":79476,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp36","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":40694272,"packets":79481,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp36","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":203296768,"packets":397064,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp36","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":115498600,"packets":225645,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp36","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":44558184,"packets":87031,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp36","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":40694272,"packets":79481,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f7454070>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7562 Rx 7562 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7562 Rx 7562 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7562 Rx 7562 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7562 Rx 7562 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7562 Rx 7562 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7562 Rx 7562 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7563 Rx 7563 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7563 Rx 7563 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7562 Rx 7562 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7563 Rx 7563 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7563 Rx 7563 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7563 Rx 7563 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7563 Rx 7563 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7563 Rx 7563 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7563 Rx 7563 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7563 Rx 7563 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7563 Rx 7563 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7563 Rx 7563 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7563 Rx 7563 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7563 Rx 7563 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7563 Rx 7563 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7563 Rx 7563 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7563 Rx 7563 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7563 Rx 7563 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7563 Rx 7563 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7563 Rx 7563 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7563 Rx 7563 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L2_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 68065 Rx 68065 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L2_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 68065 Rx 68065 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L2_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 68064 Rx 68064 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7562 Rx 7562 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7562 Rx 7562 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7562 Rx 7562 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7562 Rx 7562 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7562 Rx 7562 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7562 Rx 7562 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7563 Rx 7563 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7563 Rx 7563 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7562 Rx 7562 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7563 Rx 7563 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7563 Rx 7563 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7563 Rx 7563 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7563 Rx 7563 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7563 Rx 7563 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7563 Rx 7563 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7563 Rx 7563 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7563 Rx 7563 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7563 Rx 7563 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7563 Rx 7563 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7563 Rx 7563 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7563 Rx 7563 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7563 Rx 7563 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7563 Rx 7563 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7563 Rx 7563 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7563 Rx 7563 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7563 Rx 7563 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7563 Rx 7563 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L2 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 68065 Rx 68065 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L2 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 68065 Rx 68065 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L2 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 68064 Rx 68064 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7562 Rx 7562 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7562 Rx 7562 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7562 Rx 7562 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7562 Rx 7562 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7562 Rx 7562 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7562 Rx 7562 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7563 Rx 7563 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7563 Rx 7563 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7562 Rx 7562 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7563 Rx 7563 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7563 Rx 7563 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7563 Rx 7563 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7563 Rx 7563 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7563 Rx 7563 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7563 Rx 7563 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7563 Rx 7563 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7563 Rx 7563 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7563 Rx 7563 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7563 Rx 7563 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7563 Rx 7563 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7563 Rx 7563 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7563 Rx 7563 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7563 Rx 7563 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7563 Rx 7563 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7563 Rx 7563 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7563 Rx 7563 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7563 Rx 7563 Loss 0.000 INFO asyncssh:logging.py:92 [conn=175, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=67] Channel closed DEBUG infra2:Logger.py:156 dcb app add dev swp33 default-prio 3&& dcb app add dev swp34 default-prio 3&& dcb app add dev swp35 default-prio 3&& dcb app add dev swp36 default-prio 3 INFO asyncssh:logging.py:92 [conn=175, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=68] Command: dcb app add dev swp33 default-prio 3&& dcb app add dev swp34 default-prio 3&& dcb app add dev swp35 default-prio 3&& dcb app add dev swp36 default-prio 3 INFO asyncssh:logging.py:92 [conn=175, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=68] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=175, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=69] Channel closed DEBUG infra2:Logger.py:156 dcb -j app show dev swp33 default-prio INFO asyncssh:logging.py:92 [conn=175, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=70] Command: dcb -j app show dev swp33 default-prio INFO asyncssh:logging.py:92 [conn=175, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=70] Channel closed DEBUG infra2:Logger.py:156 {"default_prio":[1,2,3]} INFO asyncssh:logging.py:92 [conn=175, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=71] Channel closed DEBUG infra2:Logger.py:156 dcb -j app show dev swp34 default-prio INFO asyncssh:logging.py:92 [conn=175, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=72] Command: dcb -j app show dev swp34 default-prio INFO asyncssh:logging.py:92 [conn=175, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=72] Channel closed DEBUG infra2:Logger.py:156 {"default_prio":[1,2,3]} INFO asyncssh:logging.py:92 [conn=175, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=73] Channel closed DEBUG infra2:Logger.py:156 dcb -j app show dev swp35 default-prio INFO asyncssh:logging.py:92 [conn=175, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=74] Command: dcb -j app show dev swp35 default-prio INFO asyncssh:logging.py:92 [conn=175, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=74] Channel closed DEBUG infra2:Logger.py:156 {"default_prio":[1,2,3]} INFO asyncssh:logging.py:92 [conn=175, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=75] Channel closed DEBUG infra2:Logger.py:156 dcb -j app show dev swp36 default-prio INFO asyncssh:logging.py:92 [conn=175, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=76] Command: dcb -j app show dev swp36 default-prio INFO asyncssh:logging.py:92 [conn=175, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=76] Channel closed DEBUG infra2:Logger.py:156 {"default_prio":[1,2,3]} INFO asyncssh:logging.py:92 [conn=175, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=77] Channel closed DEBUG infra2:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=175, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=78] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=175, chan=78] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=78] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":10357445,"packets":73938,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1874393,"packets":15671,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1906080,"packets":15987,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1903784,"packets":16000,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":4673188,"packets":26280,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp33","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":6497,"packets":27,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp33","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp33","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp33","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp33","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp33","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp33","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":15350,"packets":84,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp33","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp33","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":5959,"packets":25,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":40695808,"packets":79484,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":40695808,"packets":79484,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":40693760,"packets":79480,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":40694272,"packets":79481,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":203298816,"packets":397068,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":115497306,"packets":225632,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":44558184,"packets":87031,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":40694272,"packets":79481,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":6497,"packets":27,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":40695808,"packets":79484,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":40695808,"packets":79484,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":40693760,"packets":79480,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":40694272,"packets":79481,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":203298816,"packets":397068,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":115498998,"packets":225645,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":44558184,"packets":87031,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":40694272,"packets":79481,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp36","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":6567,"packets":28,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp36","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":40694272,"packets":79481,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp36","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":40695808,"packets":79484,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp36","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":40691712,"packets":79476,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp36","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":40694272,"packets":79481,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp36","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":203296768,"packets":397064,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp36","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":115499158,"packets":225647,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp36","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":44558184,"packets":87031,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp36","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":40694272,"packets":79481,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=175, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=79] Channel closed DEBUG infra2:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=175, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=80] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=175, chan=80] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=80] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":10360347,"packets":73957,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1874635,"packets":15672,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1908698,"packets":16004,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1903784,"packets":16000,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":4673230,"packets":26281,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp33","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":6766,"packets":28,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp33","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp33","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp33","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp33","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp33","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp33","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":15908,"packets":86,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp33","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp33","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":6228,"packets":26,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":133564928,"packets":260869,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52304896,"packets":102158,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52302848,"packets":102154,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52303360,"packets":102155,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":214907904,"packets":419742,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":127106952,"packets":248308,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":56165736,"packets":109702,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52303360,"packets":102155,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":6766,"packets":28,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":133564928,"packets":260869,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52304896,"packets":102158,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52302848,"packets":102154,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52303360,"packets":102155,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":214907904,"packets":419742,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":127108644,"packets":248321,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":56165736,"packets":109702,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52303360,"packets":102155,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp36","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":6836,"packets":29,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp36","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":133562368,"packets":260864,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp36","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52304896,"packets":102158,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp36","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52299264,"packets":102147,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp36","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52303360,"packets":102155,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp36","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":214905856,"packets":419738,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp36","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":127108804,"packets":248323,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp36","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":56165736,"packets":109702,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp36","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52303360,"packets":102155,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f702e590>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7557 Rx 7557 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7557 Rx 7557 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7557 Rx 7557 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7557 Rx 7557 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7557 Rx 7557 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7557 Rx 7557 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7558 Rx 7558 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7558 Rx 7558 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7557 Rx 7557 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7558 Rx 7558 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7558 Rx 7558 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7558 Rx 7558 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7558 Rx 7558 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7558 Rx 7558 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7558 Rx 7558 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7558 Rx 7558 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7558 Rx 7558 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7558 Rx 7558 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7558 Rx 7558 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7558 Rx 7558 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7558 Rx 7558 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7558 Rx 7558 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7558 Rx 7558 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7558 Rx 7558 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7558 Rx 7558 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7558 Rx 7558 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7558 Rx 7558 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L2_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 68020 Rx 68020 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L2_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 68020 Rx 68020 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L2_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 68019 Rx 68019 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7557 Rx 7557 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7557 Rx 7557 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7557 Rx 7557 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7557 Rx 7557 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7557 Rx 7557 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7557 Rx 7557 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7558 Rx 7558 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7558 Rx 7558 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7557 Rx 7557 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7558 Rx 7558 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7558 Rx 7558 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7558 Rx 7558 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7558 Rx 7558 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7558 Rx 7558 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7558 Rx 7558 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7558 Rx 7558 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7558 Rx 7558 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7558 Rx 7558 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7558 Rx 7558 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7558 Rx 7558 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7558 Rx 7558 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7558 Rx 7558 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7558 Rx 7558 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7558 Rx 7558 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7558 Rx 7558 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7558 Rx 7558 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7558 Rx 7558 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L2 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 68020 Rx 68020 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L2 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 68020 Rx 68020 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L2 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 68019 Rx 68019 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7557 Rx 7557 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7557 Rx 7557 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7557 Rx 7557 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7557 Rx 7557 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7557 Rx 7557 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7557 Rx 7557 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7558 Rx 7558 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7558 Rx 7558 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7557 Rx 7557 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7558 Rx 7558 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7558 Rx 7558 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7558 Rx 7558 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7558 Rx 7558 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7558 Rx 7558 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7558 Rx 7558 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7558 Rx 7558 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7558 Rx 7558 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7558 Rx 7558 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7558 Rx 7558 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7558 Rx 7558 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7558 Rx 7558 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7558 Rx 7558 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7558 Rx 7558 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7558 Rx 7558 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7558 Rx 7558 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7558 Rx 7558 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7558 Rx 7558 Loss 0.000 INFO asyncssh:logging.py:92 [conn=175, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=81] Channel closed DEBUG infra2:Logger.py:156 dcb app flush dev swp33 && dcb app flush dev swp34 && dcb app flush dev swp35 && dcb app flush dev swp36 INFO asyncssh:logging.py:92 [conn=175, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=82] Command: dcb app flush dev swp33 && dcb app flush dev swp34 && dcb app flush dev swp35 && dcb app flush dev swp36 INFO asyncssh:logging.py:92 [conn=175, chan=82] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=82] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=175, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=83] Channel closed DEBUG infra2:Logger.py:156 dcb -j app show dev swp33 INFO asyncssh:logging.py:92 [conn=175, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=84] Command: dcb -j app show dev swp33 INFO asyncssh:logging.py:92 [conn=175, chan=84] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=84] Channel closed DEBUG infra2:Logger.py:156 {} INFO asyncssh:logging.py:92 [conn=175, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=85] Channel closed DEBUG infra2:Logger.py:156 dcb -j app show dev swp34 INFO asyncssh:logging.py:92 [conn=175, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=86] Command: dcb -j app show dev swp34 INFO asyncssh:logging.py:92 [conn=175, chan=86] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=86] Channel closed DEBUG infra2:Logger.py:156 {} INFO asyncssh:logging.py:92 [conn=175, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=87] Channel closed DEBUG infra2:Logger.py:156 dcb -j app show dev swp35 INFO asyncssh:logging.py:92 [conn=175, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=88] Command: dcb -j app show dev swp35 INFO asyncssh:logging.py:92 [conn=175, chan=88] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=88] Channel closed DEBUG infra2:Logger.py:156 {} INFO asyncssh:logging.py:92 [conn=175, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=89] Channel closed DEBUG infra2:Logger.py:156 dcb -j app show dev swp36 INFO asyncssh:logging.py:92 [conn=175, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=90] Command: dcb -j app show dev swp36 INFO asyncssh:logging.py:92 [conn=175, chan=90] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=90] Channel closed DEBUG infra2:Logger.py:156 {} INFO asyncssh:logging.py:92 [conn=175, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=91] Channel closed DEBUG infra2:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=175, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=92] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=175, chan=92] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=92] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":10370671,"packets":74047,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1874877,"packets":15673,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1918438,"packets":16092,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1904126,"packets":16001,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":4673230,"packets":26281,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp33","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":7035,"packets":29,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp33","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp33","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp33","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp33","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp33","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp33","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":16466,"packets":88,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp33","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp33","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":6497,"packets":27,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":133564928,"packets":260869,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52304896,"packets":102158,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52302848,"packets":102154,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52303360,"packets":102155,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":214907904,"packets":419742,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":127107510,"packets":248310,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":56165736,"packets":109702,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52303360,"packets":102155,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":7035,"packets":29,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":133564928,"packets":260869,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52304896,"packets":102158,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52302848,"packets":102154,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52303360,"packets":102155,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":214907904,"packets":419742,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":127109202,"packets":248323,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":56165736,"packets":109702,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52303360,"packets":102155,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp36","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":7105,"packets":30,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp36","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":133562368,"packets":260864,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp36","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52304896,"packets":102158,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp36","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52299264,"packets":102147,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp36","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52303360,"packets":102155,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp36","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":214905856,"packets":419738,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp36","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":127109362,"packets":248325,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp36","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":56165736,"packets":109702,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp36","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52303360,"packets":102155,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=175, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=93] Channel closed DEBUG infra2:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=175, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=94] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=175, chan=94] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=94] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":10373649,"packets":74068,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1875119,"packets":15674,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1921090,"packets":16110,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1904168,"packets":16002,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":4673272,"packets":26282,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp33","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":7304,"packets":30,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp33","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp33","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp33","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp33","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp33","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp33","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":17024,"packets":90,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp33","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp33","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":6766,"packets":28,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":168366592,"packets":328841,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52304896,"packets":102158,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52302848,"packets":102154,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":87105024,"packets":170127,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":214907904,"packets":419742,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":231513060,"packets":452228,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":56165736,"packets":109702,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52303360,"packets":102155,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":7304,"packets":30,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":170880512,"packets":333751,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52304896,"packets":102158,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52302848,"packets":102154,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":89618944,"packets":175037,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":214907904,"packets":419742,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":239056512,"packets":466971,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":56165736,"packets":109702,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52303360,"packets":102155,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp36","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":7374,"packets":31,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp36","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":170877952,"packets":333746,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp36","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52304896,"packets":102158,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp36","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52299264,"packets":102147,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp36","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":89618944,"packets":175037,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp36","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":214905856,"packets":419738,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp36","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":239056672,"packets":466973,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp36","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":56165736,"packets":109702,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp36","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":52303360,"packets":102155,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f7345b70>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7552 Rx 7552 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7552 Rx 7552 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7552 Rx 7552 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7552 Rx 7552 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7552 Rx 7552 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7552 Rx 7552 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7552 Rx 7552 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7552 Rx 7552 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7552 Rx 7552 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7552 Rx 7552 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7552 Rx 7552 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7552 Rx 7552 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7552 Rx 7552 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7552 Rx 7552 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7552 Rx 7552 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7553 Rx 7553 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7553 Rx 7553 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7553 Rx 7553 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7553 Rx 7553 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7553 Rx 7553 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7553 Rx 7553 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7553 Rx 7553 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7553 Rx 7553 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7553 Rx 7553 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7553 Rx 7553 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7553 Rx 7553 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7553 Rx 7553 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L2_tagged SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 67972 Rx 67972 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L2_tagged SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 67972 Rx 67972 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L2_tagged SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 67972 Rx 67972 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7552 Rx 7552 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7552 Rx 7552 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7552 Rx 7552 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7552 Rx 7552 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7552 Rx 7552 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7552 Rx 7552 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7552 Rx 7552 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7552 Rx 7552 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7552 Rx 7552 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7552 Rx 7552 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7552 Rx 7552 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7552 Rx 7552 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7552 Rx 7552 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7552 Rx 7552 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7552 Rx 7552 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7553 Rx 7553 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7553 Rx 7553 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7553 Rx 7553 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7553 Rx 7553 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7553 Rx 7553 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7553 Rx 7553 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7553 Rx 7553 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7553 Rx 7553 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7553 Rx 7553 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L3 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7553 Rx 7553 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L3 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7553 Rx 7553 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L3 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7553 Rx 7553 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI L2 SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 67972 Rx 67972 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI L2 SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 67972 Rx 67972 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI L2 SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 67972 Rx 67972 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7552 Rx 7552 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7552 Rx 7552 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7552 Rx 7552 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7552 Rx 7552 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7552 Rx 7552 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7552 Rx 7552 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7552 Rx 7552 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7552 Rx 7552 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7552 Rx 7552 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7552 Rx 7552 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7552 Rx 7552 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7552 Rx 7552 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7552 Rx 7552 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7552 Rx 7552 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7552 Rx 7552 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7553 Rx 7553 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7553 Rx 7553 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7553 Rx 7553 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7553 Rx 7553 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7553 Rx 7553 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7553 Rx 7553 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7553 Rx 7553 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7553 Rx 7553 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7553 Rx 7553 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 7553 Rx 7553 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic SIP-DIP 00:11:01:00:00:01-00:13:01:00:00:01 Tx 7553 Rx 7553 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic SIP-DIP 00:11:01:00:00:01-00:14:01:00:00:01 Tx 7553 Rx 7553 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_qos_default_prio from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_default_prio.py INFO asyncssh:logging.py:92 [conn=175, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=95] Channel closed DEBUG infra2:Logger.py:156 dcb app flush dev swp33 && dcb app flush dev swp34 && dcb app flush dev swp35 && dcb app flush dev swp36 INFO asyncssh:logging.py:92 [conn=175, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=96] Command: dcb app flush dev swp33 && dcb app flush dev swp34 && dcb app flush dev swp35 && dcb app flush dev swp36 INFO asyncssh:logging.py:92 [conn=175, chan=96] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=96] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=175, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=97] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=175, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=98] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=98] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=98] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 02:30:17 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=175, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=99] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=175, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=100] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=175, chan=100] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=100] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":174,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=175, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=101] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=175, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=102] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=175, chan=102] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=102] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=175, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=103] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=175, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=104] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=104] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=104] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 02:30:18 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=175, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=105] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=175, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=106] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=175, chan=106] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=106] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp33","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp33","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp33","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp33","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp33","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp33","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp33","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp33","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp33","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"ets","handle":"10:","dev":"swp35","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp35","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp35","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp35","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp35","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp35","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp35","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp35","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp35","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"ets","handle":"10:","dev":"swp36","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp36","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp36","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp36","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp36","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp36","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp36","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp36","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp36","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}}] INFO asyncssh:logging.py:92 [conn=175, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=107] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=175, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=108] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=175, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=175, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=108] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=175, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=109] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=175, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=110] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=175, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=175, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=110] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=175, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=111] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=175, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=112] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=175, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=175, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=112] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=175, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=113] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=175, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=114] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=175, chan=114] Received exit status 2 INFO asyncssh:logging.py:92 [conn=175, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=114] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=175, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=115] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=175, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=116] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=175, chan=116] Received exit status 2 INFO asyncssh:logging.py:92 [conn=175, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=116] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=175, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=117] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=175, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=118] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=175, chan=118] Received exit status 2 INFO asyncssh:logging.py:92 [conn=175, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=118] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=175, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=119] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=175, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=120] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=175, chan=120] Received exit status 2 INFO asyncssh:logging.py:92 [conn=175, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=120] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=175, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=121] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=175, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=122] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=175, chan=122] Received exit status 2 INFO asyncssh:logging.py:92 [conn=175, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=122] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=175, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=123] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=175, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=124] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=175, chan=124] Received exit status 2 INFO asyncssh:logging.py:92 [conn=175, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=124] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=175, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=125] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=175, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=126] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=175, chan=126] Received exit status 2 INFO asyncssh:logging.py:92 [conn=175, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=126] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=175, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=127] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=175, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=128] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=175, chan=128] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=128] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=175, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=129] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 tbf INFO asyncssh:logging.py:92 [conn=175, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=130] Command: tc qdisc delete dev swp33 tbf INFO asyncssh:logging.py:92 [conn=175, chan=130] Received exit status 1 INFO asyncssh:logging.py:92 [conn=175, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=130] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=175, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=131] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 tbf INFO asyncssh:logging.py:92 [conn=175, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=132] Command: tc qdisc delete dev swp33 tbf INFO asyncssh:logging.py:92 [conn=175, chan=132] Received exit status 1 INFO asyncssh:logging.py:92 [conn=175, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=132] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=175, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=133] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 tbf INFO asyncssh:logging.py:92 [conn=175, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=134] Command: tc qdisc delete dev swp33 tbf INFO asyncssh:logging.py:92 [conn=175, chan=134] Received exit status 1 INFO asyncssh:logging.py:92 [conn=175, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=134] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=175, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=135] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=135] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=135] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=135] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 tbf INFO asyncssh:logging.py:92 [conn=175, chan=136] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=136] Command: tc qdisc delete dev swp33 tbf INFO asyncssh:logging.py:92 [conn=175, chan=136] Received exit status 1 INFO asyncssh:logging.py:92 [conn=175, chan=136] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=136] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=175, chan=137] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=137] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=137] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=137] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=137] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 tbf INFO asyncssh:logging.py:92 [conn=175, chan=138] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=138] Command: tc qdisc delete dev swp33 tbf INFO asyncssh:logging.py:92 [conn=175, chan=138] Received exit status 1 INFO asyncssh:logging.py:92 [conn=175, chan=138] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=138] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=175, chan=139] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=139] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=139] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=139] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=139] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 tbf INFO asyncssh:logging.py:92 [conn=175, chan=140] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=140] Command: tc qdisc delete dev swp33 tbf INFO asyncssh:logging.py:92 [conn=175, chan=140] Received exit status 1 INFO asyncssh:logging.py:92 [conn=175, chan=140] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=140] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=175, chan=141] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=141] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=141] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=141] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=141] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 tbf INFO asyncssh:logging.py:92 [conn=175, chan=142] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=142] Command: tc qdisc delete dev swp33 tbf INFO asyncssh:logging.py:92 [conn=175, chan=142] Received exit status 1 INFO asyncssh:logging.py:92 [conn=175, chan=142] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=142] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=175, chan=143] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=143] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=143] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=143] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=143] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 tbf INFO asyncssh:logging.py:92 [conn=175, chan=144] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=144] Command: tc qdisc delete dev swp33 tbf INFO asyncssh:logging.py:92 [conn=175, chan=144] Received exit status 1 INFO asyncssh:logging.py:92 [conn=175, chan=144] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=144] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=175, chan=145] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=145] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=145] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=145] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=145] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=175, chan=146] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=146] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=175, chan=146] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=146] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=146] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=175, chan=147] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=147] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=147] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=147] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=147] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=175, chan=148] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=148] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=175, chan=148] Received exit status 1 INFO asyncssh:logging.py:92 [conn=175, chan=148] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=148] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=175, chan=149] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=149] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=149] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=149] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=149] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=175, chan=150] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=150] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=175, chan=150] Received exit status 1 INFO asyncssh:logging.py:92 [conn=175, chan=150] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=150] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=175, chan=151] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=151] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=151] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=151] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=151] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=175, chan=152] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=152] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=175, chan=152] Received exit status 1 INFO asyncssh:logging.py:92 [conn=175, chan=152] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=152] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=175, chan=153] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=153] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=153] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=153] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=153] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=175, chan=154] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=154] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=175, chan=154] Received exit status 1 INFO asyncssh:logging.py:92 [conn=175, chan=154] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=154] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=175, chan=155] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=155] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=155] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=155] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=155] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=175, chan=156] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=156] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=175, chan=156] Received exit status 1 INFO asyncssh:logging.py:92 [conn=175, chan=156] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=156] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=175, chan=157] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=157] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=157] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=157] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=157] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=175, chan=158] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=158] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=175, chan=158] Received exit status 1 INFO asyncssh:logging.py:92 [conn=175, chan=158] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=158] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=175, chan=159] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=159] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=159] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=159] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=159] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=175, chan=160] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=160] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=175, chan=160] Received exit status 1 INFO asyncssh:logging.py:92 [conn=175, chan=160] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=160] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=175, chan=161] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=161] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=161] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=161] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=161] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=175, chan=162] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=162] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=175, chan=162] Received exit status 1 INFO asyncssh:logging.py:92 [conn=175, chan=162] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=162] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=175, chan=163] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=163] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=163] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=163] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=163] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=175, chan=164] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=164] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=175, chan=164] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=164] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=164] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=175, chan=165] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=165] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=165] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=165] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=165] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=175, chan=166] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=166] Command: tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=175, chan=166] Received exit status 1 INFO asyncssh:logging.py:92 [conn=175, chan=166] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=166] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=175, chan=167] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=167] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=167] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=167] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=167] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=175, chan=168] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=168] Command: tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=175, chan=168] Received exit status 1 INFO asyncssh:logging.py:92 [conn=175, chan=168] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=168] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=175, chan=169] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=169] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=169] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=169] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=169] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=175, chan=170] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=170] Command: tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=175, chan=170] Received exit status 1 INFO asyncssh:logging.py:92 [conn=175, chan=170] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=170] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=175, chan=171] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=171] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=171] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=171] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=171] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=175, chan=172] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=172] Command: tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=175, chan=172] Received exit status 1 INFO asyncssh:logging.py:92 [conn=175, chan=172] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=172] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=175, chan=173] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=173] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=173] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=173] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=173] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=175, chan=174] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=174] Command: tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=175, chan=174] Received exit status 1 INFO asyncssh:logging.py:92 [conn=175, chan=174] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=174] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=175, chan=175] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=175] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=175] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=175] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=175] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=175, chan=176] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=176] Command: tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=175, chan=176] Received exit status 1 INFO asyncssh:logging.py:92 [conn=175, chan=176] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=176] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=175, chan=177] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=177] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=177] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=177] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=177] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=175, chan=178] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=178] Command: tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=175, chan=178] Received exit status 1 INFO asyncssh:logging.py:92 [conn=175, chan=178] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=178] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=175, chan=179] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=179] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=179] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=179] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=179] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=175, chan=180] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=180] Command: tc qdisc delete dev swp35 tbf INFO asyncssh:logging.py:92 [conn=175, chan=180] Received exit status 1 INFO asyncssh:logging.py:92 [conn=175, chan=180] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=180] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=175, chan=181] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=181] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=181] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=181] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=181] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=175, chan=182] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=182] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=175, chan=182] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=182] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=182] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=175, chan=183] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=183] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=183] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=183] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=183] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 tbf INFO asyncssh:logging.py:92 [conn=175, chan=184] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=184] Command: tc qdisc delete dev swp36 tbf INFO asyncssh:logging.py:92 [conn=175, chan=184] Received exit status 1 INFO asyncssh:logging.py:92 [conn=175, chan=184] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=184] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=175, chan=185] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=185] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=185] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=185] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=185] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 tbf INFO asyncssh:logging.py:92 [conn=175, chan=186] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=186] Command: tc qdisc delete dev swp36 tbf INFO asyncssh:logging.py:92 [conn=175, chan=186] Received exit status 1 INFO asyncssh:logging.py:92 [conn=175, chan=186] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=186] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=175, chan=187] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=187] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=187] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=187] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=187] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 tbf INFO asyncssh:logging.py:92 [conn=175, chan=188] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=188] Command: tc qdisc delete dev swp36 tbf INFO asyncssh:logging.py:92 [conn=175, chan=188] Received exit status 1 INFO asyncssh:logging.py:92 [conn=175, chan=188] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=188] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=175, chan=189] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=189] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=189] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=189] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=189] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 tbf INFO asyncssh:logging.py:92 [conn=175, chan=190] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=190] Command: tc qdisc delete dev swp36 tbf INFO asyncssh:logging.py:92 [conn=175, chan=190] Received exit status 1 INFO asyncssh:logging.py:92 [conn=175, chan=190] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=190] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=175, chan=191] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=191] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=191] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=191] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=191] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 tbf INFO asyncssh:logging.py:92 [conn=175, chan=192] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=192] Command: tc qdisc delete dev swp36 tbf INFO asyncssh:logging.py:92 [conn=175, chan=192] Received exit status 1 INFO asyncssh:logging.py:92 [conn=175, chan=192] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=192] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=175, chan=193] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=193] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=193] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=193] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=193] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 tbf INFO asyncssh:logging.py:92 [conn=175, chan=194] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=194] Command: tc qdisc delete dev swp36 tbf INFO asyncssh:logging.py:92 [conn=175, chan=194] Received exit status 1 INFO asyncssh:logging.py:92 [conn=175, chan=194] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=194] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=175, chan=195] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=195] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=195] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=195] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=195] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 tbf INFO asyncssh:logging.py:92 [conn=175, chan=196] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=196] Command: tc qdisc delete dev swp36 tbf INFO asyncssh:logging.py:92 [conn=175, chan=196] Received exit status 1 INFO asyncssh:logging.py:92 [conn=175, chan=196] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=196] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=175, chan=197] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=197] Command: date INFO asyncssh:logging.py:92 [conn=175, chan=197] Received exit status 0 INFO asyncssh:logging.py:92 [conn=175, chan=197] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=197] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 tbf INFO asyncssh:logging.py:92 [conn=175, chan=198] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=175, chan=198] Command: tc qdisc delete dev swp36 tbf INFO asyncssh:logging.py:92 [conn=175, chan=198] Received exit status 1 INFO asyncssh:logging.py:92 [conn=175, chan=198] Received channel close INFO asyncssh:logging.py:92 [conn=175, chan=198] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] | |||
| Passed | functional/qos/test_qos_dscp_remarking.py::test_qos_dscp_remarking | 307.46 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-10533' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_qos_dscp_remarking">Starting testcase:test_qos_dscp_remarking from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_dscp_remarking.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=175, chan=199] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=176] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=176] Local address: 172.17.0.3, port 41938 INFO asyncssh:logging.py:92 [conn=176] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=176] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=176] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=176, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=0] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 02:30:20 UTC 2023 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=176, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=1] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=176, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=2] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=2] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 02:30:20 UTC 2023 INFO asyncssh:logging.py:92 [conn=176, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link add name br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=176, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=4] Command: ip link add name br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=176, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=176, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=176, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=176, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=176, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=7] Channel closed DEBUG infra2:Logger.py:156 dcb app add dev swp33 dscp-prio 49:0 6:1 28:2 53:3 50:4 57:5 46:6 10:7&& dcb app add dev swp34 dscp-prio 29:0 8:1 51:2 46:3 24:4 26:5 54:6 37:7 INFO asyncssh:logging.py:92 [conn=176, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=8] Command: dcb app add dev swp33 dscp-prio 49:0 6:1 28:2 53:3 50:4 57:5 46:6 10:7&& dcb app add dev swp34 dscp-prio 29:0 8:1 51:2 46:3 24:4 26:5 54:6 37:7 INFO asyncssh:logging.py:92 [conn=176, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=176, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=9] Channel closed DEBUG infra2:Logger.py:156 dcb -j app show dev swp33 dscp-prio INFO asyncssh:logging.py:92 [conn=176, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=10] Command: dcb -j app show dev swp33 dscp-prio INFO asyncssh:logging.py:92 [conn=176, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=10] Channel closed DEBUG infra2:Logger.py:156 {"dscp_prio":[[6,1],[10,7],[28,2],[46,6],[49,0],[50,4],[53,3],[57,5]]} INFO asyncssh:logging.py:92 [conn=176, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=11] Channel closed DEBUG infra2:Logger.py:156 dcb -j app show dev swp34 dscp-prio INFO asyncssh:logging.py:92 [conn=176, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=12] Command: dcb -j app show dev swp34 dscp-prio INFO asyncssh:logging.py:92 [conn=176, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=12] Channel closed DEBUG infra2:Logger.py:156 {"dscp_prio":[[8,1],[24,4],[26,5],[29,0],[37,7],[46,3],[51,2],[54,6]]} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.2', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for dscp [49,6,28,53,50,57,46,10] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:5_1.1.1.1/24 to 10.36.118.199:2:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for dscp [29,8,51,46,24,26,54,37] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ipv4 traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint 10.36.118.199:2:6_1.1.1.2/24 to 10.36.118.199:2:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f7061e70>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI dscp [49 6 28 53 50 57 46 10] SIP-DIP 1.1.1.1-1.1.1.2 Tx 73 Rx 73 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI dscp [49 6 28 53 50 57 46 10] SIP-DIP 1.1.1.1-1.1.1.2 Tx 73 Rx 73 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI dscp [49 6 28 53 50 57 46 10] SIP-DIP 1.1.1.1-1.1.1.2 Tx 73 Rx 73 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI dscp [49 6 28 53 50 57 46 10] SIP-DIP 1.1.1.1-1.1.1.2 Tx 73 Rx 73 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI dscp [49 6 28 53 50 57 46 10] SIP-DIP 1.1.1.1-1.1.1.2 Tx 73 Rx 73 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI dscp [49 6 28 53 50 57 46 10] SIP-DIP 1.1.1.1-1.1.1.2 Tx 73 Rx 73 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI dscp [49 6 28 53 50 57 46 10] SIP-DIP 1.1.1.1-1.1.1.2 Tx 73 Rx 73 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI dscp [49 6 28 53 50 57 46 10] SIP-DIP 1.1.1.1-1.1.1.2 Tx 73 Rx 73 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI dscp [29 8 51 46 24 26 54 37] SIP-DIP 1.1.1.2-1.1.1.1 Tx 73 Rx 73 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI dscp [29 8 51 46 24 26 54 37] SIP-DIP 1.1.1.2-1.1.1.1 Tx 73 Rx 73 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI dscp [29 8 51 46 24 26 54 37] SIP-DIP 1.1.1.2-1.1.1.1 Tx 73 Rx 73 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI dscp [29 8 51 46 24 26 54 37] SIP-DIP 1.1.1.2-1.1.1.1 Tx 73 Rx 73 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI dscp [29 8 51 46 24 26 54 37] SIP-DIP 1.1.1.2-1.1.1.1 Tx 73 Rx 73 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI dscp [29 8 51 46 24 26 54 37] SIP-DIP 1.1.1.2-1.1.1.1 Tx 73 Rx 73 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI dscp [29 8 51 46 24 26 54 37] SIP-DIP 1.1.1.2-1.1.1.1 Tx 73 Rx 73 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI dscp [29 8 51 46 24 26 54 37] SIP-DIP 1.1.1.2-1.1.1.1 Tx 73 Rx 73 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item dscp [49 6 28 53 50 57 46 10] Tx 73 Rx 73 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Egress Tracking: Ethernet:IPv4 DSCP (6 bits) at offset 120 INFO DENT:Logger.py:84 [Ixia Traffic Generator] DSCP: 8 | Rx 73 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item dscp [49 6 28 53 50 57 46 10] Tx 73 Rx 73 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Egress Tracking: Ethernet:IPv4 DSCP (6 bits) at offset 120 INFO DENT:Logger.py:84 [Ixia Traffic Generator] DSCP: 37 | Rx 73 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item dscp [49 6 28 53 50 57 46 10] Tx 73 Rx 73 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Egress Tracking: Ethernet:IPv4 DSCP (6 bits) at offset 120 INFO DENT:Logger.py:84 [Ixia Traffic Generator] DSCP: 51 | Rx 73 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item dscp [49 6 28 53 50 57 46 10] Tx 73 Rx 73 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Egress Tracking: Ethernet:IPv4 DSCP (6 bits) at offset 120 INFO DENT:Logger.py:84 [Ixia Traffic Generator] DSCP: 54 | Rx 73 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item dscp [49 6 28 53 50 57 46 10] Tx 73 Rx 73 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Egress Tracking: Ethernet:IPv4 DSCP (6 bits) at offset 120 INFO DENT:Logger.py:84 [Ixia Traffic Generator] DSCP: 29 | Rx 73 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item dscp [49 6 28 53 50 57 46 10] Tx 73 Rx 73 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Egress Tracking: Ethernet:IPv4 DSCP (6 bits) at offset 120 INFO DENT:Logger.py:84 [Ixia Traffic Generator] DSCP: 24 | Rx 73 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item dscp [49 6 28 53 50 57 46 10] Tx 73 Rx 73 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Egress Tracking: Ethernet:IPv4 DSCP (6 bits) at offset 120 INFO DENT:Logger.py:84 [Ixia Traffic Generator] DSCP: 46 | Rx 73 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item dscp [49 6 28 53 50 57 46 10] Tx 73 Rx 73 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Egress Tracking: Ethernet:IPv4 DSCP (6 bits) at offset 120 INFO DENT:Logger.py:84 [Ixia Traffic Generator] DSCP: 26 | Rx 73 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item dscp [29 8 51 46 24 26 54 37] Tx 73 Rx 73 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Egress Tracking: Ethernet:IPv4 DSCP (6 bits) at offset 120 INFO DENT:Logger.py:84 [Ixia Traffic Generator] DSCP: 6 | Rx 73 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item dscp [29 8 51 46 24 26 54 37] Tx 73 Rx 73 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Egress Tracking: Ethernet:IPv4 DSCP (6 bits) at offset 120 INFO DENT:Logger.py:84 [Ixia Traffic Generator] DSCP: 50 | Rx 73 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item dscp [29 8 51 46 24 26 54 37] Tx 73 Rx 73 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Egress Tracking: Ethernet:IPv4 DSCP (6 bits) at offset 120 INFO DENT:Logger.py:84 [Ixia Traffic Generator] DSCP: 57 | Rx 73 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item dscp [29 8 51 46 24 26 54 37] Tx 73 Rx 73 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Egress Tracking: Ethernet:IPv4 DSCP (6 bits) at offset 120 INFO DENT:Logger.py:84 [Ixia Traffic Generator] DSCP: 49 | Rx 73 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item dscp [29 8 51 46 24 26 54 37] Tx 73 Rx 73 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Egress Tracking: Ethernet:IPv4 DSCP (6 bits) at offset 120 INFO DENT:Logger.py:84 [Ixia Traffic Generator] DSCP: 10 | Rx 73 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item dscp [29 8 51 46 24 26 54 37] Tx 73 Rx 73 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Egress Tracking: Ethernet:IPv4 DSCP (6 bits) at offset 120 INFO DENT:Logger.py:84 [Ixia Traffic Generator] DSCP: 53 | Rx 73 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item dscp [29 8 51 46 24 26 54 37] Tx 73 Rx 73 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Egress Tracking: Ethernet:IPv4 DSCP (6 bits) at offset 120 INFO DENT:Logger.py:84 [Ixia Traffic Generator] DSCP: 28 | Rx 73 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item dscp [29 8 51 46 24 26 54 37] Tx 73 Rx 73 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Egress Tracking: Ethernet:IPv4 DSCP (6 bits) at offset 120 INFO DENT:Logger.py:84 [Ixia Traffic Generator] DSCP: 46 | Rx 73 INFO DENT:Logger.py:84 [Ixia Traffic Generator] RX port | RX packets | RX DSCP | TX port | TX packets | TX DSCP | Prio | DSCP expected | DSCP correct | Loss INFO DENT:Logger.py:84 [Ixia Traffic Generator] swp33 | 73 | 49 | swp34 | 73 | 29 | 0 | 29 | True | False INFO DENT:Logger.py:84 [Ixia Traffic Generator] swp33 | 73 | 6 | swp34 | 73 | 8 | 1 | 8 | True | False INFO DENT:Logger.py:84 [Ixia Traffic Generator] swp33 | 73 | 28 | swp34 | 73 | 51 | 2 | 51 | True | False INFO DENT:Logger.py:84 [Ixia Traffic Generator] swp33 | 73 | 53 | swp34 | 73 | 46 | 3 | 46 | True | False INFO DENT:Logger.py:84 [Ixia Traffic Generator] swp33 | 73 | 50 | swp34 | 73 | 24 | 4 | 24 | True | False INFO DENT:Logger.py:84 [Ixia Traffic Generator] swp33 | 73 | 57 | swp34 | 73 | 26 | 5 | 26 | True | False INFO DENT:Logger.py:84 [Ixia Traffic Generator] swp33 | 73 | 46 | swp34 | 73 | 54 | 6 | 54 | True | False INFO DENT:Logger.py:84 [Ixia Traffic Generator] swp33 | 73 | 10 | swp34 | 73 | 37 | 7 | 37 | True | False INFO DENT:Logger.py:84 [Ixia Traffic Generator] swp34 | 73 | 29 | swp33 | 73 | 49 | 0 | 49 | True | False INFO DENT:Logger.py:84 [Ixia Traffic Generator] swp34 | 73 | 8 | swp33 | 73 | 6 | 1 | 6 | True | False INFO DENT:Logger.py:84 [Ixia Traffic Generator] swp34 | 73 | 51 | swp33 | 73 | 28 | 2 | 28 | True | False INFO DENT:Logger.py:84 [Ixia Traffic Generator] swp34 | 73 | 46 | swp33 | 73 | 53 | 3 | 53 | True | False INFO DENT:Logger.py:84 [Ixia Traffic Generator] swp34 | 73 | 24 | swp33 | 73 | 50 | 4 | 50 | True | False INFO DENT:Logger.py:84 [Ixia Traffic Generator] swp34 | 73 | 26 | swp33 | 73 | 57 | 5 | 57 | True | False INFO DENT:Logger.py:84 [Ixia Traffic Generator] swp34 | 73 | 54 | swp33 | 73 | 46 | 6 | 46 | True | False INFO DENT:Logger.py:84 [Ixia Traffic Generator] swp34 | 73 | 37 | swp33 | 73 | 10 | 7 | 10 | True | False -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_qos_dscp_remarking from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_dscp_remarking.py INFO asyncssh:logging.py:92 [conn=176, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=13] Channel closed DEBUG infra2:Logger.py:156 dcb app flush dev swp33 && dcb app flush dev swp34 && dcb app flush dev swp35 && dcb app flush dev swp36 INFO asyncssh:logging.py:92 [conn=176, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=14] Command: dcb app flush dev swp33 && dcb app flush dev swp34 && dcb app flush dev swp35 && dcb app flush dev swp36 INFO asyncssh:logging.py:92 [conn=176, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=176, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=15] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=176, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=16] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 02:35:26 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=176, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=176, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=18] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=176, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=18] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":175,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=176, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=176, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=20] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=176, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=176, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=21] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=176, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=22] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 02:35:26 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=176, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=23] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=176, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=24] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=176, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=24] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=176, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=25] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=176, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=26] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=176, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=176, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=26] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=176, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=27] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=176, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=28] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=176, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=176, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=28] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=176, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=29] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=176, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=176, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=176, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=30] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=176, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=31] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=176, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=176, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=176, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=32] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=176, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=33] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=176, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=176, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=176, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=34] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=176, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=35] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=176, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=176, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=176, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=36] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=176, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=37] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=176, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=176, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=176, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=38] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=176, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=176, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=176, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=176, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=40] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=176, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=176, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=176, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=176, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=42] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=176, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=176, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=176, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=176, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=176, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=176, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=46] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=176, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=176, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=46] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=176, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=176, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=48] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=176, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=176, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=48] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=176, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=176, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=50] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=176, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=176, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=50] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=176, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=176, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=176, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=176, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=176, chan=52] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=176, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=176, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=176, chan=52] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/qos/test_qos_shaper.py::test_qos_shaper[L2] | 169.26 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-10598' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_qos_shaper[L2]">Starting testcase:test_qos_shaper[L2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_shaper.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=176, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=177] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=177] Local address: 172.17.0.3, port 44656 INFO asyncssh:logging.py:92 [conn=177] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=177] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=177] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=177, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=0] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 02:35:27 UTC 2023 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=177, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=1] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=177, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=2] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=2] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 02:35:27 UTC 2023 INFO asyncssh:logging.py:92 [conn=177, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link add name br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=177, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=4] Command: ip link add name br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=177, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=177, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=177, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=177, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=177, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=7] Channel closed DEBUG infra2:Logger.py:156 bridge vlan delete dev swp33 vid 1 && bridge vlan delete dev swp34 vid 1 INFO asyncssh:logging.py:92 [conn=177, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=8] Command: bridge vlan delete dev swp33 vid 1 && bridge vlan delete dev swp34 vid 1 INFO asyncssh:logging.py:92 [conn=177, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=177, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=9] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp33 vid 3986 && bridge vlan add dev swp34 vid 3986 INFO asyncssh:logging.py:92 [conn=177, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=10] Command: bridge vlan add dev swp33 vid 3986 && bridge vlan add dev swp34 vid 3986 INFO asyncssh:logging.py:92 [conn=177, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=177, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=11] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp34 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=177, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=12] Command: tc qdisc add dev swp34 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=177, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=177, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=13] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp34 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=177, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=14] Command: tc qdisc add dev swp34 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=177, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=177, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=15] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=177, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=16] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=177, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.2', 'plen': 24, 'vlan': 3986, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': 3986, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=177, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=17] Channel closed DEBUG infra2:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=177, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=18] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=177, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=18] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":10513205,"packets":75369,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1885288,"packets":15767,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1953839,"packets":16401,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1910720,"packets":16050,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":4763358,"packets":27151,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":6848,"packets":46,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":1892,"packets":10,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":3816,"packets":19,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":360,"packets":4,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":3242,"packets":14,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":3172,"packets":13,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=177, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=19] Channel closed DEBUG infra2:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=177, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=20] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=177, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=20] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":10516071,"packets":75392,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1885330,"packets":15768,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1956063,"packets":16419,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1911204,"packets":16052,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":4763474,"packets":27153,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":7109,"packets":47,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":2153,"packets":11,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":39257600,"packets":76675,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":39257600,"packets":76675,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":39257600,"packets":76675,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":39257600,"packets":76675,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":39257600,"packets":76675,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":39261958,"packets":76696,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":39257448,"packets":76678,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":39257600,"packets":76675,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":3486,"packets":15,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":3416,"packets":14,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f759ba90>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 76675 Rx 76675 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 76675 Rx 76675 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 76675 Rx 76675 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 76675 Rx 76675 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 76675 Rx 76675 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 76675 Rx 76675 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 76675 Rx 76675 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 76674 Rx 76674 Loss 0.000 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=177, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=21] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=177, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=22] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=177, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=22] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{}}] INFO asyncssh:logging.py:92 [conn=177, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=23] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=177, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=24] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=177, chan=24] Received exit status 2 INFO asyncssh:logging.py:92 [conn=177, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=24] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=177, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=25] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=177, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=26] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=177, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=177, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=26] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=177, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=27] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=177, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=28] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=177, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=177, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=28] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=177, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=29] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=177, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=177, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=177, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=30] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=177, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=31] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=177, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=177, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=177, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=32] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=177, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=33] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=177, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=177, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=177, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=34] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=177, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=35] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=177, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=177, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=177, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=36] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=177, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=37] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=177, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=177, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=177, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=38] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=177, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=177, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=177, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=177, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=40] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=177, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=177, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=177, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=177, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=42] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=177, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=177, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=44] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=177, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=177, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=177, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=177, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=46] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=177, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=46] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=177, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=177, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=48] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=177, chan=48] Received exit status 1 INFO asyncssh:logging.py:92 [conn=177, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=48] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=177, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=177, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=50] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=177, chan=50] Received exit status 1 INFO asyncssh:logging.py:92 [conn=177, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=50] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=177, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=177, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=52] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=177, chan=52] Received exit status 1 INFO asyncssh:logging.py:92 [conn=177, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=52] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=177, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=177, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=54] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=177, chan=54] Received exit status 1 INFO asyncssh:logging.py:92 [conn=177, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=54] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=177, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=55] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=177, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=56] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=177, chan=56] Received exit status 1 INFO asyncssh:logging.py:92 [conn=177, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=56] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=177, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=57] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=177, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=58] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=177, chan=58] Received exit status 1 INFO asyncssh:logging.py:92 [conn=177, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=58] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=177, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=59] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=177, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=60] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=177, chan=60] Received exit status 1 INFO asyncssh:logging.py:92 [conn=177, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=60] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=177, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=61] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=177, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=62] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=177, chan=62] Received exit status 1 INFO asyncssh:logging.py:92 [conn=177, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=62] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=177, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=63] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=177, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=64] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=177, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=177, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=64] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=177, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=65] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=177, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=66] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=177, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=177, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=66] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=177, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=67] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev br0 root INFO asyncssh:logging.py:92 [conn=177, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=68] Command: tc qdisc delete dev br0 root INFO asyncssh:logging.py:92 [conn=177, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=177, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=68] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=177, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=69] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp34 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=177, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=70] Command: tc qdisc add dev swp34 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=177, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=70] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=177, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=71] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp34 handle 18 parent 10:8 tbf rate 57Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 17 parent 10:7 tbf rate 87Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 16 parent 10:6 tbf rate 59Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 15 parent 10:5 tbf rate 78Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 14 parent 10:4 tbf rate 119Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 13 parent 10:3 tbf rate 111Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 12 parent 10:2 tbf rate 80Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 11 parent 10:1 tbf rate 53Mbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=177, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=72] Command: tc qdisc add dev swp34 handle 18 parent 10:8 tbf rate 57Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 17 parent 10:7 tbf rate 87Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 16 parent 10:6 tbf rate 59Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 15 parent 10:5 tbf rate 78Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 14 parent 10:4 tbf rate 119Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 13 parent 10:3 tbf rate 111Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 12 parent 10:2 tbf rate 80Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 11 parent 10:1 tbf rate 53Mbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=177, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=72] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=177, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=73] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=177, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=74] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=177, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=74] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":9750000,"burst":1048573,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":10875000,"burst":1048567,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":10000000,"burst":1048570,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":14875000,"burst":1048568,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":7375000,"burst":1048570,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":7125000,"burst":1048572,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":6625000,"burst":1048571,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":13875000,"burst":1048561,"lat":1}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{}}] INFO asyncssh:logging.py:92 [conn=177, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=75] Channel closed DEBUG infra2:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=177, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=76] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=177, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=76] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":10557573,"packets":75789,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1899220,"packets":15903,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1983501,"packets":16680,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1911204,"packets":16052,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":4763648,"packets":27154,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":7370,"packets":48,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":9750000,"burst":1048573,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":10875000,"burst":1048567,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":10000000,"burst":1048570,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":14875000,"burst":1048568,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":7375000,"burst":1048570,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":7125000,"burst":1048572,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":6625000,"burst":1048571,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":13875000,"burst":1048561,"lat":1},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":3486,"packets":15,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":3416,"packets":14,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=177, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=77] Channel closed DEBUG infra2:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=177, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=78] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=177, chan=78] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=78] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":10559859,"packets":75808,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1901222,"packets":15920,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1983501,"packets":16680,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1911446,"packets":16053,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":4763690,"packets":27155,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":7631,"packets":49,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":261,"packets":1,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":9750000,"burst":1048573,"lat":0},"bytes":44677632,"packets":87261,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":10875000,"burst":1048567,"lat":0},"bytes":44677632,"packets":87261,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":10000000,"burst":1048570,"lat":0},"bytes":44677632,"packets":87261,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":14875000,"burst":1048568,"lat":0},"bytes":44677632,"packets":87261,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":7375000,"burst":1048570,"lat":0},"bytes":44677632,"packets":87261,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":7125000,"burst":1048572,"lat":0},"bytes":44678174,"packets":87263,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":6625000,"burst":1048571,"lat":0},"bytes":44677632,"packets":87261,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":13875000,"burst":1048561,"lat":1},"bytes":44677632,"packets":87261,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":3730,"packets":16,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":3660,"packets":15,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f7019750>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 87261 Rx 87261 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 87261 Rx 87261 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 87261 Rx 87261 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 87261 Rx 87261 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 87261 Rx 87261 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 87261 Rx 87261 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 87261 Rx 87261 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 87261 Rx 87261 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_qos_shaper[L2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_shaper.py INFO asyncssh:logging.py:92 [conn=177, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=79] Channel closed DEBUG infra2:Logger.py:156 dcb app flush dev swp33 && dcb app flush dev swp34 && dcb app flush dev swp35 && dcb app flush dev swp36 INFO asyncssh:logging.py:92 [conn=177, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=80] Command: dcb app flush dev swp33 && dcb app flush dev swp34 && dcb app flush dev swp35 && dcb app flush dev swp36 INFO asyncssh:logging.py:92 [conn=177, chan=80] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=80] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=177, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=81] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=177, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=82] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=82] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=82] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 02:38:15 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=177, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=83] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=177, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=84] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=177, chan=84] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=84] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":176,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=177, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=85] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=177, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=86] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=177, chan=86] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=86] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=177, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=87] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=177, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=88] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=88] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=88] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 02:38:15 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=177, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=89] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=177, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=90] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=177, chan=90] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=90] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":9750000,"burst":1048573,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":10875000,"burst":1048567,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":10000000,"burst":1048570,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":14875000,"burst":1048568,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":7375000,"burst":1048570,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":7125000,"burst":1048572,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":6625000,"burst":1048571,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":13875000,"burst":1048561,"lat":1}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=177, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=91] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=177, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=92] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=177, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=177, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=92] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=177, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=93] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=177, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=94] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=177, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=177, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=94] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=177, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=95] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=177, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=96] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=177, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=177, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=96] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=177, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=97] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=177, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=98] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=177, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=177, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=98] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=177, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=99] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=177, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=100] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=177, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=177, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=100] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=177, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=101] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=177, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=102] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=177, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=177, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=102] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=177, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=103] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=177, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=104] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=177, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=177, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=104] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=177, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=105] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=177, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=106] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=177, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=177, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=106] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=177, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=107] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=177, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=108] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=177, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=177, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=108] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=177, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=109] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=177, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=110] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=177, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=177, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=110] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=177, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=111] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=177, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=112] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=177, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=177, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=112] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=177, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=113] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=177, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=114] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=177, chan=114] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=114] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=177, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=115] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=177, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=116] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=177, chan=116] Received exit status 1 INFO asyncssh:logging.py:92 [conn=177, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=116] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=177, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=117] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=177, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=118] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=177, chan=118] Received exit status 1 INFO asyncssh:logging.py:92 [conn=177, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=118] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=177, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=119] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=177, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=120] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=177, chan=120] Received exit status 1 INFO asyncssh:logging.py:92 [conn=177, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=120] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=177, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=121] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=177, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=122] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=177, chan=122] Received exit status 1 INFO asyncssh:logging.py:92 [conn=177, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=122] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=177, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=123] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=177, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=124] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=177, chan=124] Received exit status 1 INFO asyncssh:logging.py:92 [conn=177, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=124] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=177, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=125] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=177, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=126] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=177, chan=126] Received exit status 1 INFO asyncssh:logging.py:92 [conn=177, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=126] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=177, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=127] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=177, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=128] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=177, chan=128] Received exit status 1 INFO asyncssh:logging.py:92 [conn=177, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=128] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=177, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=129] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=177, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=130] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=177, chan=130] Received exit status 1 INFO asyncssh:logging.py:92 [conn=177, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=130] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=177, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=131] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=177, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=132] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=177, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=177, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=132] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=177, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=177, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=177, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=133] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=177, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=177, chan=134] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=177, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=177, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=177, chan=134] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/qos/test_qos_shaper.py::test_qos_shaper[L3] | 168.40 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-10745' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_qos_shaper[L3]">Starting testcase:test_qos_shaper[L3] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_shaper.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=177, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=178] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=178] Local address: 172.17.0.3, port 51312 INFO asyncssh:logging.py:92 [conn=178] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=178] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=178] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=178, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=0] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 02:38:16 UTC 2023 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=178, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=1] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=178, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=2] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=2] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 02:38:16 UTC 2023 INFO asyncssh:logging.py:92 [conn=178, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link add name br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=178, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=4] Command: ip link add name br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=178, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=178, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=178, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=178, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=178, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=7] Channel closed DEBUG infra2:Logger.py:156 dcb app add dev swp33 dscp-prio 44:0 34:1 20:2 17:3 2:4 51:5 53:6 26:7 INFO asyncssh:logging.py:92 [conn=178, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=8] Command: dcb app add dev swp33 dscp-prio 44:0 34:1 20:2 17:3 2:4 51:5 53:6 26:7 INFO asyncssh:logging.py:92 [conn=178, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=178, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=9] Channel closed DEBUG infra2:Logger.py:156 dcb -j app show dev swp33 dscp-prio INFO asyncssh:logging.py:92 [conn=178, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=10] Command: dcb -j app show dev swp33 dscp-prio INFO asyncssh:logging.py:92 [conn=178, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=10] Channel closed DEBUG infra2:Logger.py:156 {"dscp_prio":[[2,4],[17,3],[20,2],[26,7],[34,1],[44,0],[51,5],[53,6]]} INFO asyncssh:logging.py:92 [conn=178, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=11] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp34 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=178, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=12] Command: tc qdisc add dev swp34 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=178, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=178, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=13] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp34 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=178, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=14] Command: tc qdisc add dev swp34 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=178, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=178, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=15] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=178, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=16] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=178, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.2', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=178, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=17] Channel closed DEBUG infra2:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=178, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=18] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=178, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=18] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":10619432,"packets":76363,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1911597,"packets":16012,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1984793,"packets":16692,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1955974,"packets":16481,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":4767068,"packets":27178,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":10305,"packets":71,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":2432,"packets":20,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":4436,"packets":33,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":1020,"packets":10,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":4462,"packets":19,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":4392,"packets":18,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=178, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=19] Channel closed DEBUG infra2:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=178, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=20] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=178, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=20] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":10621860,"packets":76383,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1911597,"packets":16012,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1984793,"packets":16692,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1958318,"packets":16499,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":4767152,"packets":27180,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":10549,"packets":72,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":2676,"packets":21,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":39225856,"packets":76613,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":39226368,"packets":76614,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":39225856,"packets":76613,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":39225856,"packets":76613,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":39225856,"packets":76613,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":39231312,"packets":76649,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":39226876,"packets":76623,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":39225856,"packets":76613,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":4950,"packets":21,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":4880,"packets":20,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f73ca8f0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 76613 Rx 76613 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 76613 Rx 76613 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 76613 Rx 76613 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 76613 Rx 76613 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 76614 Rx 76614 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 76614 Rx 76614 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 76613 Rx 76613 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 76613 Rx 76613 Loss 0.000 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=178, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=21] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=178, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=22] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=178, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=22] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{}}] INFO asyncssh:logging.py:92 [conn=178, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=23] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=178, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=24] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=178, chan=24] Received exit status 2 INFO asyncssh:logging.py:92 [conn=178, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=24] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=178, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=25] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=178, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=26] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=178, chan=26] Received exit status 2 INFO asyncssh:logging.py:92 [conn=178, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=26] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=178, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=27] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=178, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=28] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=178, chan=28] Received exit status 2 INFO asyncssh:logging.py:92 [conn=178, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=28] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=178, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=29] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=178, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=30] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=178, chan=30] Received exit status 2 INFO asyncssh:logging.py:92 [conn=178, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=30] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=178, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=31] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=178, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=32] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=178, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=178, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=32] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=178, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=33] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=178, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=34] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=178, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=178, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=34] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=178, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=35] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=178, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=178, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=178, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=36] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=178, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=37] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=178, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=178, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=178, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=38] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=178, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=178, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=178, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=178, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=40] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=178, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=178, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=178, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=178, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=42] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=178, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=178, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=44] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=178, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=178, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=178, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=178, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=46] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=178, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=46] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=178, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=178, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=48] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=178, chan=48] Received exit status 1 INFO asyncssh:logging.py:92 [conn=178, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=48] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=178, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=178, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=50] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=178, chan=50] Received exit status 1 INFO asyncssh:logging.py:92 [conn=178, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=50] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=178, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=178, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=52] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=178, chan=52] Received exit status 1 INFO asyncssh:logging.py:92 [conn=178, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=52] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=178, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=178, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=54] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=178, chan=54] Received exit status 1 INFO asyncssh:logging.py:92 [conn=178, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=54] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=178, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=55] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=178, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=56] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=178, chan=56] Received exit status 1 INFO asyncssh:logging.py:92 [conn=178, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=56] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=178, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=57] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=178, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=58] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=178, chan=58] Received exit status 1 INFO asyncssh:logging.py:92 [conn=178, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=58] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=178, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=59] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=178, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=60] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=178, chan=60] Received exit status 1 INFO asyncssh:logging.py:92 [conn=178, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=60] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=178, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=61] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=178, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=62] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=178, chan=62] Received exit status 1 INFO asyncssh:logging.py:92 [conn=178, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=62] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=178, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=63] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=178, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=64] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=178, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=178, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=64] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=178, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=65] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=178, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=66] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=178, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=178, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=66] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=178, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=67] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev br0 root INFO asyncssh:logging.py:92 [conn=178, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=68] Command: tc qdisc delete dev br0 root INFO asyncssh:logging.py:92 [conn=178, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=178, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=68] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=178, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=69] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp34 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=178, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=70] Command: tc qdisc add dev swp34 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=178, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=70] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=178, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=71] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp34 handle 18 parent 10:8 tbf rate 113Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 17 parent 10:7 tbf rate 75Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 16 parent 10:6 tbf rate 107Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 15 parent 10:5 tbf rate 113Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 14 parent 10:4 tbf rate 59Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 13 parent 10:3 tbf rate 121Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 12 parent 10:2 tbf rate 61Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 11 parent 10:1 tbf rate 111Mbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=178, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=72] Command: tc qdisc add dev swp34 handle 18 parent 10:8 tbf rate 113Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 17 parent 10:7 tbf rate 75Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 16 parent 10:6 tbf rate 107Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 15 parent 10:5 tbf rate 113Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 14 parent 10:4 tbf rate 59Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 13 parent 10:3 tbf rate 121Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 12 parent 10:2 tbf rate 61Mbit burst 1M limit 1M && tc qdisc add dev swp34 handle 11 parent 10:1 tbf rate 111Mbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=178, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=72] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=178, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=73] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=178, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=74] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=178, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=74] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":14125000,"burst":1048569,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":9375000,"burst":1048575,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":7625000,"burst":1048574,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":7375000,"burst":1048570,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":13375000,"burst":1048573,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":14125000,"burst":1048569,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":13875000,"burst":1048561,"lat":1}},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":15125000,"burst":1048570,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{}}] INFO asyncssh:logging.py:92 [conn=178, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=75] Channel closed DEBUG infra2:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=178, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=76] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=178, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=76] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":10663340,"packets":76779,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1935797,"packets":16246,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1984793,"packets":16692,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1965668,"packets":16564,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":4777082,"packets":27277,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":10549,"packets":72,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":14125000,"burst":1048569,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":9375000,"burst":1048575,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":7625000,"burst":1048574,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":7375000,"burst":1048570,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":13375000,"burst":1048573,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":14125000,"burst":1048569,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":13875000,"burst":1048561,"lat":1},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":15125000,"burst":1048570,"lat":0},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":4950,"packets":21,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":4880,"packets":20,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=178, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=77] Channel closed DEBUG infra2:Logger.py:156 tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=178, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=78] Command: tc -j -s qdisc show INFO asyncssh:logging.py:92 [conn=178, chan=78] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=78] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{},"bytes":10665706,"packets":76798,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1937879,"packets":16263,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1984793,"packets":16692,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":1965910,"packets":16565,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":4777124,"packets":27278,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":10863,"packets":74,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":314,"packets":2,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":14125000,"burst":1048569,"lat":0},"bytes":44563456,"packets":87038,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":9375000,"burst":1048575,"lat":0},"bytes":44563456,"packets":87038,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":7625000,"burst":1048574,"lat":0},"bytes":44562944,"packets":87037,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":7375000,"burst":1048570,"lat":0},"bytes":44563456,"packets":87038,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":13375000,"burst":1048573,"lat":0},"bytes":44563456,"packets":87038,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":14125000,"burst":1048569,"lat":0},"bytes":44564124,"packets":87042,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":13875000,"burst":1048561,"lat":1},"bytes":44562944,"packets":87037,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":15125000,"burst":1048570,"lat":0},"bytes":44563456,"packets":87038,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":5194,"packets":22,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false},"bytes":5124,"packets":21,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{},"bytes":0,"packets":0,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f7001900>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 87038 Rx 87038 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 87038 Rx 87038 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 87038 Rx 87038 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 87037 Rx 87037 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 87038 Rx 87038 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 87038 Rx 87038 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 87038 Rx 87038 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 87037 Rx 87037 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_qos_shaper[L3] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_shaper.py INFO asyncssh:logging.py:92 [conn=178, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=79] Channel closed DEBUG infra2:Logger.py:156 dcb app flush dev swp33 && dcb app flush dev swp34 && dcb app flush dev swp35 && dcb app flush dev swp36 INFO asyncssh:logging.py:92 [conn=178, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=80] Command: dcb app flush dev swp33 && dcb app flush dev swp34 && dcb app flush dev swp35 && dcb app flush dev swp36 INFO asyncssh:logging.py:92 [conn=178, chan=80] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=80] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=178, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=81] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=178, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=82] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=82] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=82] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 02:41:03 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=178, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=83] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=178, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=84] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=178, chan=84] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=84] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":177,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=178, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=85] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=178, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=86] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=178, chan=86] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=86] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=178, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=87] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=178, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=88] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=88] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=88] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 02:41:04 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=178, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=89] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=178, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=90] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=178, chan=90] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=90] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":14125000,"burst":1048569,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":9375000,"burst":1048575,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":7625000,"burst":1048574,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":7375000,"burst":1048570,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":13375000,"burst":1048573,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":14125000,"burst":1048569,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":13875000,"burst":1048561,"lat":1}},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":15125000,"burst":1048570,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=178, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=91] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=178, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=92] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=178, chan=92] Received exit status 2 INFO asyncssh:logging.py:92 [conn=178, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=92] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=178, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=93] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=178, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=94] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=178, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=178, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=94] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=178, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=95] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=178, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=96] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=178, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=178, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=96] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=178, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=97] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=178, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=98] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=178, chan=98] Received exit status 2 INFO asyncssh:logging.py:92 [conn=178, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=98] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=178, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=99] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=178, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=100] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=178, chan=100] Received exit status 2 INFO asyncssh:logging.py:92 [conn=178, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=100] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=178, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=101] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=178, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=102] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=178, chan=102] Received exit status 2 INFO asyncssh:logging.py:92 [conn=178, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=102] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=178, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=103] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=178, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=104] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=178, chan=104] Received exit status 2 INFO asyncssh:logging.py:92 [conn=178, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=104] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=178, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=105] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=178, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=106] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=178, chan=106] Received exit status 2 INFO asyncssh:logging.py:92 [conn=178, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=106] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=178, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=107] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=107] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=107] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=107] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=178, chan=108] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=108] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=178, chan=108] Received exit status 2 INFO asyncssh:logging.py:92 [conn=178, chan=108] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=108] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=178, chan=109] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=109] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=109] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=109] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=109] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=178, chan=110] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=110] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=178, chan=110] Received exit status 2 INFO asyncssh:logging.py:92 [conn=178, chan=110] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=110] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=178, chan=111] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=111] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=111] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=111] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=111] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=178, chan=112] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=112] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=178, chan=112] Received exit status 2 INFO asyncssh:logging.py:92 [conn=178, chan=112] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=112] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=178, chan=113] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=113] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=113] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=113] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=113] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=178, chan=114] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=114] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=178, chan=114] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=114] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=114] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=178, chan=115] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=115] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=115] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=115] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=115] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=178, chan=116] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=116] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=178, chan=116] Received exit status 1 INFO asyncssh:logging.py:92 [conn=178, chan=116] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=116] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=178, chan=117] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=117] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=117] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=117] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=117] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=178, chan=118] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=118] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=178, chan=118] Received exit status 1 INFO asyncssh:logging.py:92 [conn=178, chan=118] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=118] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=178, chan=119] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=119] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=119] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=119] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=119] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=178, chan=120] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=120] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=178, chan=120] Received exit status 1 INFO asyncssh:logging.py:92 [conn=178, chan=120] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=120] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=178, chan=121] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=121] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=121] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=121] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=121] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=178, chan=122] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=122] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=178, chan=122] Received exit status 1 INFO asyncssh:logging.py:92 [conn=178, chan=122] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=122] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=178, chan=123] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=123] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=123] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=123] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=123] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=178, chan=124] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=124] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=178, chan=124] Received exit status 1 INFO asyncssh:logging.py:92 [conn=178, chan=124] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=124] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=178, chan=125] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=125] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=125] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=125] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=125] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=178, chan=126] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=126] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=178, chan=126] Received exit status 1 INFO asyncssh:logging.py:92 [conn=178, chan=126] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=126] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=178, chan=127] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=127] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=127] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=127] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=127] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=178, chan=128] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=128] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=178, chan=128] Received exit status 1 INFO asyncssh:logging.py:92 [conn=178, chan=128] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=128] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=178, chan=129] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=129] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=129] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=129] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=129] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=178, chan=130] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=130] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=178, chan=130] Received exit status 1 INFO asyncssh:logging.py:92 [conn=178, chan=130] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=130] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=178, chan=131] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=131] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=131] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=131] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=131] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=178, chan=132] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=132] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=178, chan=132] Received exit status 2 INFO asyncssh:logging.py:92 [conn=178, chan=132] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=132] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=178, chan=133] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=133] Command: date INFO asyncssh:logging.py:92 [conn=178, chan=133] Received exit status 0 INFO asyncssh:logging.py:92 [conn=178, chan=133] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=133] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=178, chan=134] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=178, chan=134] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=178, chan=134] Received exit status 2 INFO asyncssh:logging.py:92 [conn=178, chan=134] Received channel close INFO asyncssh:logging.py:92 [conn=178, chan=134] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/qos/test_qos_trust_mode.py::test_qos_trust_mode[sp-L2] | 139.35 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-10892' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_qos_trust_mode[sp-L2]">Starting testcase:test_qos_trust_mode[sp-L2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_trust_mode.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=178, chan=135] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=179] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=179] Local address: 172.17.0.3, port 56680 INFO asyncssh:logging.py:92 [conn=179] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=179] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=179] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=179, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=0] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 02:41:05 UTC 2023 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=179, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=1] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=179, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=2] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=2] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 02:41:05 UTC 2023 INFO asyncssh:logging.py:92 [conn=179, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link add name br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=179, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=4] Command: ip link add name br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=179, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=179, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=179, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=179, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=179, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=7] Channel closed DEBUG infra2:Logger.py:156 bridge vlan delete dev swp33 vid 1 && bridge vlan delete dev swp34 vid 1 INFO asyncssh:logging.py:92 [conn=179, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=8] Command: bridge vlan delete dev swp33 vid 1 && bridge vlan delete dev swp34 vid 1 INFO asyncssh:logging.py:92 [conn=179, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=179, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=9] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp33 vid 3774 && bridge vlan add dev swp34 vid 3774 INFO asyncssh:logging.py:92 [conn=179, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=10] Command: bridge vlan add dev swp33 vid 3774 && bridge vlan add dev swp34 vid 3774 INFO asyncssh:logging.py:92 [conn=179, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=179, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=11] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp34 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=179, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=12] Command: tc qdisc add dev swp34 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=179, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=179, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=13] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp34 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=179, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=14] Command: tc qdisc add dev swp34 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=179, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=179, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=15] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=179, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=16] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=179, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.2', 'plen': 24, 'vlan': 3774, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': 3774, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f70001f0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 229618 Rx 229618 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 229618 Rx 229618 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 229618 Rx 229618 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 229618 Rx 229618 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 229618 Rx 229618 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 229617 Rx 229617 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 229617 Rx 229617 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 229617 Rx 229617 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] PCP | PRIO | Rx Rate, Mbit | Loss, % | Duration, s | Status INFO DENT:Logger.py:84 [Ixia Traffic Generator] 0 | 0 | 34.42 | 0.00 | 26.06 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 1 | 1 | 34.42 | 0.00 | 26.06 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 2 | 2 | 34.42 | 0.00 | 26.06 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 3 | 3 | 34.42 | 0.00 | 26.06 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 4 | 4 | 34.42 | 0.00 | 26.06 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 5 | 5 | 34.42 | 0.00 | 26.06 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 6 | 6 | 34.42 | 0.00 | 26.06 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 7 | 7 | 34.42 | 0.00 | 26.06 | True INFO asyncssh:logging.py:92 [conn=179, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=17] Channel closed DEBUG infra2:Logger.py:156 tc -j -s qdisc show dev swp34 INFO asyncssh:logging.py:92 [conn=179, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=18] Command: tc -j -s qdisc show dev swp34 INFO asyncssh:logging.py:92 [conn=179, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=18] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"ets","handle":"10:","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":2414,"packets":12,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":117564416,"packets":229618,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":117564416,"packets":229618,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":117563904,"packets":229617,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":117564416,"packets":229618,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":117564416,"packets":229618,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":117569380,"packets":229642,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":117564264,"packets":229621,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":117563904,"packets":229617,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [DENT infrastructure 2] Band | PRIO | Statistics, bytes | Rate, Mbit | Expected, Mbit | Deviation, % | Duration, s | Status INFO DENT:Logger.py:84 [DENT infrastructure 2] 8 | 0 | 117569380 | 34.42 | 34.42 | 0.0 | 26.06 | True INFO DENT:Logger.py:84 [DENT infrastructure 2] 7 | 1 | 117564416 | 34.42 | 34.42 | 0.0 | 26.06 | True INFO DENT:Logger.py:84 [DENT infrastructure 2] 6 | 2 | 117564416 | 34.42 | 34.42 | 0.0 | 26.06 | True INFO DENT:Logger.py:84 [DENT infrastructure 2] 5 | 3 | 117564416 | 34.42 | 34.42 | 0.0 | 26.06 | True INFO DENT:Logger.py:84 [DENT infrastructure 2] 4 | 4 | 117564416 | 34.42 | 34.42 | 0.0 | 26.06 | True INFO DENT:Logger.py:84 [DENT infrastructure 2] 3 | 5 | 117563904 | 34.42 | 34.42 | 0.0 | 26.06 | True INFO DENT:Logger.py:84 [DENT infrastructure 2] 2 | 6 | 117563904 | 34.42 | 34.42 | 0.0 | 26.06 | True INFO DENT:Logger.py:84 [DENT infrastructure 2] 1 | 7 | 117564264 | 34.42 | 34.42 | 0.0 | 26.06 | True -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_qos_trust_mode[sp-L2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_trust_mode.py INFO asyncssh:logging.py:92 [conn=179, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=19] Channel closed DEBUG infra2:Logger.py:156 dcb app flush dev swp33 && dcb app flush dev swp34 && dcb app flush dev swp35 && dcb app flush dev swp36 INFO asyncssh:logging.py:92 [conn=179, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=20] Command: dcb app flush dev swp33 && dcb app flush dev swp34 && dcb app flush dev swp35 && dcb app flush dev swp36 INFO asyncssh:logging.py:92 [conn=179, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=179, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=21] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=179, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=22] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 02:43:23 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=179, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=23] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=179, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=24] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=179, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=24] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":178,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=179, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=25] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=179, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=26] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=179, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=26] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=179, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=27] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=179, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=28] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 02:43:23 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=179, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=29] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=179, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=30] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=179, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=30] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=179, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=31] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=179, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=32] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=179, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=179, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=32] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=179, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=33] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=179, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=34] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=179, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=179, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=34] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=179, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=35] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=179, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=179, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=179, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=36] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=179, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=37] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=179, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=179, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=179, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=38] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=179, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=179, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=179, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=179, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=40] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=179, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=179, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=179, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=179, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=42] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=179, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=179, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=179, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=179, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=179, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=179, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=179, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=179, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=46] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=179, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=179, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=179, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=179, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=48] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=179, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=179, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=179, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=179, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=50] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=179, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=179, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=52] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=179, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=179, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=52] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=179, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=179, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=54] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=179, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=54] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=179, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=55] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=179, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=56] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=179, chan=56] Received exit status 1 INFO asyncssh:logging.py:92 [conn=179, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=56] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=179, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=57] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=179, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=58] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=179, chan=58] Received exit status 1 INFO asyncssh:logging.py:92 [conn=179, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=58] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=179, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=59] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=179, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=60] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=179, chan=60] Received exit status 1 INFO asyncssh:logging.py:92 [conn=179, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=60] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=179, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=61] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=179, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=62] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=179, chan=62] Received exit status 1 INFO asyncssh:logging.py:92 [conn=179, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=62] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=179, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=63] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=179, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=64] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=179, chan=64] Received exit status 1 INFO asyncssh:logging.py:92 [conn=179, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=64] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=179, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=65] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=179, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=66] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=179, chan=66] Received exit status 1 INFO asyncssh:logging.py:92 [conn=179, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=66] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=179, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=67] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=179, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=68] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=179, chan=68] Received exit status 1 INFO asyncssh:logging.py:92 [conn=179, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=68] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=179, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=69] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=179, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=70] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=179, chan=70] Received exit status 1 INFO asyncssh:logging.py:92 [conn=179, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=70] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=179, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=71] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=179, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=72] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=179, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=179, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=72] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=179, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=179, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=179, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=73] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=179, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=179, chan=74] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=179, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=179, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=179, chan=74] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/qos/test_qos_trust_mode.py::test_qos_trust_mode[sp-L3] | 135.06 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-10979' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_qos_trust_mode[sp-L3]">Starting testcase:test_qos_trust_mode[sp-L3] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_trust_mode.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=179, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=180] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=180] Local address: 172.17.0.3, port 60900 INFO asyncssh:logging.py:92 [conn=180] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=180] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=180] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=180, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=0] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 02:43:24 UTC 2023 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=180, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=1] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=180, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=2] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=2] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 02:43:24 UTC 2023 INFO asyncssh:logging.py:92 [conn=180, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link add name br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=180, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=4] Command: ip link add name br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=180, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=180, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=180, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=180, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=180, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=7] Channel closed DEBUG infra2:Logger.py:156 dcb app add dev swp33 dscp-prio 31:0 63:1 52:2 15:3 48:4 30:5 1:6 13:7 INFO asyncssh:logging.py:92 [conn=180, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=8] Command: dcb app add dev swp33 dscp-prio 31:0 63:1 52:2 15:3 48:4 30:5 1:6 13:7 INFO asyncssh:logging.py:92 [conn=180, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=180, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=9] Channel closed DEBUG infra2:Logger.py:156 dcb -j app show dev swp33 dscp-prio INFO asyncssh:logging.py:92 [conn=180, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=10] Command: dcb -j app show dev swp33 dscp-prio INFO asyncssh:logging.py:92 [conn=180, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=10] Channel closed DEBUG infra2:Logger.py:156 {"dscp_prio":[[1,6],[13,7],[15,3],[30,5],[31,0],[48,4],[52,2],[63,1]]} INFO asyncssh:logging.py:92 [conn=180, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=11] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp34 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=180, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=12] Command: tc qdisc add dev swp34 handle 10 root ets bands 8 strict 8 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=180, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=180, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=13] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp34 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=180, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=14] Command: tc qdisc add dev swp34 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=180, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=180, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=15] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=180, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=16] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=180, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.2', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f702c370>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 229078 Rx 229078 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 229078 Rx 229078 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 229079 Rx 229079 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 229078 Rx 229078 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 229079 Rx 229079 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 229078 Rx 229078 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 229079 Rx 229079 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 229079 Rx 229079 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] DSCP | PRIO | Rx Rate, Mbit | Loss, % | Duration, s | Status INFO DENT:Logger.py:84 [Ixia Traffic Generator] 31 | 0 | 34.42 | 0.00 | 26.00 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 63 | 1 | 34.42 | 0.00 | 26.00 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 52 | 2 | 34.42 | 0.00 | 26.00 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 15 | 3 | 34.42 | 0.00 | 26.00 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 48 | 4 | 34.42 | 0.00 | 26.00 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 30 | 5 | 34.42 | 0.00 | 26.00 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 1 | 6 | 34.42 | 0.00 | 26.00 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 13 | 7 | 34.42 | 0.00 | 26.00 | True INFO asyncssh:logging.py:92 [conn=180, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=17] Channel closed DEBUG infra2:Logger.py:156 tc -j -s qdisc show dev swp34 INFO asyncssh:logging.py:92 [conn=180, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=18] Command: tc -j -s qdisc show dev swp34 INFO asyncssh:logging.py:92 [conn=180, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=18] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"ets","handle":"10:","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":2676,"packets":21,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":117288448,"packets":229079,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":117288448,"packets":229079,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":117287936,"packets":229078,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":117287936,"packets":229078,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":117288448,"packets":229079,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":117293456,"packets":229115,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":117288956,"packets":229088,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":117287936,"packets":229078,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [DENT infrastructure 2] Band | PRIO | Statistics, bytes | Rate, Mbit | Expected, Mbit | Deviation, % | Duration, s | Status INFO DENT:Logger.py:84 [DENT infrastructure 2] 8 | 0 | 117293456 | 34.42 | 34.42 | 0.0 | 26.00 | True INFO DENT:Logger.py:84 [DENT infrastructure 2] 7 | 1 | 117288448 | 34.42 | 34.42 | 0.0 | 26.00 | True INFO DENT:Logger.py:84 [DENT infrastructure 2] 6 | 2 | 117288448 | 34.42 | 34.42 | 0.0 | 26.00 | True INFO DENT:Logger.py:84 [DENT infrastructure 2] 5 | 3 | 117288448 | 34.42 | 34.42 | 0.0 | 26.00 | True INFO DENT:Logger.py:84 [DENT infrastructure 2] 4 | 4 | 117287936 | 34.42 | 34.42 | 0.0 | 26.00 | True INFO DENT:Logger.py:84 [DENT infrastructure 2] 3 | 5 | 117287936 | 34.42 | 34.42 | 0.0 | 26.00 | True INFO DENT:Logger.py:84 [DENT infrastructure 2] 2 | 6 | 117287936 | 34.42 | 34.42 | 0.0 | 26.00 | True INFO DENT:Logger.py:84 [DENT infrastructure 2] 1 | 7 | 117288956 | 34.42 | 34.42 | 0.0 | 26.00 | True -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_qos_trust_mode[sp-L3] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_trust_mode.py INFO asyncssh:logging.py:92 [conn=180, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=19] Channel closed DEBUG infra2:Logger.py:156 dcb app flush dev swp33 && dcb app flush dev swp34 && dcb app flush dev swp35 && dcb app flush dev swp36 INFO asyncssh:logging.py:92 [conn=180, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=20] Command: dcb app flush dev swp33 && dcb app flush dev swp34 && dcb app flush dev swp35 && dcb app flush dev swp36 INFO asyncssh:logging.py:92 [conn=180, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=180, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=21] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=180, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=22] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 02:45:38 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=180, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=23] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=180, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=24] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=180, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=24] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":179,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=180, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=25] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=180, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=26] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=180, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=26] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=180, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=27] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=180, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=28] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 02:45:38 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=180, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=29] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=180, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=30] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=180, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=30] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"strict":8,"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=180, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=31] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=180, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=32] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=180, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=32] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=180, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=33] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=180, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=34] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=180, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=34] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=180, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=35] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=180, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=180, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=36] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=180, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=37] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=180, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=180, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=38] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=180, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=180, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=180, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=40] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=180, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=180, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=180, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=42] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=180, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=180, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=180, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=180, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=180, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=180, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=46] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=180, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=180, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=180, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=48] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=180, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=180, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=180, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=50] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=180, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=180, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=52] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=180, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=52] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=180, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=180, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=54] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=180, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=54] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=180, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=55] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=180, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=56] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=180, chan=56] Received exit status 1 INFO asyncssh:logging.py:92 [conn=180, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=56] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=180, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=57] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=180, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=58] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=180, chan=58] Received exit status 1 INFO asyncssh:logging.py:92 [conn=180, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=58] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=180, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=59] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=180, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=60] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=180, chan=60] Received exit status 1 INFO asyncssh:logging.py:92 [conn=180, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=60] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=180, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=61] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=180, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=62] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=180, chan=62] Received exit status 1 INFO asyncssh:logging.py:92 [conn=180, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=62] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=180, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=63] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=180, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=64] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=180, chan=64] Received exit status 1 INFO asyncssh:logging.py:92 [conn=180, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=64] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=180, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=65] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=180, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=66] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=180, chan=66] Received exit status 1 INFO asyncssh:logging.py:92 [conn=180, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=66] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=180, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=67] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=180, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=68] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=180, chan=68] Received exit status 1 INFO asyncssh:logging.py:92 [conn=180, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=68] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=180, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=69] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=180, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=70] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=180, chan=70] Received exit status 1 INFO asyncssh:logging.py:92 [conn=180, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=70] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=180, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=71] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=180, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=72] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=180, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=72] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=180, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=180, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=180, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=73] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=180, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=180, chan=74] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=180, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=180, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=180, chan=74] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/qos/test_qos_trust_mode.py::test_qos_trust_mode[wrr-L2] | 135.71 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-11066' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_qos_trust_mode[wrr-L2]">Starting testcase:test_qos_trust_mode[wrr-L2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_trust_mode.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=180, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=181] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=181] Local address: 172.17.0.3, port 44294 INFO asyncssh:logging.py:92 [conn=181] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=181] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=181] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=181, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=0] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 02:45:39 UTC 2023 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=181, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=1] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=181, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=2] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=2] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 02:45:39 UTC 2023 INFO asyncssh:logging.py:92 [conn=181, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link add name br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=181, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=4] Command: ip link add name br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=181, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=181, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=181, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=181, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=181, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=7] Channel closed DEBUG infra2:Logger.py:156 bridge vlan delete dev swp33 vid 1 && bridge vlan delete dev swp34 vid 1 INFO asyncssh:logging.py:92 [conn=181, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=8] Command: bridge vlan delete dev swp33 vid 1 && bridge vlan delete dev swp34 vid 1 INFO asyncssh:logging.py:92 [conn=181, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=181, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=9] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp33 vid 2384 && bridge vlan add dev swp34 vid 2384 INFO asyncssh:logging.py:92 [conn=181, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=10] Command: bridge vlan add dev swp33 vid 2384 && bridge vlan add dev swp34 vid 2384 INFO asyncssh:logging.py:92 [conn=181, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=181, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=11] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp34 handle 10 root ets bands 8 quanta 10 10 9 8 8 7 6 6 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=181, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=12] Command: tc qdisc add dev swp34 handle 10 root ets bands 8 quanta 10 10 9 8 8 7 6 6 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=181, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=181, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=13] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp34 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=181, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=14] Command: tc qdisc add dev swp34 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=181, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=181, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=15] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=181, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=16] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=181, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"quanta":[10,10,9,8,8,7,6,6],"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.2', 'plen': 24, 'vlan': 2384, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': 2384, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f7443cd0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 229264 Rx 229264 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 229264 Rx 229264 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 229264 Rx 229264 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 229264 Rx 229264 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 229264 Rx 229264 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 229264 Rx 229264 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 229264 Rx 229264 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 229264 Rx 229264 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] PCP | PRIO | Rx Rate, Mbit | Loss, % | Duration, s | Status INFO DENT:Logger.py:84 [Ixia Traffic Generator] 0 | 0 | 34.42 | 0.00 | 26.02 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 1 | 1 | 34.42 | 0.00 | 26.02 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 2 | 2 | 34.42 | 0.00 | 26.02 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 3 | 3 | 34.42 | 0.00 | 26.02 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 4 | 4 | 34.42 | 0.00 | 26.02 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 5 | 5 | 34.42 | 0.00 | 26.02 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 6 | 6 | 34.42 | 0.00 | 26.02 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 7 | 7 | 34.42 | 0.00 | 26.02 | True INFO asyncssh:logging.py:92 [conn=181, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=17] Channel closed DEBUG infra2:Logger.py:156 tc -j -s qdisc show dev swp34 INFO asyncssh:logging.py:92 [conn=181, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=18] Command: tc -j -s qdisc show dev swp34 INFO asyncssh:logging.py:92 [conn=181, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=18] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"ets","handle":"10:","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"quanta":[10,10,9,8,8,7,6,6],"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":2153,"packets":11,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":117383168,"packets":229264,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":117383168,"packets":229264,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":117383168,"packets":229264,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":117383168,"packets":229264,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":117383168,"packets":229264,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":117387590,"packets":229286,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":117383528,"packets":229268,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":117383168,"packets":229264,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [DENT infrastructure 2] Band | PRIO | Statistics, bytes | Rate, Mbit | Expected, Mbit | Deviation, % | Duration, s | Status INFO DENT:Logger.py:84 [DENT infrastructure 2] 8 | 0 | 117387590 | 34.42 | 34.42 | 0.0 | 26.02 | True INFO DENT:Logger.py:84 [DENT infrastructure 2] 7 | 1 | 117383168 | 34.42 | 34.42 | 0.0 | 26.02 | True INFO DENT:Logger.py:84 [DENT infrastructure 2] 6 | 2 | 117383168 | 34.42 | 34.42 | 0.0 | 26.02 | True INFO DENT:Logger.py:84 [DENT infrastructure 2] 5 | 3 | 117383168 | 34.42 | 34.42 | 0.0 | 26.02 | True INFO DENT:Logger.py:84 [DENT infrastructure 2] 4 | 4 | 117383168 | 34.42 | 34.42 | 0.0 | 26.02 | True INFO DENT:Logger.py:84 [DENT infrastructure 2] 3 | 5 | 117383168 | 34.42 | 34.42 | 0.0 | 26.02 | True INFO DENT:Logger.py:84 [DENT infrastructure 2] 2 | 6 | 117383168 | 34.42 | 34.42 | 0.0 | 26.02 | True INFO DENT:Logger.py:84 [DENT infrastructure 2] 1 | 7 | 117383528 | 34.42 | 34.42 | 0.0 | 26.02 | True -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_qos_trust_mode[wrr-L2] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_trust_mode.py INFO asyncssh:logging.py:92 [conn=181, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=19] Channel closed DEBUG infra2:Logger.py:156 dcb app flush dev swp33 && dcb app flush dev swp34 && dcb app flush dev swp35 && dcb app flush dev swp36 INFO asyncssh:logging.py:92 [conn=181, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=20] Command: dcb app flush dev swp33 && dcb app flush dev swp34 && dcb app flush dev swp35 && dcb app flush dev swp36 INFO asyncssh:logging.py:92 [conn=181, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=181, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=21] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=181, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=22] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 02:47:54 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=181, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=23] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=181, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=24] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=181, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=24] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":180,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=181, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=25] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=181, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=26] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=181, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=26] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=181, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=27] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=181, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=28] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 02:47:54 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=181, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=29] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=181, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=30] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=181, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=30] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"quanta":[10,10,9,8,8,7,6,6],"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=181, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=31] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=181, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=32] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=181, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=32] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=181, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=33] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=181, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=34] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=181, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=34] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=181, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=35] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=181, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=181, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=36] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=181, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=37] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=181, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=181, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=38] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=181, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=181, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=181, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=40] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=181, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=181, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=181, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=42] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=181, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=181, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=181, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=181, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=181, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=181, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=46] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=181, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=181, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=181, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=48] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=181, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=181, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=181, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=50] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=181, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=181, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=52] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=181, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=52] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=181, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=181, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=54] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=181, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=54] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=181, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=55] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=181, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=56] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=181, chan=56] Received exit status 1 INFO asyncssh:logging.py:92 [conn=181, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=56] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=181, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=57] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=181, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=58] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=181, chan=58] Received exit status 1 INFO asyncssh:logging.py:92 [conn=181, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=58] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=181, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=59] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=181, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=60] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=181, chan=60] Received exit status 1 INFO asyncssh:logging.py:92 [conn=181, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=60] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=181, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=61] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=181, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=62] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=181, chan=62] Received exit status 1 INFO asyncssh:logging.py:92 [conn=181, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=62] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=181, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=63] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=181, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=64] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=181, chan=64] Received exit status 1 INFO asyncssh:logging.py:92 [conn=181, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=64] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=181, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=65] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=181, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=66] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=181, chan=66] Received exit status 1 INFO asyncssh:logging.py:92 [conn=181, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=66] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=181, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=67] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=181, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=68] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=181, chan=68] Received exit status 1 INFO asyncssh:logging.py:92 [conn=181, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=68] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=181, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=69] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=181, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=70] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=181, chan=70] Received exit status 1 INFO asyncssh:logging.py:92 [conn=181, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=70] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=181, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=71] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=181, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=72] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=181, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=72] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=181, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=181, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=181, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=73] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=181, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=181, chan=74] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=181, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=181, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=181, chan=74] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/qos/test_qos_trust_mode.py::test_qos_trust_mode[wrr-L3] | 132.98 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-11153' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_qos_trust_mode[wrr-L3]">Starting testcase:test_qos_trust_mode[wrr-L3] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_trust_mode.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=181, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=182] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=182] Local address: 172.17.0.3, port 47336 INFO asyncssh:logging.py:92 [conn=182] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=182] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=182] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=182, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=0] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 02:47:55 UTC 2023 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=182, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=1] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=182, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=2] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=2] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 02:47:55 UTC 2023 INFO asyncssh:logging.py:92 [conn=182, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link add name br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=182, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=4] Command: ip link add name br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=182, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=182, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=182, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=182, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=182, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=7] Channel closed DEBUG infra2:Logger.py:156 dcb app add dev swp33 dscp-prio 39:0 59:1 18:2 11:3 2:4 17:5 24:6 5:7 INFO asyncssh:logging.py:92 [conn=182, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=8] Command: dcb app add dev swp33 dscp-prio 39:0 59:1 18:2 11:3 2:4 17:5 24:6 5:7 INFO asyncssh:logging.py:92 [conn=182, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=182, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=9] Channel closed DEBUG infra2:Logger.py:156 dcb -j app show dev swp33 dscp-prio INFO asyncssh:logging.py:92 [conn=182, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=10] Command: dcb -j app show dev swp33 dscp-prio INFO asyncssh:logging.py:92 [conn=182, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=10] Channel closed DEBUG infra2:Logger.py:156 {"dscp_prio":[[2,4],[5,7],[11,3],[17,5],[18,2],[24,6],[39,0],[59,1]]} INFO asyncssh:logging.py:92 [conn=182, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=11] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp34 handle 10 root ets bands 8 quanta 10 10 8 8 7 7 4 1 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=182, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=12] Command: tc qdisc add dev swp34 handle 10 root ets bands 8 quanta 10 10 8 8 7 7 4 1 priomap 7 6 5 4 3 2 1 0 INFO asyncssh:logging.py:92 [conn=182, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=182, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=13] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp34 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=182, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=14] Command: tc qdisc add dev swp34 handle 18 parent 10:8 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 17 parent 10:7 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 16 parent 10:6 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 15 parent 10:5 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 14 parent 10:4 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 13 parent 10:3 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 12 parent 10:2 tbf rate 10Gbit burst 1M limit 1M && tc qdisc add dev swp34 handle 11 parent 10:1 tbf rate 10Gbit burst 1M limit 1M INFO asyncssh:logging.py:92 [conn=182, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=182, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=15] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=182, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=16] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=182, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"quanta":[10,10,8,8,7,7,4,1],"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.1/24', 'count': 1, 'ip': '1.1.1.1', 'gw': '1.1.1.2', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating ethernet traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.1/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f73b4bb0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 230141 Rx 230141 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 230140 Rx 230140 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 230141 Rx 230141 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 230140 Rx 230140 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 230141 Rx 230141 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 230140 Rx 230140 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 230141 Rx 230141 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic SIP-DIP 00:11:01:00:00:01-00:12:01:00:00:01 Tx 230141 Rx 230141 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] DSCP | PRIO | Rx Rate, Mbit | Loss, % | Duration, s | Status INFO DENT:Logger.py:84 [Ixia Traffic Generator] 39 | 0 | 34.42 | 0.00 | 26.12 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 59 | 1 | 34.42 | 0.00 | 26.12 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 18 | 2 | 34.42 | 0.00 | 26.12 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 11 | 3 | 34.42 | 0.00 | 26.12 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 2 | 4 | 34.42 | 0.00 | 26.12 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 17 | 5 | 34.42 | 0.00 | 26.12 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 24 | 6 | 34.42 | 0.00 | 26.12 | True INFO DENT:Logger.py:84 [Ixia Traffic Generator] 5 | 7 | 34.42 | 0.00 | 26.12 | True INFO asyncssh:logging.py:92 [conn=182, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=17] Channel closed DEBUG infra2:Logger.py:156 tc -j -s qdisc show dev swp34 INFO asyncssh:logging.py:92 [conn=182, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=18] Command: tc -j -s qdisc show dev swp34 INFO asyncssh:logging.py:92 [conn=182, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=18] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"ets","handle":"10:","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"quanta":[10,10,8,8,7,7,4,1],"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]},"bytes":2690,"packets":22,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"15:","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":117832192,"packets":230141,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"17:","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":117832192,"packets":230141,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"12:","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":117831680,"packets":230140,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"14:","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":117832192,"packets":230141,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"16:","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":117832192,"packets":230141,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"18:","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":117837240,"packets":230178,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"11:","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":117832644,"packets":230150,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0},{"kind":"tbf","handle":"13:","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0},"bytes":117831680,"packets":230140,"drops":0,"overlimits":0,"requeues":0,"backlog":0,"qlen":0}] INFO DENT:Logger.py:84 [DENT infrastructure 2] Band | PRIO | Statistics, bytes | Rate, Mbit | Expected, Mbit | Deviation, % | Duration, s | Status INFO DENT:Logger.py:84 [DENT infrastructure 2] 8 | 0 | 117837240 | 34.42 | 34.42 | 0.0 | 26.12 | True INFO DENT:Logger.py:84 [DENT infrastructure 2] 7 | 1 | 117832192 | 34.42 | 34.42 | 0.0 | 26.12 | True INFO DENT:Logger.py:84 [DENT infrastructure 2] 6 | 2 | 117832192 | 34.42 | 34.42 | 0.0 | 26.12 | True INFO DENT:Logger.py:84 [DENT infrastructure 2] 5 | 3 | 117832192 | 34.42 | 34.42 | 0.0 | 26.12 | True INFO DENT:Logger.py:84 [DENT infrastructure 2] 4 | 4 | 117832192 | 34.42 | 34.42 | 0.0 | 26.12 | True INFO DENT:Logger.py:84 [DENT infrastructure 2] 3 | 5 | 117831680 | 34.42 | 34.42 | 0.0 | 26.12 | True INFO DENT:Logger.py:84 [DENT infrastructure 2] 2 | 6 | 117831680 | 34.42 | 34.42 | 0.0 | 26.12 | True INFO DENT:Logger.py:84 [DENT infrastructure 2] 1 | 7 | 117832644 | 34.42 | 34.42 | 0.0 | 26.12 | True -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_qos_trust_mode[wrr-L3] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/qos/test_qos_trust_mode.py INFO asyncssh:logging.py:92 [conn=182, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=19] Channel closed DEBUG infra2:Logger.py:156 dcb app flush dev swp33 && dcb app flush dev swp34 && dcb app flush dev swp35 && dcb app flush dev swp36 INFO asyncssh:logging.py:92 [conn=182, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=20] Command: dcb app flush dev swp33 && dcb app flush dev swp34 && dcb app flush dev swp35 && dcb app flush dev swp36 INFO asyncssh:logging.py:92 [conn=182, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=182, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=21] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=182, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=22] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=22] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 02:50:07 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=182, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=23] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=182, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=24] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=182, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=24] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":181,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=182, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=25] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=182, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=26] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=182, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=26] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=182, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=27] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=182, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=28] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 02:50:07 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=182, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=29] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=182, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=30] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=182, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=30] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ets","handle":"10:","dev":"swp34","root":true,"refcnt":2,"offloaded":true,"options":{"bands":8,"quanta":[10,10,8,8,7,7,4,1],"priomap":[7,6,5,4,3,2,1,0,7,7,7,7,7,7,7,7]}},{"kind":"tbf","handle":"15:","dev":"swp34","parent":"10:5","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"17:","dev":"swp34","parent":"10:7","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"12:","dev":"swp34","parent":"10:2","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"14:","dev":"swp34","parent":"10:4","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"16:","dev":"swp34","parent":"10:6","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"18:","dev":"swp34","parent":"10:8","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"11:","dev":"swp34","parent":"10:1","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"tbf","handle":"13:","dev":"swp34","parent":"10:3","offloaded":true,"options":{"rate":1250000000,"burst":1047500,"lat":0}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}}] INFO asyncssh:logging.py:92 [conn=182, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=31] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=182, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=32] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=182, chan=32] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=32] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=182, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=33] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=182, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=34] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=182, chan=34] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=34] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=182, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=35] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=182, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=36] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=182, chan=36] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=36] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=182, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=37] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=182, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=38] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=182, chan=38] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=38] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=182, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=39] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=182, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=40] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=182, chan=40] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=40] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=182, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=182, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=42] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=182, chan=42] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=42] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=182, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=182, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=44] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=182, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=182, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=182, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=46] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=182, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=46] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=182, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=182, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=182, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=48] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=182, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=182, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=182, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=50] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=182, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=182, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=52] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=182, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=52] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=182, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=182, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=54] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=182, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=54] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=182, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=55] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=182, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=56] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=182, chan=56] Received exit status 1 INFO asyncssh:logging.py:92 [conn=182, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=56] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=182, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=57] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=182, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=58] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=182, chan=58] Received exit status 1 INFO asyncssh:logging.py:92 [conn=182, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=58] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=182, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=59] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=182, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=60] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=182, chan=60] Received exit status 1 INFO asyncssh:logging.py:92 [conn=182, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=60] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=182, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=61] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=182, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=62] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=182, chan=62] Received exit status 1 INFO asyncssh:logging.py:92 [conn=182, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=62] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=182, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=63] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=182, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=64] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=182, chan=64] Received exit status 1 INFO asyncssh:logging.py:92 [conn=182, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=64] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=182, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=65] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=182, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=66] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=182, chan=66] Received exit status 1 INFO asyncssh:logging.py:92 [conn=182, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=66] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=182, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=67] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=182, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=68] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=182, chan=68] Received exit status 1 INFO asyncssh:logging.py:92 [conn=182, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=68] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=182, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=69] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=182, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=70] Command: tc qdisc delete dev swp34 tbf INFO asyncssh:logging.py:92 [conn=182, chan=70] Received exit status 1 INFO asyncssh:logging.py:92 [conn=182, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=70] Channel closed DEBUG infra2:Logger.py:156 tbf: the "rate" parameter is mandatory. tbf: the "burst" parameter is mandatory. tbf: either "limit" or "latency" is required. Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ] [ peakrate KBPS ] [ latency TIME ] [ overhead BYTES ] [ linklayer TYPE ] INFO asyncssh:logging.py:92 [conn=182, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=71] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=182, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=72] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=182, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=72] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=182, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=182, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=182, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=73] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=182, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=182, chan=74] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=182, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=182, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=182, chan=74] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. | |||
| Passed | functional/storm_control/test_storm_control_br_and_mc_lag_and_vlan_membership.py::test_storm_control_br_and_mc_lag_and_vlan_membership | 200.83 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_storm_control_br_and_mc_lag_and_vlan_membership">Starting testcase:test_storm_control_br_and_mc_lag_and_vlan_membership from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_br_and_mc_lag_and_vlan_membership.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-11241' coro=<test_storm_control_br_and_mc_lag_and_vlan_membership() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_br_and_mc_lag_and_vlan_membership.py:50> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=182, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=183] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=183] Local address: 172.17.0.3, port 52450 INFO asyncssh:logging.py:92 [conn=183] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=183] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=183] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=183, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=0] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 02:50:08 UTC 2023 INFO asyncssh:logging.py:92 [conn=183, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add bond1 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=183, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=2] Command: ip link add bond1 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=183, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=183, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev bond1 up && ip link set dev swp33 down && ip link set dev swp33 master bond1 INFO asyncssh:logging.py:92 [conn=183, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=4] Command: ip link set dev bond1 up && ip link set dev swp33 down && ip link set dev swp33 master bond1 INFO asyncssh:logging.py:92 [conn=183, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=183, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link add bond2 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=183, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=6] Command: ip link add bond2 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=183, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=183, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link set dev bond2 up && ip link set dev swp35 down && ip link set dev swp35 master bond2 INFO asyncssh:logging.py:92 [conn=183, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=8] Command: ip link set dev bond2 up && ip link set dev swp35 down && ip link set dev swp35 master bond2 INFO asyncssh:logging.py:92 [conn=183, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=183, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=183, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=183, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=183, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=11] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=183, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=12] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=183, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=183, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=183, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=14] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=183, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=183, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp34 master br0 && ip link set dev swp36 master br0 INFO asyncssh:logging.py:92 [conn=183, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=16] Command: ip link set dev swp34 master br0 && ip link set dev swp36 master br0 INFO asyncssh:logging.py:92 [conn=183, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=183, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip link set dev bond1 master br0 && ip link set dev bond2 master br0 INFO asyncssh:logging.py:92 [conn=183, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=18] Command: ip link set dev bond1 master br0 && ip link set dev bond2 master br0 INFO asyncssh:logging.py:92 [conn=183, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=183, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 type bridge vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=183, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=20] Command: ip link set dev br0 type bridge vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=183, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=183, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=21] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp34 vid 1 pvid untagged && bridge vlan add dev swp36 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=183, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=22] Command: bridge vlan add dev swp34 vid 1 pvid untagged && bridge vlan add dev swp36 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=183, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=22] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=183, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=23] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev bond1 vid 1 pvid untagged && bridge vlan add dev bond2 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=183, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=24] Command: bridge vlan add dev bond1 vid 1 pvid untagged && bridge vlan add dev bond2 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=183, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=24] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=183, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=25] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 94404 cmode runtime INFO asyncssh:logging.py:92 [conn=183, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=26] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 94404 cmode runtime INFO asyncssh:logging.py:92 [conn=183, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=26] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=183, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=27] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=183, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=28] Command: devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=183, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=28] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":94404}]}]}} INFO asyncssh:logging.py:92 [conn=183, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=29] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 12010 cmode runtime INFO asyncssh:logging.py:92 [conn=183, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=30] Command: devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 12010 cmode runtime INFO asyncssh:logging.py:92 [conn=183, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=30] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=183, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=31] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=183, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=32] Command: devlink -j port param show pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=183, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=32] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":12010}]}]}} INFO asyncssh:logging.py:92 [conn=183, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=33] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 42099 cmode runtime INFO asyncssh:logging.py:92 [conn=183, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=34] Command: devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 42099 cmode runtime INFO asyncssh:logging.py:92 [conn=183, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=34] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=183, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=35] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=183, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=36] Command: devlink -j port param show pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=183, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=36] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/34":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":42099}]}]}} INFO asyncssh:logging.py:92 [conn=183, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=37] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 37519 cmode runtime INFO asyncssh:logging.py:92 [conn=183, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=38] Command: devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 37519 cmode runtime INFO asyncssh:logging.py:92 [conn=183, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=38] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=183, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=39] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=183, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=40] Command: devlink -j port param show pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=183, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=40] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/34":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":37519}]}]}} INFO asyncssh:logging.py:92 [conn=183, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=41] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 32678 cmode runtime INFO asyncssh:logging.py:92 [conn=183, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=42] Command: devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 32678 cmode runtime INFO asyncssh:logging.py:92 [conn=183, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=42] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=183, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=43] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=183, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=44] Command: devlink -j port param show pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=183, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=44] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":32678}]}]}} INFO asyncssh:logging.py:92 [conn=183, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=45] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 36309 cmode runtime INFO asyncssh:logging.py:92 [conn=183, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=46] Command: devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 36309 cmode runtime INFO asyncssh:logging.py:92 [conn=183, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=46] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=183, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=47] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=183, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=48] Command: devlink -j port param show pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=183, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=48] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/35":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":36309}]}]}} INFO asyncssh:logging.py:92 [conn=183, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=49] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 83511 cmode runtime INFO asyncssh:logging.py:92 [conn=183, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=50] Command: devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 83511 cmode runtime INFO asyncssh:logging.py:92 [conn=183, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=50] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=183, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=51] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=183, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=52] Command: devlink -j port param show pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=183, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=52] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/36":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":83511}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_br INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1_mc INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2_mc INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3_mc INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f7441300>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:5 Tx 0 Rx 1010769 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:6 Tx 2217324 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:7 Tx 0 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:8 Tx 0 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=183, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=53] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=183, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=54] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=183, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=54] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":94404}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":12010}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":37519}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":42099}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":32678}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":36309}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":97367}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":83511}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/49":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/50":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/51":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/52":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=183, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=55] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=183, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=56] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=183, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=56] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=183, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=57] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=183, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=58] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=183, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=58] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=183, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=59] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=183, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=60] Command: devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=183, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=60] Channel closed DEBUG infra2:Logger.py:156 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_storm_control_br_and_mc_lag_and_vlan_membership from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_br_and_mc_lag_and_vlan_membership.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=183, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=61] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=183, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=62] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=62] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 02:53:22 UTC 2023 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=183, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=63] Channel closed DEBUG infra2:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=183, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=64] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=183, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=64] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"f6:33:41:29:6d:87","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"18:be:92:13:64:a5","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":0,"bridge_id":"8000.18:be:92:13:64:a5","root_id":"8000.18:be:92:13:64:a5","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"18:be:92:13:64:a7","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.18:be:92:13:64:a5","root_id":"8000.18:be:92:13:64:a5","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":182,"ifname":"bond1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1},"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8003","no":"0x3","designated_port":32771,"designated_cost":0,"bridge_id":"8000.18:be:92:13:64:a5","root_id":"8000.18:be:92:13:64:a5","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":183,"ifname":"bond2","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1},"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8004","no":"0x4","designated_port":32772,"designated_cost":0,"bridge_id":"8000.18:be:92:13:64:a5","root_id":"8000.18:be:92:13:64:a5","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":184,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":30000,"stp_state":0,"priority":32768,"vlan_filtering":1,"vlan_protocol":"802.1Q","bridge_id":"8000.18:be:92:13:64:a5","root_id":"8000.18:be:92:13:64:a5","root_port":0,"root_path_cost":0,"topology_change":0,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":105.89,"vlan_default_pvid":0,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535}] INFO asyncssh:logging.py:92 [conn=183, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=65] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond1 INFO asyncssh:logging.py:92 [conn=183, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=66] Command: ip link delete bond1 INFO asyncssh:logging.py:92 [conn=183, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=66] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=183, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=67] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond2 INFO asyncssh:logging.py:92 [conn=183, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=68] Command: ip link delete bond2 INFO asyncssh:logging.py:92 [conn=183, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=68] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=183, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=69] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=183, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=70] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=70] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 02:53:23 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=183, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=71] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=183, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=72] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=72] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 02:53:28 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=183, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=73] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=183, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=74] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=183, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=74] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":184,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=183, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=183, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=75] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=183, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=183, chan=76] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=183, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=183, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=183, chan=76] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/storm_control/test_storm_control_br_and_unk_un_and_vlan_membership.py::test_storm_control_br_and_unk_un_and_vlan_membership | 190.32 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_storm_control_br_and_unk_un_and_vlan_membership">Starting testcase:test_storm_control_br_and_unk_un_and_vlan_membership from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_br_and_unk_un_and_vlan_membership.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-11330' coro=<test_storm_control_br_and_unk_un_and_vlan_membership() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_br_and_unk_un_and_vlan_membership.py:50> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=183, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=184] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=184] Local address: 172.17.0.3, port 46332 INFO asyncssh:logging.py:92 [conn=184] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=184] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=184] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=184, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=0] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 02:53:29 UTC 2023 INFO asyncssh:logging.py:92 [conn=184, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add bond1 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=184, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=2] Command: ip link add bond1 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=184, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=184, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev bond1 up && ip link set dev swp33 down && ip link set dev swp33 master bond1 INFO asyncssh:logging.py:92 [conn=184, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=4] Command: ip link set dev bond1 up && ip link set dev swp33 down && ip link set dev swp33 master bond1 INFO asyncssh:logging.py:92 [conn=184, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=184, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link add bond2 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=184, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=6] Command: ip link add bond2 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=184, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=184, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link set dev bond2 up && ip link set dev swp35 down && ip link set dev swp35 master bond2 INFO asyncssh:logging.py:92 [conn=184, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=8] Command: ip link set dev bond2 up && ip link set dev swp35 down && ip link set dev swp35 master bond2 INFO asyncssh:logging.py:92 [conn=184, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=184, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=184, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=184, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=184, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=11] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=184, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=12] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=184, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=184, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=184, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=14] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=184, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=184, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp34 master br0 && ip link set dev swp36 master br0 INFO asyncssh:logging.py:92 [conn=184, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=16] Command: ip link set dev swp34 master br0 && ip link set dev swp36 master br0 INFO asyncssh:logging.py:92 [conn=184, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=184, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip link set dev bond1 master br0 && ip link set dev bond2 master br0 INFO asyncssh:logging.py:92 [conn=184, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=18] Command: ip link set dev bond1 master br0 && ip link set dev bond2 master br0 INFO asyncssh:logging.py:92 [conn=184, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=184, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 type bridge vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=184, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=20] Command: ip link set dev br0 type bridge vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=184, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=184, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=21] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp34 vid 1 pvid untagged && bridge vlan add dev swp36 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=184, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=22] Command: bridge vlan add dev swp34 vid 1 pvid untagged && bridge vlan add dev swp36 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=184, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=22] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=184, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=23] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev bond1 vid 1 pvid untagged && bridge vlan add dev bond2 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=184, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=24] Command: bridge vlan add dev bond1 vid 1 pvid untagged && bridge vlan add dev bond2 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=184, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=24] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=184, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=25] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 94404 cmode runtime INFO asyncssh:logging.py:92 [conn=184, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=26] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 94404 cmode runtime INFO asyncssh:logging.py:92 [conn=184, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=26] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=184, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=27] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=184, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=28] Command: devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=184, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=28] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":94404}]}]}} INFO asyncssh:logging.py:92 [conn=184, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=29] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 1210 cmode runtime INFO asyncssh:logging.py:92 [conn=184, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=30] Command: devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 1210 cmode runtime INFO asyncssh:logging.py:92 [conn=184, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=30] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=184, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=31] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=184, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=32] Command: devlink -j port param show pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=184, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=32] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":1210}]}]}} INFO asyncssh:logging.py:92 [conn=184, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=33] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 35099 cmode runtime INFO asyncssh:logging.py:92 [conn=184, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=34] Command: devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 35099 cmode runtime INFO asyncssh:logging.py:92 [conn=184, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=34] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=184, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=35] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=184, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=36] Command: devlink -j port param show pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=184, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=36] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/34":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":35099}]}]}} INFO asyncssh:logging.py:92 [conn=184, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=37] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 37519 cmode runtime INFO asyncssh:logging.py:92 [conn=184, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=38] Command: devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 37519 cmode runtime INFO asyncssh:logging.py:92 [conn=184, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=38] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=184, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=39] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=184, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=40] Command: devlink -j port param show pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=184, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=40] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/34":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":37519}]}]}} INFO asyncssh:logging.py:92 [conn=184, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=41] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 32678 cmode runtime INFO asyncssh:logging.py:92 [conn=184, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=42] Command: devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 32678 cmode runtime INFO asyncssh:logging.py:92 [conn=184, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=42] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=184, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=43] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=184, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=44] Command: devlink -j port param show pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=184, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=44] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":32678}]}]}} INFO asyncssh:logging.py:92 [conn=184, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=45] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 20511 cmode runtime INFO asyncssh:logging.py:92 [conn=184, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=46] Command: devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 20511 cmode runtime INFO asyncssh:logging.py:92 [conn=184, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=46] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=184, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=47] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=184, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=48] Command: devlink -j port param show pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=184, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=48] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/35":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":20511}]}]}} INFO asyncssh:logging.py:92 [conn=184, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=49] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 83511 cmode runtime INFO asyncssh:logging.py:92 [conn=184, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=50] Command: devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 83511 cmode runtime INFO asyncssh:logging.py:92 [conn=184, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=50] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=184, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=51] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=184, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=52] Command: devlink -j port param show pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=184, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=52] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/36":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":83511}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_br INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1_unk_un INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2_unk_un INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3_unk_un INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f7019450>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:5 Tx 0 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:6 Tx 0 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:7 Tx 1313012 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:8 Tx 0 Rx 428661 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=184, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=53] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=184, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=54] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=184, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=54] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":94404}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":1210}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":37519}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":35099}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":32678}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":20511}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":83511}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/49":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/50":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/51":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/52":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=184, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=55] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=184, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=56] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=184, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=56] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=184, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=57] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=184, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=58] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=184, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=58] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=184, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=59] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=184, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=60] Command: devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=184, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=60] Channel closed DEBUG infra2:Logger.py:156 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_storm_control_br_and_unk_un_and_vlan_membership from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_br_and_unk_un_and_vlan_membership.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=184, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=61] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=184, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=62] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=62] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 02:56:34 UTC 2023 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=184, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=63] Channel closed DEBUG infra2:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=184, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=64] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=184, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=64] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"f6:33:41:29:6d:87","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"18:be:92:13:64:a5","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":0,"bridge_id":"8000.18:be:92:13:64:a5","root_id":"8000.18:be:92:13:64:a5","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"18:be:92:13:64:a7","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.18:be:92:13:64:a5","root_id":"8000.18:be:92:13:64:a5","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":185,"ifname":"bond1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1},"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8003","no":"0x3","designated_port":32771,"designated_cost":0,"bridge_id":"8000.18:be:92:13:64:a5","root_id":"8000.18:be:92:13:64:a5","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":186,"ifname":"bond2","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1},"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8004","no":"0x4","designated_port":32772,"designated_cost":0,"bridge_id":"8000.18:be:92:13:64:a5","root_id":"8000.18:be:92:13:64:a5","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":187,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":30000,"stp_state":0,"priority":32768,"vlan_filtering":1,"vlan_protocol":"802.1Q","bridge_id":"8000.18:be:92:13:64:a5","root_id":"8000.18:be:92:13:64:a5","root_port":0,"root_path_cost":0,"topology_change":0,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":115.34,"vlan_default_pvid":0,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535}] INFO asyncssh:logging.py:92 [conn=184, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=65] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond1 INFO asyncssh:logging.py:92 [conn=184, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=66] Command: ip link delete bond1 INFO asyncssh:logging.py:92 [conn=184, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=66] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=184, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=67] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond2 INFO asyncssh:logging.py:92 [conn=184, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=68] Command: ip link delete bond2 INFO asyncssh:logging.py:92 [conn=184, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=68] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=184, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=69] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=184, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=70] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=70] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 02:56:34 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=184, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=71] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=184, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=72] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=72] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 02:56:39 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=184, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=73] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=184, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=74] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=184, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=74] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":187,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=184, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=184, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=75] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=184, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=184, chan=76] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=184, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=184, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=184, chan=76] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/storm_control/test_storm_control_broadcast_traffic.py::test_storm_control_broadcast_traffic | 147.46 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_storm_control_broadcast_traffic">Starting testcase:test_storm_control_broadcast_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_broadcast_traffic.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-11418' coro=<test_storm_control_broadcast_traffic() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_broadcast_traffic.py:48> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=184, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=185] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=185] Local address: 172.17.0.3, port 56876 INFO asyncssh:logging.py:92 [conn=185] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=185] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=185] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=185, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=0] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 02:56:39 UTC 2023 INFO asyncssh:logging.py:92 [conn=185, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=185, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=185, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=185, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=185, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=185, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=185, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=185, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=185, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=185, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=7] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=185, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=8] Command: devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=185, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=8] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=185, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=9] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 118227 cmode runtime INFO asyncssh:logging.py:92 [conn=185, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=10] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 118227 cmode runtime INFO asyncssh:logging.py:92 [conn=185, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=185, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=11] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=185, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=12] Command: devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=185, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=12] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":118227}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:2:7' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_A INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f7440d60>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:5 Tx 1550713 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:6 Tx 0 Rx 1530062 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:7 Tx 0 Rx 1529989 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:8 Tx 0 Rx 1529890 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=185, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=13] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=185, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=14] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=185, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=14] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":118227}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/49":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/50":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/51":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/52":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=185, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=15] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=185, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=16] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=185, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=185, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=17] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=185, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=18] Command: devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=185, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=185, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=19] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=185, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=20] Command: devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=185, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=185, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=21] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=185, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=22] Command: devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=185, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=22] Channel closed DEBUG infra2:Logger.py:156 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_storm_control_broadcast_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_broadcast_traffic.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=185, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=23] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=185, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=24] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 02:59:01 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=185, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=25] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=185, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=26] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 02:59:06 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=185, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=27] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=185, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=28] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=185, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=28] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":188,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=185, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=185, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=29] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=185, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=185, chan=30] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=185, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=185, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=185, chan=30] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/storm_control/test_storm_control_different_rates.py::test_storm_control_different_rates | 310.62 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_storm_control_different_rates">Starting testcase:test_storm_control_different_rates from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_different_rates.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-11458' coro=<test_storm_control_different_rates() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_different_rates.py:90> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=185, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=186] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=186] Local address: 172.17.0.3, port 54004 INFO asyncssh:logging.py:92 [conn=186] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=186] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=186] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=186, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=0] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 02:59:06 UTC 2023 INFO asyncssh:logging.py:92 [conn=186, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=186, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=2] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=186, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=186, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=186, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=4] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=186, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=186, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=186, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=6] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=186, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=186, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 master br0 && ip link set dev swp34 master br0 && ip link set dev swp35 master br0 && ip link set dev swp36 master br0 INFO asyncssh:logging.py:92 [conn=186, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=8] Command: ip link set dev swp33 master br0 && ip link set dev swp34 master br0 && ip link set dev swp35 master br0 && ip link set dev swp36 master br0 INFO asyncssh:logging.py:92 [conn=186, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=186, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=9] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp33 vid 1 pvid untagged && bridge vlan add dev swp34 vid 1 pvid untagged && bridge vlan add dev swp35 vid 2 pvid untagged && bridge vlan add dev swp36 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=186, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=10] Command: bridge vlan add dev swp33 vid 1 pvid untagged && bridge vlan add dev swp34 vid 1 pvid untagged && bridge vlan add dev swp35 vid 2 pvid untagged && bridge vlan add dev swp36 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=186, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=186, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=11] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 1533 cmode runtime INFO asyncssh:logging.py:92 [conn=186, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=12] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 1533 cmode runtime INFO asyncssh:logging.py:92 [conn=186, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=186, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=13] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=186, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=14] Command: devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=186, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=14] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":1533}]}]}} INFO asyncssh:logging.py:92 [conn=186, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=15] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 2874 cmode runtime INFO asyncssh:logging.py:92 [conn=186, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=16] Command: devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 2874 cmode runtime INFO asyncssh:logging.py:92 [conn=186, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=186, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=17] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=186, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=18] Command: devlink -j port param show pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=186, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=18] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":2874}]}]}} INFO asyncssh:logging.py:92 [conn=186, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=19] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 3891 cmode runtime INFO asyncssh:logging.py:92 [conn=186, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=20] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 3891 cmode runtime INFO asyncssh:logging.py:92 [conn=186, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=186, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=21] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=186, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=22] Command: devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=186, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=22] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":3891}]}]}} INFO asyncssh:logging.py:92 [conn=186, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=23] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 4619 cmode runtime INFO asyncssh:logging.py:92 [conn=186, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=24] Command: devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 4619 cmode runtime INFO asyncssh:logging.py:92 [conn=186, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=24] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=186, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=25] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=186, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=26] Command: devlink -j port param show pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=186, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=26] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":4619}]}]}} INFO asyncssh:logging.py:92 [conn=186, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=27] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 1023 cmode runtime INFO asyncssh:logging.py:92 [conn=186, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=28] Command: devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 1023 cmode runtime INFO asyncssh:logging.py:92 [conn=186, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=28] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=186, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=29] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=186, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=30] Command: devlink -j port param show pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=186, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=30] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/35":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":1023}]}]}} INFO asyncssh:logging.py:92 [conn=186, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=31] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 5213 cmode runtime INFO asyncssh:logging.py:92 [conn=186, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=32] Command: devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 5213 cmode runtime INFO asyncssh:logging.py:92 [conn=186, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=32] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=186, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=33] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=186, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=34] Command: devlink -j port param show pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=186, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=34] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/36":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":5213}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1_swp1->swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1_swp1->swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1_swp1->swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2_swp1->swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2_swp1->swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2_swp1->swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3_swp1->swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3_swp1->swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3_swp1->swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_4_swp2->swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_4_swp2->swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_4_swp2->swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_5_swp3->swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_5_swp3->swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_5_swp3->swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_6_swp4->swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_6_swp4->swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_6_swp4->swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f73ca8f0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_1_swp1->swp4 Tx 41006 Rx 0 Frames Delta 41006 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_1_swp1->swp3 Tx 285852 Rx 0 Frames Delta 285852 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_1_swp1->swp2 Tx 149403 Rx 12756 Frames Delta 136647 Loss 91.462 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_2_swp1->swp4 Tx 321119 Rx 0 Frames Delta 321119 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_2_swp1->swp3 Tx 312989 Rx 0 Frames Delta 312989 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_2_swp1->swp2 Tx 79762 Rx 13740 Frames Delta 66022 Loss 82.774 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_3_swp1->swp4 Tx 88308 Rx 0 Frames Delta 88308 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_3_swp1->swp3 Tx 69456 Rx 0 Frames Delta 69456 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_3_swp1->swp2 Tx 59367 Rx 12715 Frames Delta 46652 Loss 78.582 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_4_swp2->swp4 Tx 398809 Rx 0 Frames Delta 398809 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_4_swp2->swp3 Tx 123941 Rx 0 Frames Delta 123941 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_4_swp2->swp1 Tx 58593 Rx 15817 Frames Delta 42776 Loss 73.005 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_5_swp3->swp4 Tx 37693 Rx 2118 Frames Delta 35575 Loss 94.381 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_5_swp3->swp2 Tx 55070 Rx 0 Frames Delta 55070 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_5_swp3->swp1 Tx 80805 Rx 0 Frames Delta 80805 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_6_swp4->swp3 Tx 34153 Rx 9841 Frames Delta 24312 Loss 71.186 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_6_swp4->swp2 Tx 119740 Rx 0 Frames Delta 119740 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_6_swp4->swp1 Tx 40043 Rx 0 Frames Delta 40043 Loss 100.000 INFO asyncssh:logging.py:92 [conn=186, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=35] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 1533 cmode runtime INFO asyncssh:logging.py:92 [conn=186, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=36] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 1533 cmode runtime INFO asyncssh:logging.py:92 [conn=186, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=36] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=186, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=37] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=186, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=38] Command: devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=186, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=38] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":1533}]}]}} INFO asyncssh:logging.py:92 [conn=186, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=39] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 2874 cmode runtime INFO asyncssh:logging.py:92 [conn=186, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=40] Command: devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 2874 cmode runtime INFO asyncssh:logging.py:92 [conn=186, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=40] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=186, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=41] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=186, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=42] Command: devlink -j port param show pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=186, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=42] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":2874}]}]}} INFO asyncssh:logging.py:92 [conn=186, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=43] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 3891 cmode runtime INFO asyncssh:logging.py:92 [conn=186, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=44] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 3891 cmode runtime INFO asyncssh:logging.py:92 [conn=186, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=44] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=186, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=45] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=186, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=46] Command: devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=186, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=46] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":3891}]}]}} INFO asyncssh:logging.py:92 [conn=186, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=47] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 4619 cmode runtime INFO asyncssh:logging.py:92 [conn=186, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=48] Command: devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 4619 cmode runtime INFO asyncssh:logging.py:92 [conn=186, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=48] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=186, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=49] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=186, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=50] Command: devlink -j port param show pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=186, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=50] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":4619}]}]}} INFO asyncssh:logging.py:92 [conn=186, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=51] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 1023 cmode runtime INFO asyncssh:logging.py:92 [conn=186, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=52] Command: devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 1023 cmode runtime INFO asyncssh:logging.py:92 [conn=186, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=52] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=186, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=53] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=186, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=54] Command: devlink -j port param show pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=186, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=54] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/35":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":1023}]}]}} INFO asyncssh:logging.py:92 [conn=186, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=55] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 5213 cmode runtime INFO asyncssh:logging.py:92 [conn=186, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=56] Command: devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 5213 cmode runtime INFO asyncssh:logging.py:92 [conn=186, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=56] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=186, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=57] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=186, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=58] Command: devlink -j port param show pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=186, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=58] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/36":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":5213}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f7440670>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_1_swp1->swp4 Tx 134289 Rx 0 Frames Delta 134289 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_1_swp1->swp3 Tx 936141 Rx 0 Frames Delta 936141 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_1_swp1->swp2 Tx 489282 Rx 41750 Frames Delta 447532 Loss 91.467 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_2_swp1->swp4 Tx 1051638 Rx 0 Frames Delta 1051638 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_2_swp1->swp3 Tx 1025015 Rx 0 Frames Delta 1025015 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_2_swp1->swp2 Tx 261214 Rx 44978 Frames Delta 216236 Loss 82.781 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_3_swp1->swp4 Tx 289201 Rx 0 Frames Delta 289201 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_3_swp1->swp3 Tx 227462 Rx 0 Frames Delta 227462 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_3_swp1->swp2 Tx 194421 Rx 41619 Frames Delta 152802 Loss 78.593 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_4_swp2->swp4 Tx 1306067 Rx 0 Frames Delta 1306067 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_4_swp2->swp3 Tx 405896 Rx 0 Frames Delta 405896 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_4_swp2->swp1 Tx 191887 Rx 51796 Frames Delta 140091 Loss 73.007 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_5_swp3->swp4 Tx 123440 Rx 6932 Frames Delta 116508 Loss 94.384 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_5_swp3->swp2 Tx 180348 Rx 0 Frames Delta 180348 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_5_swp3->swp1 Tx 264628 Rx 0 Frames Delta 264628 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_6_swp4->swp3 Tx 111846 Rx 32178 Frames Delta 79668 Loss 71.230 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_6_swp4->swp2 Tx 392137 Rx 0 Frames Delta 392137 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_6_swp4->swp1 Tx 131136 Rx 0 Frames Delta 131136 Loss 100.000 INFO asyncssh:logging.py:92 [conn=186, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=59] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 1533 cmode runtime INFO asyncssh:logging.py:92 [conn=186, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=60] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 1533 cmode runtime INFO asyncssh:logging.py:92 [conn=186, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=60] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=186, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=61] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=186, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=62] Command: devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=186, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=62] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":1533}]}]}} INFO asyncssh:logging.py:92 [conn=186, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=63] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 2874 cmode runtime INFO asyncssh:logging.py:92 [conn=186, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=64] Command: devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 2874 cmode runtime INFO asyncssh:logging.py:92 [conn=186, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=64] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=186, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=65] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=186, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=66] Command: devlink -j port param show pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=186, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=66] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":2874}]}]}} INFO asyncssh:logging.py:92 [conn=186, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=67] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 3891 cmode runtime INFO asyncssh:logging.py:92 [conn=186, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=68] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 3891 cmode runtime INFO asyncssh:logging.py:92 [conn=186, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=68] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=186, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=69] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=186, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=70] Command: devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=186, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=70] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":3891}]}]}} INFO asyncssh:logging.py:92 [conn=186, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=71] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 4619 cmode runtime INFO asyncssh:logging.py:92 [conn=186, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=72] Command: devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 4619 cmode runtime INFO asyncssh:logging.py:92 [conn=186, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=72] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=186, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=73] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=186, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=74] Command: devlink -j port param show pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=186, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=74] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":4619}]}]}} INFO asyncssh:logging.py:92 [conn=186, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=75] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 1023 cmode runtime INFO asyncssh:logging.py:92 [conn=186, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=76] Command: devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 1023 cmode runtime INFO asyncssh:logging.py:92 [conn=186, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=76] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=186, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=77] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=186, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=78] Command: devlink -j port param show pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=186, chan=78] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=78] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/35":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":1023}]}]}} INFO asyncssh:logging.py:92 [conn=186, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=79] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 5213 cmode runtime INFO asyncssh:logging.py:92 [conn=186, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=80] Command: devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 5213 cmode runtime INFO asyncssh:logging.py:92 [conn=186, chan=80] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=80] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=186, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=81] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=186, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=82] Command: devlink -j port param show pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=186, chan=82] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=82] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/36":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":5213}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f70193f0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_1_swp1->swp4 Tx 217208 Rx 0 Frames Delta 217208 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_1_swp1->swp3 Tx 1514175 Rx 0 Frames Delta 1514175 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_1_swp1->swp2 Tx 791397 Rx 67562 Frames Delta 723835 Loss 91.463 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_2_swp1->swp4 Tx 1700989 Rx 0 Frames Delta 1700989 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_2_swp1->swp3 Tx 1657926 Rx 0 Frames Delta 1657926 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_2_swp1->swp2 Tx 422504 Rx 72728 Frames Delta 349776 Loss 82.786 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_3_swp1->swp4 Tx 467772 Rx 0 Frames Delta 467772 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_3_swp1->swp3 Tx 367911 Rx 0 Frames Delta 367911 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_3_swp1->swp2 Tx 314469 Rx 67335 Frames Delta 247134 Loss 78.588 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_4_swp2->swp4 Tx 2112519 Rx 0 Frames Delta 2112519 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_4_swp2->swp3 Tx 656522 Rx 0 Frames Delta 656522 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_4_swp2->swp1 Tx 310370 Rx 83775 Frames Delta 226595 Loss 73.008 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_5_swp3->swp4 Tx 199659 Rx 11209 Frames Delta 188450 Loss 94.386 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_5_swp3->swp2 Tx 291707 Rx 0 Frames Delta 291707 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_5_swp3->swp1 Tx 428027 Rx 0 Frames Delta 428027 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_6_swp4->swp3 Tx 180907 Rx 52065 Frames Delta 128842 Loss 71.220 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_6_swp4->swp2 Tx 634267 Rx 0 Frames Delta 634267 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_6_swp4->swp1 Tx 212108 Rx 0 Frames Delta 212108 Loss 100.000 INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=186, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=83] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=186, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=84] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=186, chan=84] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=84] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":1533}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":3891}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":2874}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":4619}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":1023}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":5213}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/49":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/50":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/51":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/52":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=186, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=85] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=186, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=86] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=186, chan=86] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=86] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=186, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=87] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=186, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=88] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=186, chan=88] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=88] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=186, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=89] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=186, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=90] Command: devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=186, chan=90] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=90] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f701bc10>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_1_swp1->swp4 Tx 310492 Rx 0 Frames Delta 310492 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_1_swp1->swp3 Tx 2164464 Rx 0 Frames Delta 2164464 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_1_swp1->swp2 Tx 1131276 Rx 319612 Frames Delta 811664 Loss 71.748 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_2_swp1->swp4 Tx 2431509 Rx 0 Frames Delta 2431509 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_2_swp1->swp3 Tx 2369951 Rx 0 Frames Delta 2369951 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_2_swp1->swp2 Tx 603956 Rx 211053 Frames Delta 392903 Loss 65.055 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_3_swp1->swp4 Tx 668665 Rx 0 Frames Delta 668665 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_3_swp1->swp3 Tx 525917 Rx 0 Frames Delta 525917 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_3_swp1->swp2 Tx 449523 Rx 172146 Frames Delta 277377 Loss 61.705 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_4_swp2->swp4 Tx 3019777 Rx 0 Frames Delta 3019777 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_4_swp2->swp3 Tx 938477 Rx 0 Frames Delta 938477 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_4_swp2->swp1 Tx 443664 Rx 189549 Frames Delta 254115 Loss 57.276 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_5_swp3->swp4 Tx 285406 Rx 73688 Frames Delta 211718 Loss 74.181 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_5_swp3->swp2 Tx 416985 Rx 0 Frames Delta 416985 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_5_swp3->swp1 Tx 611851 Rx 0 Frames Delta 611851 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_6_swp4->swp3 Tx 258600 Rx 113967 Frames Delta 144633 Loss 55.929 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_6_swp4->swp2 Tx 906665 Rx 0 Frames Delta 906665 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_6_swp4->swp1 Tx 303201 Rx 0 Frames Delta 303201 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=186, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=91] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=186, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=92] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=186, chan=92] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=92] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/49":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/50":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/51":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/52":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=186, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=93] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=186, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=94] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=186, chan=94] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=94] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=186, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=95] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=186, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=96] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=186, chan=96] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=96] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=186, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=97] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=186, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=98] Command: devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=186, chan=98] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=98] Channel closed DEBUG infra2:Logger.py:156 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_storm_control_different_rates from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_different_rates.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=186, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=99] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=186, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=100] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=100] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=100] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 03:04:10 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=186, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=101] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=186, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=102] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=102] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=102] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 03:04:16 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=186, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=103] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=186, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=104] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=186, chan=104] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=104] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":189,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=186, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=105] Command: date INFO asyncssh:logging.py:92 [conn=186, chan=105] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=105] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=105] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=186, chan=106] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=186, chan=106] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=186, chan=106] Received exit status 0 INFO asyncssh:logging.py:92 [conn=186, chan=106] Received channel close INFO asyncssh:logging.py:92 [conn=186, chan=106] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/storm_control/test_storm_control_interaction_policer_rules.py::test_storm_control_interaction_policer_rules | 244.95 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-11575' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_storm_control_interaction_policer_rules">Starting testcase:test_storm_control_interaction_policer_rules from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_interaction_policer_rules.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=186, chan=107] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=187] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=187] Local address: 172.17.0.3, port 43984 INFO asyncssh:logging.py:92 [conn=187] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=187] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=187] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=187, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=0] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 03:04:17 UTC 2023 INFO asyncssh:logging.py:92 [conn=187, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=1] Channel closed DEBUG infra2:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=187, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=187, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=187, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 2] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=187, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=3] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=187, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=187, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=187, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=5] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=187, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=187, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=6] Channel closed DEBUG infra2:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=187, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=7] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=187, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=8] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 03:04:17 UTC 2023 INFO asyncssh:logging.py:92 [conn=187, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=187, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=187, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=187, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=11] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 37686 cmode runtime INFO asyncssh:logging.py:92 [conn=187, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=12] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 37686 cmode runtime INFO asyncssh:logging.py:92 [conn=187, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=187, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=13] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=187, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=14] Command: devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=187, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=14] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":37686}]}]}} INFO asyncssh:logging.py:92 [conn=187, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=15] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 109413 cmode runtime INFO asyncssh:logging.py:92 [conn=187, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=16] Command: devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 109413 cmode runtime INFO asyncssh:logging.py:92 [conn=187, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=187, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=17] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=187, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=18] Command: devlink -j port param show pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=187, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=18] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/34":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":109413}]}]}} INFO asyncssh:logging.py:92 [conn=187, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=19] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 75373 cmode runtime INFO asyncssh:logging.py:92 [conn=187, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=20] Command: devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 75373 cmode runtime INFO asyncssh:logging.py:92 [conn=187, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=187, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=21] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=187, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=22] Command: devlink -j port param show pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=187, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=22] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":75373}]}]}} INFO asyncssh:logging.py:92 [conn=187, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=23] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp33 ingress && tc qdisc add dev swp34 ingress && tc qdisc add dev swp35 ingress INFO asyncssh:logging.py:92 [conn=187, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=24] Command: tc qdisc add dev swp33 ingress && tc qdisc add dev swp34 ingress && tc qdisc add dev swp35 ingress INFO asyncssh:logging.py:92 [conn=187, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=24] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=187, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=25] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol 0x8100 flower skip_sw vlan_id 853 src_mac 10:62:5a:cf:ab:39 dst_mac 34:1e:60:35:58:ac action trap action police rate 14836kbit burst 15836 conform-exceed drop INFO asyncssh:logging.py:92 [conn=187, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=26] Command: tc filter add dev swp33 ingress protocol 0x8100 flower skip_sw vlan_id 853 src_mac 10:62:5a:cf:ab:39 dst_mac 34:1e:60:35:58:ac action trap action police rate 14836kbit burst 15836 conform-exceed drop INFO asyncssh:logging.py:92 [conn=187, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=26] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=187, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=27] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp34 ingress protocol 0x8100 flower skip_sw vlan_id 2830 src_mac 98:92:be:4c:c8:53 dst_mac 01:00:5E:51:14:af action trap action police rate 14836kbit burst 15836 conform-exceed drop INFO asyncssh:logging.py:92 [conn=187, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=28] Command: tc filter add dev swp34 ingress protocol 0x8100 flower skip_sw vlan_id 2830 src_mac 98:92:be:4c:c8:53 dst_mac 01:00:5E:51:14:af action trap action police rate 14836kbit burst 15836 conform-exceed drop INFO asyncssh:logging.py:92 [conn=187, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=28] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=187, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=29] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp35 ingress protocol 0x8100 flower skip_sw vlan_id 2454 src_mac 54:84:c3:74:89:37 dst_mac ff:ff:ff:ff:ff:ff action trap action police rate 14836kbit burst 15836 conform-exceed drop INFO asyncssh:logging.py:92 [conn=187, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=30] Command: tc filter add dev swp35 ingress protocol 0x8100 flower skip_sw vlan_id 2454 src_mac 54:84:c3:74:89:37 dst_mac ff:ff:ff:ff:ff:ff action trap action police rate 14836kbit burst 15836 conform-exceed drop INFO asyncssh:logging.py:92 [conn=187, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=30] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_4_swp3->swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_4_swp3->swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_4_swp3->swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=187, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=31] Channel closed DEBUG infra2:Logger.py:156 get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=187, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=32] Command: get_cpu_traps_rate_code_avg 195 sw INFO asyncssh:logging.py:92 [conn=187, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=32] Channel closed DEBUG infra2:Logger.py:156 4062 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=187, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=33] Channel closed DEBUG infra2:Logger.py:156 tc filter delete dev swp33 ingress pref 49152 && tc filter delete dev swp34 ingress pref 49152 && tc filter delete dev swp35 ingress pref 49152 INFO asyncssh:logging.py:92 [conn=187, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=34] Command: tc filter delete dev swp33 ingress pref 49152 && tc filter delete dev swp34 ingress pref 49152 && tc filter delete dev swp35 ingress pref 49152 INFO asyncssh:logging.py:92 [conn=187, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=34] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=187, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=35] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=187, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=36] Command: ip link add br0 type bridge vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=187, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=36] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=187, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=37] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=187, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=38] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=187, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=38] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=187, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=39] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=187, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=40] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=187, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=40] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=187, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress protocol 0x8100 flower skip_sw vlan_id 853 src_mac 10:62:5a:cf:ab:39 dst_mac 34:1e:60:35:58:ac action trap action police rate 18972709bps burst 18973709 conform-exceed drop INFO asyncssh:logging.py:92 [conn=187, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=42] Command: tc filter add dev swp33 ingress protocol 0x8100 flower skip_sw vlan_id 853 src_mac 10:62:5a:cf:ab:39 dst_mac 34:1e:60:35:58:ac action trap action police rate 18972709bps burst 18973709 conform-exceed drop INFO asyncssh:logging.py:92 [conn=187, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=42] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=187, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp34 ingress protocol 0x8100 flower skip_sw vlan_id 2830 src_mac 98:92:be:4c:c8:53 dst_mac 01:00:5E:51:14:af action trap action police rate 18972709bps burst 18973709 conform-exceed drop INFO asyncssh:logging.py:92 [conn=187, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=44] Command: tc filter add dev swp34 ingress protocol 0x8100 flower skip_sw vlan_id 2830 src_mac 98:92:be:4c:c8:53 dst_mac 01:00:5E:51:14:af action trap action police rate 18972709bps burst 18973709 conform-exceed drop INFO asyncssh:logging.py:92 [conn=187, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=44] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=187, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp35 ingress protocol 0x8100 flower skip_sw vlan_id 2454 src_mac 54:84:c3:74:89:37 dst_mac ff:ff:ff:ff:ff:ff action trap action police rate 18972709bps burst 18973709 conform-exceed drop INFO asyncssh:logging.py:92 [conn=187, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=46] Command: tc filter add dev swp35 ingress protocol 0x8100 flower skip_sw vlan_id 2454 src_mac 54:84:c3:74:89:37 dst_mac ff:ff:ff:ff:ff:ff action trap action police rate 18972709bps burst 18973709 conform-exceed drop INFO asyncssh:logging.py:92 [conn=187, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=46] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f7000340>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_1 Tx 2431038 Rx 15816 Frames Delta 2415222 Loss 99.349 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_2 Tx 2431038 Rx 15827 Frames Delta 2415211 Loss 99.349 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_3 Tx 607766 Rx 16854 Frames Delta 590912 Loss 97.227 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_4_swp3->swp4 Tx 607766 Rx 607759 Frames Delta 7 Loss 0.001 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_4_swp3->swp2 Tx 607765 Rx 607758 Frames Delta 7 Loss 0.001 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_4_swp3->swp1 Tx 607765 Rx 607758 Frames Delta 7 Loss 0.001 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=187, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=47] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=187, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=48] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=187, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=48] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":37686}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":109413}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":75373}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/49":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/50":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/51":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/52":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=187, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=49] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=187, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=50] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=187, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=50] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=187, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=51] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=187, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=52] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=187, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=52] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=187, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=53] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=187, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=54] Command: devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=187, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=54] Channel closed DEBUG infra2:Logger.py:156 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_storm_control_interaction_policer_rules from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_interaction_policer_rules.py INFO asyncssh:logging.py:92 [conn=187, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=55] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=187, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=56] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=187, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=56] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=187, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=57] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=187, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=58] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=58] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 03:08:17 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=187, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=59] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=187, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=60] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=187, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=60] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp34","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp35","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{}}] INFO asyncssh:logging.py:92 [conn=187, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=61] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=187, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=62] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=187, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=62] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=187, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=63] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=187, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=64] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=187, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=64] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=187, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=65] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=187, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=66] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=187, chan=66] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=66] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=187, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=67] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=187, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=68] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=187, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=68] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=187, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=69] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=187, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=70] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=187, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=70] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=187, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=71] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=187, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=72] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=187, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=72] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=187, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=73] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=187, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=74] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=187, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=74] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=187, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=75] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=187, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=76] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=187, chan=76] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=76] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=187, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=77] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=187, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=78] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=187, chan=78] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=78] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=187, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=79] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=187, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=80] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=187, chan=80] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=80] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=187, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=81] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=187, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=82] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=187, chan=82] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=82] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=187, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=83] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=187, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=84] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=187, chan=84] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=84] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=187, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=85] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=187, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=86] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=187, chan=86] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=86] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=187, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=87] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 ingress INFO asyncssh:logging.py:92 [conn=187, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=88] Command: tc qdisc delete dev swp34 ingress INFO asyncssh:logging.py:92 [conn=187, chan=88] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=88] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=187, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=89] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=187, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=90] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=187, chan=90] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=90] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=187, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=91] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 ingress INFO asyncssh:logging.py:92 [conn=187, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=92] Command: tc qdisc delete dev swp35 ingress INFO asyncssh:logging.py:92 [conn=187, chan=92] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=92] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=187, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=93] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=93] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=93] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=93] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=187, chan=94] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=94] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=187, chan=94] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=94] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=94] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=187, chan=95] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=95] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=95] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=95] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=95] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev br0 root INFO asyncssh:logging.py:92 [conn=187, chan=96] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=96] Command: tc qdisc delete dev br0 root INFO asyncssh:logging.py:92 [conn=187, chan=96] Received exit status 2 INFO asyncssh:logging.py:92 [conn=187, chan=96] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=96] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=187, chan=97] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=97] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=97] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=97] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=97] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=187, chan=98] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=98] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=98] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=98] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=98] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 03:08:17 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=187, chan=99] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=99] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=99] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=99] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=99] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=187, chan=100] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=100] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=100] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=100] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=100] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 03:08:22 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=187, chan=101] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=101] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=101] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=101] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=101] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=187, chan=102] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=102] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=187, chan=102] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=102] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=102] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":190,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=187, chan=103] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=103] Command: date INFO asyncssh:logging.py:92 [conn=187, chan=103] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=103] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=103] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=187, chan=104] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=187, chan=104] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=187, chan=104] Received exit status 0 INFO asyncssh:logging.py:92 [conn=187, chan=104] Received channel close INFO asyncssh:logging.py:92 [conn=187, chan=104] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/storm_control/test_storm_control_interaction_span_rule.py::test_storm_control_interaction_span_rule | 207.69 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_storm_control_interaction_span_rule">Starting testcase:test_storm_control_interaction_span_rule from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_interaction_span_rule.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-11694' coro=<test_storm_control_interaction_span_rule() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_interaction_span_rule.py:65> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=187, chan=105] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=188] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=188] Local address: 172.17.0.3, port 35884 INFO asyncssh:logging.py:92 [conn=188] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=188] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=188] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=188, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=0] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 03:08:22 UTC 2023 INFO asyncssh:logging.py:92 [conn=188, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=188, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=188, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=188, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=188, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=188, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=188, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=188, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=188, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=188, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=7] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 1613 cmode runtime INFO asyncssh:logging.py:92 [conn=188, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=8] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 1613 cmode runtime INFO asyncssh:logging.py:92 [conn=188, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=188, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=9] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=188, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=10] Command: devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=188, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=10] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":1613}]}]}} INFO asyncssh:logging.py:92 [conn=188, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=11] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 3978 cmode runtime INFO asyncssh:logging.py:92 [conn=188, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=12] Command: devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 3978 cmode runtime INFO asyncssh:logging.py:92 [conn=188, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=188, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=13] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=188, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=14] Command: devlink -j port param show pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=188, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=14] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":3978}]}]}} INFO asyncssh:logging.py:92 [conn=188, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=15] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 5108 cmode runtime INFO asyncssh:logging.py:92 [conn=188, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=16] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 5108 cmode runtime INFO asyncssh:logging.py:92 [conn=188, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=188, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=17] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=188, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=18] Command: devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=188, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=18] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":5108}]}]}} INFO asyncssh:logging.py:92 [conn=188, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=19] Channel closed DEBUG infra2:Logger.py:156 tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=188, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=20] Command: tc qdisc add dev swp33 ingress INFO asyncssh:logging.py:92 [conn=188, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=188, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=21] Channel closed DEBUG infra2:Logger.py:156 tc filter add dev swp33 ingress matchall skip_sw action mirred egress mirror dev swp34 INFO asyncssh:logging.py:92 [conn=188, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=22] Command: tc filter add dev swp33 ingress matchall skip_sw action mirred egress mirror dev swp34 INFO asyncssh:logging.py:92 [conn=188, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=22] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f73d4520>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_1 Tx 618206 Rx 594210 Frames Delta 23996 Loss 3.882 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_2 Tx 618206 Rx 62032 Frames Delta 556174 Loss 89.966 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_3 Tx 618206 Rx 79653 Frames Delta 538553 Loss 87.115 INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=188, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=23] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=188, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=24] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=188, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=24] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":5108}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":1613}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":3978}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/49":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/50":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/51":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/52":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=188, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=25] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=188, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=26] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=188, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=26] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=188, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=27] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=188, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=28] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=188, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=28] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=188, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=29] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=188, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=30] Command: devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=188, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=30] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f75bbbb0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_1 Tx 1858808 Rx 1833379 Frames Delta 25429 Loss 1.368 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_2 Tx 1858808 Rx 1001711 Frames Delta 857097 Loss 46.110 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_3 Tx 1858807 Rx 1034361 Frames Delta 824446 Loss 44.354 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=188, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=31] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=188, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=32] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=188, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=32] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/49":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/50":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/51":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/52":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=188, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=33] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=188, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=34] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=188, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=34] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=188, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=35] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=188, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=36] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=188, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=36] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=188, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=37] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=188, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=38] Command: devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=188, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=38] Channel closed DEBUG infra2:Logger.py:156 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_storm_control_interaction_span_rule from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_interaction_span_rule.py INFO asyncssh:logging.py:92 [conn=188, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=39] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=188, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=40] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=40] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 03:11:44 UTC 2023 INFO DENT:Logger.py:147 Clearing TC INFO asyncssh:logging.py:92 [conn=188, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=41] Channel closed DEBUG infra2:Logger.py:156 tc -j qdisc show INFO asyncssh:logging.py:92 [conn=188, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=42] Command: tc -j qdisc show INFO asyncssh:logging.py:92 [conn=188, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=42] Channel closed DEBUG infra2:Logger.py:156 [{"kind":"noqueue","handle":"0:","dev":"lo","root":true,"refcnt":2,"options":{}},{"kind":"mq","handle":"0:","dev":"ma1","root":true,"options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":8","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":7","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":6","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":5","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":4","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":3","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":2","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"ma1","parent":":1","options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp33","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"ingress","handle":"ffff:","dev":"swp33","parent":"ffff:fff1","options":{}},{"kind":"pfifo_fast","handle":"0:","dev":"swp34","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp35","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"pfifo_fast","handle":"0:","dev":"swp36","root":true,"refcnt":2,"options":{"bands":3,"priomap":[1,2,2,2,1,2,0,0,1,1,1,1,1,1,1,1],"multiqueue":false}},{"kind":"noqueue","handle":"0:","dev":"br0","root":true,"refcnt":2,"options":{}}] INFO asyncssh:logging.py:92 [conn=188, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=43] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=188, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=44] Command: tc qdisc delete dev lo root INFO asyncssh:logging.py:92 [conn=188, chan=44] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=44] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=188, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=45] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=188, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=46] Command: tc qdisc delete dev ma1 root INFO asyncssh:logging.py:92 [conn=188, chan=46] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=46] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=188, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=47] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=188, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=48] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=188, chan=48] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=48] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=188, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=49] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=188, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=50] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=188, chan=50] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=50] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=188, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=51] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=188, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=52] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=188, chan=52] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=52] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=188, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=53] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=188, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=54] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=188, chan=54] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=54] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=188, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=55] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=188, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=56] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=188, chan=56] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=56] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=188, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=57] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=188, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=58] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=188, chan=58] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=58] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=188, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=59] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=188, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=60] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=188, chan=60] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=60] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=188, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=61] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=188, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=62] Command: tc qdisc delete dev ma1 pfifo_fast INFO asyncssh:logging.py:92 [conn=188, chan=62] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=62] Channel closed DEBUG infra2:Logger.py:156 Error: Failed to find qdisc with specified handle. INFO asyncssh:logging.py:92 [conn=188, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=63] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=188, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=64] Command: tc qdisc delete dev swp33 root INFO asyncssh:logging.py:92 [conn=188, chan=64] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=64] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=188, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=65] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=188, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=66] Command: tc qdisc delete dev swp33 ingress INFO asyncssh:logging.py:92 [conn=188, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=66] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=188, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=67] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=188, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=68] Command: tc qdisc delete dev swp34 root INFO asyncssh:logging.py:92 [conn=188, chan=68] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=68] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=188, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=69] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=188, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=70] Command: tc qdisc delete dev swp35 root INFO asyncssh:logging.py:92 [conn=188, chan=70] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=70] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=188, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=71] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=188, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=72] Command: tc qdisc delete dev swp36 root INFO asyncssh:logging.py:92 [conn=188, chan=72] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=72] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO asyncssh:logging.py:92 [conn=188, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=73] Channel closed DEBUG infra2:Logger.py:156 tc qdisc delete dev br0 root INFO asyncssh:logging.py:92 [conn=188, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=74] Command: tc qdisc delete dev br0 root INFO asyncssh:logging.py:92 [conn=188, chan=74] Received exit status 2 INFO asyncssh:logging.py:92 [conn=188, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=74] Channel closed DEBUG infra2:Logger.py:156 Error: Cannot delete qdisc with handle of zero. INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=188, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=75] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=188, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=76] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=76] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 03:11:45 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=188, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=77] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=188, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=78] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=78] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=78] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 03:11:49 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=188, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=79] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=188, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=80] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=188, chan=80] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=80] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":191,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=188, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=188, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=81] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=188, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=188, chan=82] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=188, chan=82] Received exit status 0 INFO asyncssh:logging.py:92 [conn=188, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=188, chan=82] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/storm_control/test_storm_control_mc_lag_and_vlan_membership.py::test_storm_control_mc_lag_and_vlan_membership | 190.69 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_storm_control_mc_lag_and_vlan_membership">Starting testcase:test_storm_control_mc_lag_and_vlan_membership from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_mc_lag_and_vlan_membership.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-11789' coro=<test_storm_control_mc_lag_and_vlan_membership() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_mc_lag_and_vlan_membership.py:50> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=188, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=189] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=189] Local address: 172.17.0.3, port 56214 INFO asyncssh:logging.py:92 [conn=189] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=189] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=189] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=189, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=0] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 03:11:50 UTC 2023 INFO asyncssh:logging.py:92 [conn=189, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add bond1 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=189, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=2] Command: ip link add bond1 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=189, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=189, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev bond1 up && ip link set dev swp33 down && ip link set dev swp33 master bond1 INFO asyncssh:logging.py:92 [conn=189, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=4] Command: ip link set dev bond1 up && ip link set dev swp33 down && ip link set dev swp33 master bond1 INFO asyncssh:logging.py:92 [conn=189, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=189, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link add bond2 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=189, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=6] Command: ip link add bond2 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=189, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=189, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link set dev bond2 up && ip link set dev swp35 down && ip link set dev swp35 master bond2 INFO asyncssh:logging.py:92 [conn=189, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=8] Command: ip link set dev bond2 up && ip link set dev swp35 down && ip link set dev swp35 master bond2 INFO asyncssh:logging.py:92 [conn=189, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=189, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=189, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=189, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=189, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=11] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=189, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=12] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=189, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=189, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=189, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=14] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=189, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=189, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp34 master br0 && ip link set dev swp36 master br0 INFO asyncssh:logging.py:92 [conn=189, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=16] Command: ip link set dev swp34 master br0 && ip link set dev swp36 master br0 INFO asyncssh:logging.py:92 [conn=189, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=189, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip link set dev bond1 master br0 && ip link set dev bond2 master br0 INFO asyncssh:logging.py:92 [conn=189, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=18] Command: ip link set dev bond1 master br0 && ip link set dev bond2 master br0 INFO asyncssh:logging.py:92 [conn=189, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=189, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 type bridge vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=189, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=20] Command: ip link set dev br0 type bridge vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=189, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=189, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=21] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp34 vid 1 pvid untagged && bridge vlan add dev swp36 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=189, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=22] Command: bridge vlan add dev swp34 vid 1 pvid untagged && bridge vlan add dev swp36 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=189, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=22] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=189, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=23] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev bond1 vid 1 pvid untagged && bridge vlan add dev bond2 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=189, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=24] Command: bridge vlan add dev bond1 vid 1 pvid untagged && bridge vlan add dev bond2 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=189, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=24] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=189, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=25] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 94404 cmode runtime INFO asyncssh:logging.py:92 [conn=189, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=26] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 94404 cmode runtime INFO asyncssh:logging.py:92 [conn=189, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=26] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=189, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=27] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=189, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=28] Command: devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=189, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=28] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":94404}]}]}} INFO asyncssh:logging.py:92 [conn=189, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=29] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 1210 cmode runtime INFO asyncssh:logging.py:92 [conn=189, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=30] Command: devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 1210 cmode runtime INFO asyncssh:logging.py:92 [conn=189, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=30] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=189, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=31] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=189, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=32] Command: devlink -j port param show pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=189, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=32] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":1210}]}]}} INFO asyncssh:logging.py:92 [conn=189, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=33] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 35099 cmode runtime INFO asyncssh:logging.py:92 [conn=189, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=34] Command: devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 35099 cmode runtime INFO asyncssh:logging.py:92 [conn=189, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=34] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=189, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=35] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=189, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=36] Command: devlink -j port param show pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=189, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=36] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/34":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":35099}]}]}} INFO asyncssh:logging.py:92 [conn=189, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=37] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 37519 cmode runtime INFO asyncssh:logging.py:92 [conn=189, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=38] Command: devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 37519 cmode runtime INFO asyncssh:logging.py:92 [conn=189, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=38] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=189, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=39] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=189, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=40] Command: devlink -j port param show pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=189, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=40] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/34":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":37519}]}]}} INFO asyncssh:logging.py:92 [conn=189, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=41] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 32678 cmode runtime INFO asyncssh:logging.py:92 [conn=189, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=42] Command: devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 32678 cmode runtime INFO asyncssh:logging.py:92 [conn=189, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=42] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=189, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=43] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=189, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=44] Command: devlink -j port param show pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=189, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=44] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":32678}]}]}} INFO asyncssh:logging.py:92 [conn=189, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=45] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 36309 cmode runtime INFO asyncssh:logging.py:92 [conn=189, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=46] Command: devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 36309 cmode runtime INFO asyncssh:logging.py:92 [conn=189, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=46] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=189, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=47] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=189, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=48] Command: devlink -j port param show pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=189, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=48] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/35":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":36309}]}]}} INFO asyncssh:logging.py:92 [conn=189, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=49] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 83511 cmode runtime INFO asyncssh:logging.py:92 [conn=189, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=50] Command: devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 83511 cmode runtime INFO asyncssh:logging.py:92 [conn=189, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=50] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=189, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=51] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=189, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=52] Command: devlink -j port param show pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=189, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=52] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/36":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":83511}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1_mc_swp4->swp1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2_mc_swp4->swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3_mc_swp4->swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f6e91870>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:5 Tx 0 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:6 Tx 0 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:7 Tx 0 Rx 716904 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:8 Tx 931192 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=189, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=53] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=189, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=54] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=189, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=54] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":94404}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":1210}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":37519}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":35099}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":32678}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":36309}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":83511}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/49":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/50":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/51":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/52":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=189, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=55] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=189, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=56] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=189, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=56] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=189, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=57] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=189, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=58] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=189, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=58] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=189, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=59] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=189, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=60] Command: devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=189, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=60] Channel closed DEBUG infra2:Logger.py:156 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_storm_control_mc_lag_and_vlan_membership from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_mc_lag_and_vlan_membership.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=189, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=61] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=189, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=62] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=62] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 03:14:54 UTC 2023 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=189, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=63] Channel closed DEBUG infra2:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=189, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=64] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=189, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=64] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"f6:33:41:29:6d:87","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"18:be:92:13:64:a5","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":0,"bridge_id":"8000.18:be:92:13:64:a5","root_id":"8000.18:be:92:13:64:a5","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":3,"perm_hwaddr":"18:be:92:13:64:a7","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.18:be:92:13:64:a5","root_id":"8000.18:be:92:13:64:a5","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":192,"ifname":"bond1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1},"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8003","no":"0x3","designated_port":32771,"designated_cost":0,"bridge_id":"8000.18:be:92:13:64:a5","root_id":"8000.18:be:92:13:64:a5","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":193,"ifname":"bond2","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1},"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8004","no":"0x4","designated_port":32772,"designated_cost":0,"bridge_id":"8000.18:be:92:13:64:a5","root_id":"8000.18:be:92:13:64:a5","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":194,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":30000,"stp_state":0,"priority":32768,"vlan_filtering":1,"vlan_protocol":"802.1Q","bridge_id":"8000.18:be:92:13:64:a5","root_id":"8000.18:be:92:13:64:a5","root_port":0,"root_path_cost":0,"topology_change":0,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":115.85,"vlan_default_pvid":0,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535}] INFO asyncssh:logging.py:92 [conn=189, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=65] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond1 INFO asyncssh:logging.py:92 [conn=189, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=66] Command: ip link delete bond1 INFO asyncssh:logging.py:92 [conn=189, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=66] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=189, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=67] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond2 INFO asyncssh:logging.py:92 [conn=189, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=68] Command: ip link delete bond2 INFO asyncssh:logging.py:92 [conn=189, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=68] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=189, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=69] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=189, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=70] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=70] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 03:14:55 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=189, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=71] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=189, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=72] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=72] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 03:15:00 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=189, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=73] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=189, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=74] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=189, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=74] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":194,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=189, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=189, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=75] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=189, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=189, chan=76] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=189, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=189, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=189, chan=76] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/storm_control/test_storm_control_packets.py::test_storm_control_packets | 575.09 | |
|
-----------------------------Captured stdout setup------------------------------ Task <Task pending name='Task-11877' coro=<_wrap_asyncgen_fixture.<locals>._asyncgen_fixture_wrapper.<locals>.setup() running at /usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:280> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_storm_control_packets">Starting testcase:test_storm_control_packets from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_packets.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=189, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=190] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=190] Local address: 172.17.0.3, port 51330 INFO asyncssh:logging.py:92 [conn=190] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=190] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=190] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=190, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=0] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 03:15:00 UTC 2023 INFO asyncssh:logging.py:92 [conn=190, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=1] Channel closed DEBUG infra2:Logger.py:156 type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=190, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=2] Command: type tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg > /dev/null 2>&1 INFO asyncssh:logging.py:92 [conn=190, chan=2] Received exit status 1 INFO asyncssh:logging.py:92 [conn=190, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [DENT infrastructure 2] Bash func isnt defined: tcpdump_cpu_traps_rate tcpdump_cpu_traps_rate_avg get_cpu_traps_rate_code get_cpu_traps_rate_code_avg get_devlink_cpu_traps_rate get_devlink_cpu_traps_rate_avg Defining func in .bashrc INFO asyncssh:logging.py:92 [conn=190, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=3] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=190, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=4] Command: echo onl | sudo -S cp /root/.bashrc /root/.bashrc.bak INFO asyncssh:logging.py:92 [conn=190, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=190, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=5] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=190, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=6] Command: echo onl | sudo -S echo ' # Sniff pkt for specified/any interface and return amount of sniffed packets tcpdump_cpu_traps_rate() { local IFACE="any" if [ $# -ge 1 ]; then IFACE=$1; fi timeout 1.06 tcpdump -i $IFACE &> xx; cat xx | grep -Eo "[0-9]+ packets received by filter" | cut -d " " -f 1; rm xx } # Get average CPU rate by tcpdump tcpdump_cpu_traps_rate_avg() { local start_index=0 local end=25 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(tcpdump_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/6)) } # Get CPU rate by reading traps debug counters get_cpu_traps_rate_code() { R1=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` sleep 1 R2=`cat /sys/kernel/debug/prestera/$2_counters/traps/cpu_code_$1_stats | tr -d "\0"` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading traps debug counters get_cpu_traps_rate_code_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_cpu_traps_rate_code $1 $2) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } # Get CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate() { R1=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` sleep 1 R2=`devlink -vs trap show pci/0000:01:00.0 trap $1 | grep -o "packets.*" | cut -d " " -f 2` RXPPS=`expr $R2 - $R1` echo $RXPPS } # Get average CPU rate by reading devlink trap counters get_devlink_cpu_traps_rate_avg() { local start_index=0 local end=9 local counter=0 for((num=start_index; num<=end; num++)); do local temp=$(get_devlink_cpu_traps_rate $1) sleep 1 counter=$((counter+temp)) done echo $((counter/10)) } ' >> /root/.bashrc INFO asyncssh:logging.py:92 [conn=190, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=6] Channel closed DEBUG infra2:Logger.py:156 -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=190, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=7] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=190, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=8] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 03:15:01 UTC 2023 INFO asyncssh:logging.py:92 [conn=190, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=190, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=190, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=190, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=11] Channel closed DEBUG infra2:Logger.py:156 ip address add 192.168.1.5/24 broadcast 192.168.1.255 dev swp33 && ip address add 192.168.1.4/24 broadcast 192.168.1.255 dev swp34 INFO asyncssh:logging.py:92 [conn=190, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=12] Command: ip address add 192.168.1.5/24 broadcast 192.168.1.255 dev swp33 && ip address add 192.168.1.4/24 broadcast 192.168.1.255 dev swp34 INFO asyncssh:logging.py:92 [conn=190, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=190, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=13] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 13500 cmode runtime INFO asyncssh:logging.py:92 [conn=190, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=14] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 13500 cmode runtime INFO asyncssh:logging.py:92 [conn=190, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=190, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=15] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=190, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=16] Command: devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=190, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=16] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":13500}]}]}} INFO asyncssh:logging.py:92 [conn=190, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=17] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 13500 cmode runtime INFO asyncssh:logging.py:92 [conn=190, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=18] Command: devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 13500 cmode runtime INFO asyncssh:logging.py:92 [conn=190, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=190, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=19] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=190, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=20] Command: devlink -j port param show pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=190, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=20] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":13500}]}]}} INFO asyncssh:logging.py:92 [conn=190, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=21] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 13500 cmode runtime INFO asyncssh:logging.py:92 [conn=190, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=22] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 13500 cmode runtime INFO asyncssh:logging.py:92 [conn=190, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=22] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=190, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=23] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=190, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=24] Command: devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=190, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=24] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":13500}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_192.168.1.6/24', 'count': 1, 'ip': '192.168.1.6', 'gw': '192.168.1.5', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_192.168.1.7/24', 'count': 1, 'ip': '192.168.1.7', 'gw': '192.168.1.4', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:2:7' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO asyncssh:logging.py:92 [conn=190, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=25] Channel closed DEBUG infra2:Logger.py:156 bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=190, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=26] Command: bridge -j vlan show dev swp33 INFO asyncssh:logging.py:92 [conn=190, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=26] Channel closed DEBUG infra2:Logger.py:156 [] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'bridge -j vlan show dev swp33 ', 'rc': 0, 'result': '[]\n'}}] INFO asyncssh:logging.py:92 [conn=190, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=27] Channel closed DEBUG infra2:Logger.py:156 ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=190, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=28] Command: ip -j address show swp33 INFO asyncssh:logging.py:92 [conn=190, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=28] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.1.5","prefixlen":24,"broadcast":"192.168.1.255","scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a5","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}] INFO DENT:Logger.py:84 [DENT infrastructure 2] [{'infra2': {'command': 'ip -j address show swp33 ', 'rc': 0, 'result': '[{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","addr_info":[{"family":"inet","local":"192.168.1.5","prefixlen":24,"broadcast":"192.168.1.255","scope":"global","label":"swp33","valid_life_time":4294967295,"preferred_life_time":4294967295},{"family":"inet6","local":"fe80::1abe:92ff:fe13:64a5","prefixlen":64,"scope":"link","valid_life_time":4294967295,"preferred_life_time":4294967295}]}]\n'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lacp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for lldp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for dhcp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for arp_bc_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for router_mc_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for ip_bc_mac_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for vrrp_swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_192.168.1.6/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_192.168.1.7/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=190, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=29] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg stp INFO asyncssh:logging.py:92 [conn=190, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=30] Command: get_devlink_cpu_traps_rate_avg stp INFO asyncssh:logging.py:92 [conn=190, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=30] Channel closed DEBUG infra2:Logger.py:156 202 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 202 expected 200 for trap_code stp INFO asyncssh:logging.py:92 [conn=190, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=31] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg lacp INFO asyncssh:logging.py:92 [conn=190, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=32] Command: get_devlink_cpu_traps_rate_avg lacp INFO asyncssh:logging.py:92 [conn=190, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=32] Channel closed DEBUG infra2:Logger.py:156 202 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 202 expected 200 for trap_code lacp INFO asyncssh:logging.py:92 [conn=190, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=33] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg lldp INFO asyncssh:logging.py:92 [conn=190, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=34] Command: get_devlink_cpu_traps_rate_avg lldp INFO asyncssh:logging.py:92 [conn=190, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=34] Channel closed DEBUG infra2:Logger.py:156 202 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 202 expected 200 for trap_code lldp INFO asyncssh:logging.py:92 [conn=190, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=35] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg dhcp INFO asyncssh:logging.py:92 [conn=190, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=36] Command: get_devlink_cpu_traps_rate_avg dhcp INFO asyncssh:logging.py:92 [conn=190, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=36] Channel closed DEBUG infra2:Logger.py:156 102 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 102 expected 100 for trap_code dhcp INFO asyncssh:logging.py:92 [conn=190, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=37] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg arp_bc INFO asyncssh:logging.py:92 [conn=190, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=38] Command: get_devlink_cpu_traps_rate_avg arp_bc INFO asyncssh:logging.py:92 [conn=190, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=38] Channel closed DEBUG infra2:Logger.py:156 100 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 100 expected 100 for trap_code arp_bc INFO asyncssh:logging.py:92 [conn=190, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=39] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg router_mc INFO asyncssh:logging.py:92 [conn=190, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=40] Command: get_devlink_cpu_traps_rate_avg router_mc INFO asyncssh:logging.py:92 [conn=190, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=40] Channel closed DEBUG infra2:Logger.py:156 101 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 101 expected 100 for trap_code router_mc INFO asyncssh:logging.py:92 [conn=190, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=41] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg ip_bc_mac INFO asyncssh:logging.py:92 [conn=190, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=42] Command: get_devlink_cpu_traps_rate_avg ip_bc_mac INFO asyncssh:logging.py:92 [conn=190, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=42] Channel closed DEBUG infra2:Logger.py:156 101 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 101 expected 100 for trap_code ip_bc_mac INFO asyncssh:logging.py:92 [conn=190, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=43] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg vrrp INFO asyncssh:logging.py:92 [conn=190, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=44] Command: get_devlink_cpu_traps_rate_avg vrrp INFO asyncssh:logging.py:92 [conn=190, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=44] Channel closed DEBUG infra2:Logger.py:156 202 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 202 expected 200 for trap_code vrrp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=190, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=45] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 75000 cmode runtime INFO asyncssh:logging.py:92 [conn=190, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=46] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 75000 cmode runtime INFO asyncssh:logging.py:92 [conn=190, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=46] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=190, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=47] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=190, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=48] Command: devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=190, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=48] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":75000}]}]}} INFO asyncssh:logging.py:92 [conn=190, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=49] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 75000 cmode runtime INFO asyncssh:logging.py:92 [conn=190, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=50] Command: devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 75000 cmode runtime INFO asyncssh:logging.py:92 [conn=190, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=50] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=190, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=51] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=190, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=52] Command: devlink -j port param show pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=190, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=52] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":75000}]}]}} INFO asyncssh:logging.py:92 [conn=190, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=53] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 75000 cmode runtime INFO asyncssh:logging.py:92 [conn=190, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=54] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 75000 cmode runtime INFO asyncssh:logging.py:92 [conn=190, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=54] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=190, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=55] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=190, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=56] Command: devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=190, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=56] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":75000}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=190, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=57] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg stp INFO asyncssh:logging.py:92 [conn=190, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=58] Command: get_devlink_cpu_traps_rate_avg stp INFO asyncssh:logging.py:92 [conn=190, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=58] Channel closed DEBUG infra2:Logger.py:156 201 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 201 expected 200 for trap_code stp INFO asyncssh:logging.py:92 [conn=190, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=59] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg lacp INFO asyncssh:logging.py:92 [conn=190, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=60] Command: get_devlink_cpu_traps_rate_avg lacp INFO asyncssh:logging.py:92 [conn=190, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=60] Channel closed DEBUG infra2:Logger.py:156 204 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 204 expected 200 for trap_code lacp INFO asyncssh:logging.py:92 [conn=190, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=61] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg lldp INFO asyncssh:logging.py:92 [conn=190, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=62] Command: get_devlink_cpu_traps_rate_avg lldp INFO asyncssh:logging.py:92 [conn=190, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=62] Channel closed DEBUG infra2:Logger.py:156 202 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 202 expected 200 for trap_code lldp INFO asyncssh:logging.py:92 [conn=190, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=63] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg dhcp INFO asyncssh:logging.py:92 [conn=190, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=64] Command: get_devlink_cpu_traps_rate_avg dhcp INFO asyncssh:logging.py:92 [conn=190, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=64] Channel closed DEBUG infra2:Logger.py:156 101 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 101 expected 100 for trap_code dhcp INFO asyncssh:logging.py:92 [conn=190, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=65] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg arp_bc INFO asyncssh:logging.py:92 [conn=190, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=66] Command: get_devlink_cpu_traps_rate_avg arp_bc INFO asyncssh:logging.py:92 [conn=190, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=66] Channel closed DEBUG infra2:Logger.py:156 100 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 100 expected 100 for trap_code arp_bc INFO asyncssh:logging.py:92 [conn=190, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=67] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg router_mc INFO asyncssh:logging.py:92 [conn=190, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=68] Command: get_devlink_cpu_traps_rate_avg router_mc INFO asyncssh:logging.py:92 [conn=190, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=68] Channel closed DEBUG infra2:Logger.py:156 101 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 101 expected 100 for trap_code router_mc INFO asyncssh:logging.py:92 [conn=190, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=69] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg ip_bc_mac INFO asyncssh:logging.py:92 [conn=190, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=70] Command: get_devlink_cpu_traps_rate_avg ip_bc_mac INFO asyncssh:logging.py:92 [conn=190, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=70] Channel closed DEBUG infra2:Logger.py:156 101 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 101 expected 100 for trap_code ip_bc_mac INFO asyncssh:logging.py:92 [conn=190, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=71] Channel closed DEBUG infra2:Logger.py:156 get_devlink_cpu_traps_rate_avg vrrp INFO asyncssh:logging.py:92 [conn=190, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=72] Command: get_devlink_cpu_traps_rate_avg vrrp INFO asyncssh:logging.py:92 [conn=190, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=72] Channel closed DEBUG infra2:Logger.py:156 206 INFO DENT:Logger.py:84 [DENT infrastructure 2] CPU rate 206 expected 200 for trap_code vrrp INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=190, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=73] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=190, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=74] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=190, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=74] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":75000}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":75000}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":75000}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/49":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/50":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/51":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/52":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=190, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=75] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=190, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=76] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=190, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=76] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=190, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=77] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=77] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=77] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=77] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=190, chan=78] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=78] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=190, chan=78] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=78] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=78] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=190, chan=79] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=79] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=79] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=79] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=79] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=190, chan=80] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=80] Command: devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=190, chan=80] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=80] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=80] Channel closed DEBUG infra2:Logger.py:156 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_storm_control_packets from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_packets.py INFO asyncssh:logging.py:92 [conn=190, chan=81] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=81] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=81] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=81] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=81] Channel closed DEBUG infra2:Logger.py:156 echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=190, chan=82] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=82] Command: echo onl | sudo -S mv /root/.bashrc.bak /root/.bashrc INFO asyncssh:logging.py:92 [conn=190, chan=82] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=82] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=82] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=190, chan=83] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=83] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=83] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=83] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=83] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=190, chan=84] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=84] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=84] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=84] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=84] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 03:24:30 UTC 2023 INFO DENT:Logger.py:147 Deleting IP addresses from interfaces INFO asyncssh:logging.py:92 [conn=190, chan=85] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=85] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=85] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=85] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=85] Channel closed DEBUG infra2:Logger.py:156 ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 INFO asyncssh:logging.py:92 [conn=190, chan=86] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=86] Command: ip address flush swp33 && ip address flush swp34 && ip address flush swp35 && ip address flush swp36 INFO asyncssh:logging.py:92 [conn=190, chan=86] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=86] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=86] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=190, chan=87] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=87] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=87] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=87] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=87] Channel closed DEBUG infra2:Logger.py:156 ip -j link show INFO asyncssh:logging.py:92 [conn=190, chan=88] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=88] Command: ip -j link show INFO asyncssh:logging.py:92 [conn=190, chan=88] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=88] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=88] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00"},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"f6:33:41:29:6d:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0"},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=190, chan=89] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=89] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=89] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=89] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=89] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=190, chan=90] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=90] Command: ip link set dev swp33 down && ip link set dev swp34 down && ip link set dev swp35 down && ip link set dev swp36 down && ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=190, chan=90] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=90] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=90] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=190, chan=91] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=91] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=91] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=91] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=91] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=190, chan=92] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=190, chan=92] Command: date INFO asyncssh:logging.py:92 [conn=190, chan=92] Received exit status 0 INFO asyncssh:logging.py:92 [conn=190, chan=92] Received channel close INFO asyncssh:logging.py:92 [conn=190, chan=92] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 03:24:30 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] | |||
| Passed | functional/storm_control/test_storm_control_rule_set_for_br_and_mc_traffic.py::test_storm_control_rule_set_for_br_and_mc_traffic | 203.51 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_storm_control_rule_set_for_br_and_mc_traffic">Starting testcase:test_storm_control_rule_set_for_br_and_mc_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_rule_set_for_br_and_mc_traffic.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-11981' coro=<test_storm_control_rule_set_for_br_and_mc_traffic() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_rule_set_for_br_and_mc_traffic.py:51> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=190, chan=93] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=191] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=191] Local address: 172.17.0.3, port 56750 INFO asyncssh:logging.py:92 [conn=191] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=191] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=191] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=191, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=0] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 03:24:36 UTC 2023 INFO asyncssh:logging.py:92 [conn=191, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=191, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=191, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=191, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=191, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=191, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=191, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=191, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=191, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=191, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=7] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 15689 cmode runtime INFO asyncssh:logging.py:92 [conn=191, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=8] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 15689 cmode runtime INFO asyncssh:logging.py:92 [conn=191, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=191, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=9] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=191, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=10] Command: devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=191, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=10] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":15689}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f7003490>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_1 Tx 840293 Rx 372832 Frames Delta 467461 Loss 55.631 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_2 Tx 215678 Rx 215677 Frames Delta 1 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_3 Tx 426132 Rx 426130 Frames Delta 2 Loss 0.000 INFO asyncssh:logging.py:92 [conn=191, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=11] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=191, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=12] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=191, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=191, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=13] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=191, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=14] Command: devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=191, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=14] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=191, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=15] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 27713 cmode runtime INFO asyncssh:logging.py:92 [conn=191, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=16] Command: devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 27713 cmode runtime INFO asyncssh:logging.py:92 [conn=191, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=191, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=17] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=191, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=18] Command: devlink -j port param show pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=191, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=18] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":27713}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f702e920>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_1 Tx 2525686 Rx 1812584 Frames Delta 713102 Loss 28.234 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_2 Tx 648266 Rx 568926 Frames Delta 79340 Loss 12.239 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_3 Tx 1280833 Rx 1280831 Frames Delta 2 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=191, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=19] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=191, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=20] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=191, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=20] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":27713}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/49":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/50":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/51":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/52":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=191, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=21] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=191, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=22] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=191, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=22] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=191, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=23] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=191, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=24] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=191, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=24] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=191, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=25] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=191, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=26] Command: devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=191, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=26] Channel closed DEBUG infra2:Logger.py:156 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_storm_control_rule_set_for_br_and_mc_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_rule_set_for_br_and_mc_traffic.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=191, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=27] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=191, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=28] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 03:27:53 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=191, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=29] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=191, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=30] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 03:27:58 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=191, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=31] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=191, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=32] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=191, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=32] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":195,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=191, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=191, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=33] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=191, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=191, chan=34] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=191, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=191, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=191, chan=34] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/storm_control/test_storm_control_rule_set_for_br_and_unk_uc_traffic.py::test_storm_control_rule_set_for_br_and_unk_uc_traffic | 205.90 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_storm_control_rule_set_for_br_and_unk_uc_traffic">Starting testcase:test_storm_control_rule_set_for_br_and_unk_uc_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_rule_set_for_br_and_unk_uc_traffic.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-12025' coro=<test_storm_control_rule_set_for_br_and_unk_uc_traffic() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_rule_set_for_br_and_unk_uc_traffic.py:51> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=191, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=192] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=192] Local address: 172.17.0.3, port 40720 INFO asyncssh:logging.py:92 [conn=192] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=192] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=192] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=192, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=0] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 03:27:59 UTC 2023 INFO asyncssh:logging.py:92 [conn=192, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=192, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=192, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=192, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=192, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=192, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=192, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=192, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=192, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=192, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=7] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 21689 cmode runtime INFO asyncssh:logging.py:92 [conn=192, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=8] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 21689 cmode runtime INFO asyncssh:logging.py:92 [conn=192, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=192, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=9] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=192, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=10] Command: devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=192, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=10] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":21689}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f70194e0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_1 Tx 1099139 Rx 686820 Frames Delta 412319 Loss 37.513 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_2 Tx 2061833 Rx 2061826 Frames Delta 7 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_3 Tx 321124 Rx 321123 Frames Delta 1 Loss 0.000 INFO asyncssh:logging.py:92 [conn=192, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=11] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=192, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=12] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=192, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=192, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=13] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=192, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=14] Command: devlink -j port param show pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=192, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=14] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=192, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=15] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 7229 cmode runtime INFO asyncssh:logging.py:92 [conn=192, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=16] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 7229 cmode runtime INFO asyncssh:logging.py:92 [conn=192, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=192, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=17] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=192, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=18] Command: devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=192, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=18] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":7229}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f73d6c20>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_1 Tx 3305021 Rx 2674868 Frames Delta 630153 Loss 19.067 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_2 Tx 6199767 Rx 6199764 Frames Delta 3 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item stream_3 Tx 965592 Rx 586221 Frames Delta 379371 Loss 39.289 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=192, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=19] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=192, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=20] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=192, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=20] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":7229}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/49":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/50":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/51":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/52":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=192, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=21] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=192, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=22] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=192, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=22] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=192, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=23] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=192, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=24] Command: devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=192, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=24] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=192, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=25] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=192, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=26] Command: devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=192, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=26] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=192, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=27] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=192, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=28] Command: devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=192, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=28] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=192, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=29] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=192, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=30] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=192, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=30] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=192, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=31] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=192, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=32] Command: devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=192, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=32] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=192, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=33] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=192, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=34] Command: devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=192, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=34] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=192, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=35] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=192, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=36] Command: devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=192, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=36] Channel closed DEBUG infra2:Logger.py:156 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_storm_control_rule_set_for_br_and_unk_uc_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_rule_set_for_br_and_unk_uc_traffic.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=192, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=37] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=192, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=38] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=38] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 03:31:20 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=192, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=39] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=192, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=40] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=40] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 03:31:24 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=192, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=41] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=192, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=42] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=192, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=42] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":196,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=192, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=192, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=43] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=192, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=192, chan=44] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=192, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=192, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=192, chan=44] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/storm_control/test_storm_control_unk_un_lag_and_vlan_membership.py::test_storm_control_unk_un_lag_and_vlan_membership | 190.65 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_storm_control_unk_un_lag_and_vlan_membership">Starting testcase:test_storm_control_unk_un_lag_and_vlan_membership from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_unk_un_lag_and_vlan_membership.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-12080' coro=<test_storm_control_unk_un_lag_and_vlan_membership() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_unk_un_lag_and_vlan_membership.py:50> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=192, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=193] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=193] Local address: 172.17.0.3, port 53412 INFO asyncssh:logging.py:92 [conn=193] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=193] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=193] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=193, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=0] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 03:31:25 UTC 2023 INFO asyncssh:logging.py:92 [conn=193, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add bond1 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=193, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=2] Command: ip link add bond1 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=193, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=193, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev bond1 up && ip link set dev swp33 down && ip link set dev swp33 master bond1 INFO asyncssh:logging.py:92 [conn=193, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=4] Command: ip link set dev bond1 up && ip link set dev swp33 down && ip link set dev swp33 master bond1 INFO asyncssh:logging.py:92 [conn=193, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=193, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link add bond2 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=193, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=6] Command: ip link add bond2 type bond mode 802.3ad INFO asyncssh:logging.py:92 [conn=193, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=193, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link set dev bond2 up && ip link set dev swp35 down && ip link set dev swp35 master bond2 INFO asyncssh:logging.py:92 [conn=193, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=8] Command: ip link set dev bond2 up && ip link set dev swp35 down && ip link set dev swp35 master bond2 INFO asyncssh:logging.py:92 [conn=193, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=193, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=193, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=10] Command: ip link set dev swp33 up && ip link set dev swp34 up && ip link set dev swp35 up && ip link set dev swp36 up INFO asyncssh:logging.py:92 [conn=193, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=193, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=11] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=193, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=12] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=193, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=193, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=193, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=14] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=193, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=193, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp34 master br0 && ip link set dev swp36 master br0 INFO asyncssh:logging.py:92 [conn=193, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=16] Command: ip link set dev swp34 master br0 && ip link set dev swp36 master br0 INFO asyncssh:logging.py:92 [conn=193, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=193, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip link set dev bond1 master br0 && ip link set dev bond2 master br0 INFO asyncssh:logging.py:92 [conn=193, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=18] Command: ip link set dev bond1 master br0 && ip link set dev bond2 master br0 INFO asyncssh:logging.py:92 [conn=193, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=193, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 type bridge vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=193, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=20] Command: ip link set dev br0 type bridge vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=193, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=193, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=21] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp34 vid 1 pvid untagged && bridge vlan add dev swp36 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=193, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=22] Command: bridge vlan add dev swp34 vid 1 pvid untagged && bridge vlan add dev swp36 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=193, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=22] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=193, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=23] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev bond1 vid 1 pvid untagged && bridge vlan add dev bond2 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=193, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=24] Command: bridge vlan add dev bond1 vid 1 pvid untagged && bridge vlan add dev bond2 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=193, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=24] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=193, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=25] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 94404 cmode runtime INFO asyncssh:logging.py:92 [conn=193, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=26] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 94404 cmode runtime INFO asyncssh:logging.py:92 [conn=193, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=26] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=193, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=27] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=193, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=28] Command: devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=193, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=28] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":94404}]}]}} INFO asyncssh:logging.py:92 [conn=193, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=29] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 1210 cmode runtime INFO asyncssh:logging.py:92 [conn=193, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=30] Command: devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 1210 cmode runtime INFO asyncssh:logging.py:92 [conn=193, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=30] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=193, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=31] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=193, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=32] Command: devlink -j port param show pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=193, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=32] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":1210}]}]}} INFO asyncssh:logging.py:92 [conn=193, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=33] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 35099 cmode runtime INFO asyncssh:logging.py:92 [conn=193, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=34] Command: devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 35099 cmode runtime INFO asyncssh:logging.py:92 [conn=193, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=34] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=193, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=35] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=193, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=36] Command: devlink -j port param show pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=193, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=36] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/34":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":35099}]}]}} INFO asyncssh:logging.py:92 [conn=193, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=37] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 37519 cmode runtime INFO asyncssh:logging.py:92 [conn=193, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=38] Command: devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 37519 cmode runtime INFO asyncssh:logging.py:92 [conn=193, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=38] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=193, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=39] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=39] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=39] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=39] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=193, chan=40] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=40] Command: devlink -j port param show pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=193, chan=40] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=40] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=40] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/34":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":37519}]}]}} INFO asyncssh:logging.py:92 [conn=193, chan=41] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=41] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=41] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=41] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=41] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 32678 cmode runtime INFO asyncssh:logging.py:92 [conn=193, chan=42] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=42] Command: devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 32678 cmode runtime INFO asyncssh:logging.py:92 [conn=193, chan=42] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=42] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=42] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=193, chan=43] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=43] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=43] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=43] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=43] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=193, chan=44] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=44] Command: devlink -j port param show pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=193, chan=44] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=44] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=44] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":32678}]}]}} INFO asyncssh:logging.py:92 [conn=193, chan=45] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=45] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=45] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=45] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=45] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 36309 cmode runtime INFO asyncssh:logging.py:92 [conn=193, chan=46] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=46] Command: devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 36309 cmode runtime INFO asyncssh:logging.py:92 [conn=193, chan=46] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=46] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=46] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=193, chan=47] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=47] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=47] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=47] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=47] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=193, chan=48] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=48] Command: devlink -j port param show pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=193, chan=48] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=48] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=48] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/35":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":36309}]}]}} INFO asyncssh:logging.py:92 [conn=193, chan=49] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=49] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=49] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=49] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=49] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 83511 cmode runtime INFO asyncssh:logging.py:92 [conn=193, chan=50] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=50] Command: devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 83511 cmode runtime INFO asyncssh:logging.py:92 [conn=193, chan=50] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=50] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=50] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=193, chan=51] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=51] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=51] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=51] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=51] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=193, chan=52] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=52] Command: devlink -j port param show pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=193, chan=52] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=52] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=52] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/36":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":83511}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_1.1.1.4/24', 'count': 1, 'ip': '1.1.1.4', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_1.1.1.5/24', 'count': 1, 'ip': '1.1.1.5', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_1_unk_un_swp1->swp2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_2_unk_un_swp1->swp3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_3_unk_un_swp1->swp4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_1.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_1.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f6fb8790>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:5 Tx 875628 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:6 Tx 0 Rx 757146 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:7 Tx 0 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:8 Tx 0 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=193, chan=53] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=53] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=53] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=53] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=53] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=193, chan=54] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=54] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=193, chan=54] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=54] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=54] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":94404}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":1210}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":37519}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":35099}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":32678}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":36309}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":83511}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/49":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/50":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/51":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/52":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=193, chan=55] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=55] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=55] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=55] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=55] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=193, chan=56] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=56] Command: devlink port param set pci/0000:01:00.0/33 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name bc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name bc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=193, chan=56] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=56] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=56] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=193, chan=57] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=57] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=57] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=57] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=57] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=193, chan=58] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=58] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=193, chan=58] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=58] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=58] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=193, chan=59] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=59] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=59] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=59] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=59] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=193, chan=60] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=60] Command: devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime && devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=193, chan=60] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=60] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=60] Channel closed DEBUG infra2:Logger.py:156 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_storm_control_unk_un_lag_and_vlan_membership from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_unk_un_lag_and_vlan_membership.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=193, chan=61] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=61] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=61] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=61] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=61] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=193, chan=62] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=62] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=62] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=62] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=62] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 03:34:29 UTC 2023 INFO DENT:Logger.py:147 Deleting bonds INFO asyncssh:logging.py:92 [conn=193, chan=63] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=63] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=63] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=63] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=63] Channel closed DEBUG infra2:Logger.py:156 ip -j -d link show INFO asyncssh:logging.py:92 [conn=193, chan=64] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=64] Command: ip -j -d link show INFO asyncssh:logging.py:92 [conn=193, chan=64] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=64] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=64] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":1,"ifname":"lo","flags":["LOOPBACK","UP","LOWER_UP"],"mtu":65536,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"loopback","address":"00:00:00:00:00:00","broadcast":"00:00:00:00:00:00","promiscuity":0,"min_mtu":0,"max_mtu":0,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":3,"ifname":"dummy0","flags":["BROADCAST","NOARP"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"f6:33:41:29:6d:87","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":0,"max_mtu":0,"linkinfo":{"info_kind":"dummy"},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":4,"link":null,"ifname":"sit0","flags":["NOARP"],"mtu":1480,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"sit","address":"0.0.0.0","broadcast":"0.0.0.0","promiscuity":0,"min_mtu":1280,"max_mtu":65555,"linkinfo":{"info_kind":"sit","info_data":{"proto":"ip6ip","remote":"any","local":"any","ttl":64,"pmtudisc":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":5,"ifname":"ma1","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"mq","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":2048,"link_type":"ether","address":"18:be:92:13:64:82","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":9888,"inet6_addr_gen_mode":"eui64","num_tx_queues":8,"num_rx_queues":4,"gso_max_size":65536,"gso_max_segs":300,"parentbus":"platform","parentdev":"f2000000.ethernet"},{"ifindex":6,"ifname":"swp1","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:85","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p1","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":7,"ifname":"swp2","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:86","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p2","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":8,"ifname":"swp3","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:87","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p3","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":9,"ifname":"swp4","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:88","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p4","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":10,"ifname":"swp5","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:89","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p5","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":11,"ifname":"swp6","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p6","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":12,"ifname":"swp7","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p7","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":13,"ifname":"swp8","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p8","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":14,"ifname":"swp9","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p9","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":15,"ifname":"swp10","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p10","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":16,"ifname":"swp11","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p11","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":17,"ifname":"swp12","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:90","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p12","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":18,"ifname":"swp13","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:91","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p13","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":19,"ifname":"swp14","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:92","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p14","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":20,"ifname":"swp15","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:93","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p15","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":21,"ifname":"swp16","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:94","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p16","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":22,"ifname":"swp17","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:95","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p17","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":23,"ifname":"swp18","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:96","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p18","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":24,"ifname":"swp19","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:97","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p19","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":25,"ifname":"swp20","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:98","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p20","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":26,"ifname":"swp21","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:99","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p21","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":27,"ifname":"swp22","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9a","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p22","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":28,"ifname":"swp23","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9b","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p23","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":29,"ifname":"swp24","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9c","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p24","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":30,"ifname":"swp25","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9d","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p25","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":31,"ifname":"swp26","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9e","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p26","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":32,"ifname":"swp27","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:9f","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p27","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":33,"ifname":"swp28","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p28","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":34,"ifname":"swp29","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p29","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":35,"ifname":"swp30","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p30","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":36,"ifname":"swp31","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p31","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":37,"ifname":"swp32","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p32","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":38,"ifname":"swp33","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond1","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"18:be:92:13:64:a5","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p33","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":39,"ifname":"swp34","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8001","no":"0x1","designated_port":32769,"designated_cost":0,"bridge_id":"8000.18:be:92:13:64:a5","root_id":"8000.18:be:92:13:64:a5","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p34","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":40,"ifname":"swp35","flags":["BROADCAST","MULTICAST","SLAVE","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"bond2","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bond","info_slave_data":{"state":"ACTIVE","mii_status":"UP","link_failure_count":2,"perm_hwaddr":"18:be:92:13:64:a7","queue_id":0,"ad_aggregator_id":1,"ad_actor_oper_port_state":77,"ad_actor_oper_port_state_str":["active","aggregating","in_sync","defaulted"],"ad_partner_oper_port_state":1,"ad_partner_oper_port_state_str":["active"]}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p35","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":41,"ifname":"swp36","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"pfifo_fast","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a8","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":64,"max_mtu":9000,"linkinfo":{"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8002","no":"0x2","designated_port":32770,"designated_cost":0,"bridge_id":"8000.18:be:92:13:64:a5","root_id":"8000.18:be:92:13:64:a5","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p36","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":42,"ifname":"swp37","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a9","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p37","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":43,"ifname":"swp38","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:aa","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p38","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":44,"ifname":"swp39","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ab","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p39","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":45,"ifname":"swp40","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ac","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p40","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":46,"ifname":"swp41","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ad","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p41","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":47,"ifname":"swp42","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:ae","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p42","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":48,"ifname":"swp43","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:af","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p43","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":49,"ifname":"swp44","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b0","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p44","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":50,"ifname":"swp45","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b1","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p45","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":51,"ifname":"swp46","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b2","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p46","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":52,"ifname":"swp47","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b3","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p47","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":53,"ifname":"swp48","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b4","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p48","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":54,"ifname":"swp49","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p49","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":55,"ifname":"swp50","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b6","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p50","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":56,"ifname":"swp51","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p51","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":57,"ifname":"swp52","flags":["BROADCAST","MULTICAST"],"mtu":1500,"qdisc":"noop","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:b8","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":64,"max_mtu":9000,"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535,"phys_port_name":"p52","phys_switch_id":"01","parentbus":"pci","parentdev":"0000:01:00.0"},{"ifindex":197,"ifname":"bond1","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1},"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8003","no":"0x3","designated_port":32771,"designated_cost":0,"bridge_id":"8000.18:be:92:13:64:a5","root_id":"8000.18:be:92:13:64:a5","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":198,"ifname":"bond2","flags":["BROADCAST","MULTICAST","MASTER","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","master":"br0","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a7","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":1,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bond","info_data":{"mode":"802.3ad","miimon":100,"updelay":0,"downdelay":0,"peer_notify_delay":0,"use_carrier":1,"arp_interval":0,"arp_validate":null,"arp_all_targets":"any","primary_reselect":"always","fail_over_mac":"none","xmit_hash_policy":"layer2","resend_igmp":1,"num_peer_notif":1,"all_slaves_active":0,"min_links":0,"lp_interval":1,"packets_per_slave":1,"ad_lacp_active":"on","ad_lacp_rate":"slow","ad_select":"stable","ad_info":{"aggregator":1,"num_ports":1,"actor_key":9,"partner_key":1,"partner_mac":"00:00:00:00:00:00"},"ad_actor_sys_prio":65535,"ad_user_port_key":0,"ad_actor_system":"00:00:00:00:00:00","tlb_dynamic_lb":1},"info_slave_kind":"bridge","info_slave_data":{"state":"forwarding","priority":32,"cost":4,"hairpin":false,"guard":false,"root_block":false,"fastleave":false,"learning":true,"flood":true,"id":"0x8004","no":"0x4","designated_port":32772,"designated_cost":0,"bridge_id":"8000.18:be:92:13:64:a5","root_id":"8000.18:be:92:13:64:a5","hold_timer":0.00,"message_age_timer":0.00,"forward_delay_timer":0.00,"topology_change_ack":0,"config_pending":0,"proxy_arp":false,"proxy_arp_wifi":false,"multicast_router":1,"mcast_flood":true,"bcast_flood":true,"mcast_to_unicast":false,"neigh_suppress":false,"group_fwd_mask":"0","group_fwd_mask_str":"0x0","vlan_tunnel":false,"isolated":false,"locked":false}},"inet6_addr_gen_mode":"eui64","num_tx_queues":16,"num_rx_queues":16,"gso_max_size":65536,"gso_max_segs":65535},{"ifindex":199,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff","promiscuity":0,"min_mtu":68,"max_mtu":65535,"linkinfo":{"info_kind":"bridge","info_data":{"forward_delay":1500,"hello_time":200,"max_age":2000,"ageing_time":30000,"stp_state":0,"priority":32768,"vlan_filtering":1,"vlan_protocol":"802.1Q","bridge_id":"8000.18:be:92:13:64:a5","root_id":"8000.18:be:92:13:64:a5","root_port":0,"root_path_cost":0,"topology_change":0,"topology_change_detected":0,"hello_timer":0.00,"tcn_timer":0.00,"topology_change_timer":0.00,"gc_timer":116.01,"vlan_default_pvid":0,"vlan_stats_enabled":0,"vlan_stats_per_port":0,"group_fwd_mask":"0","group_addr":"01:80:c2:00:00:00","mcast_snooping":1,"mcast_vlan_snooping":0,"mcast_router":1,"mcast_query_use_ifaddr":0,"mcast_querier":0,"mcast_hash_elasticity":16,"mcast_hash_max":4096,"mcast_last_member_cnt":2,"mcast_startup_query_cnt":2,"mcast_last_member_intvl":100,"mcast_membership_intvl":26000,"mcast_querier_intvl":25500,"mcast_query_intvl":12500,"mcast_query_response_intvl":1000,"mcast_startup_query_intvl":3124,"mcast_stats_enabled":0,"mcast_igmp_version":2,"mcast_mld_version":1,"nf_call_iptables":0,"nf_call_ip6tables":0,"nf_call_arptables":0}},"inet6_addr_gen_mode":"eui64","num_tx_queues":1,"num_rx_queues":1,"gso_max_size":65536,"gso_max_segs":65535}] INFO asyncssh:logging.py:92 [conn=193, chan=65] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=65] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=65] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=65] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=65] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond1 INFO asyncssh:logging.py:92 [conn=193, chan=66] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=66] Command: ip link delete bond1 INFO asyncssh:logging.py:92 [conn=193, chan=66] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=66] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=66] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=193, chan=67] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=67] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=67] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=67] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=67] Channel closed DEBUG infra2:Logger.py:156 ip link delete bond2 INFO asyncssh:logging.py:92 [conn=193, chan=68] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=68] Command: ip link delete bond2 INFO asyncssh:logging.py:92 [conn=193, chan=68] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=68] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=68] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=193, chan=69] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=69] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=69] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=69] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=69] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=193, chan=70] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=70] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=70] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=70] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=70] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 03:34:30 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=193, chan=71] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=71] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=71] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=71] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=71] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=193, chan=72] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=72] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=72] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=72] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=72] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 03:34:35 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=193, chan=73] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=73] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=73] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=73] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=73] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=193, chan=74] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=74] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=193, chan=74] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=74] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=74] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":199,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a6","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=193, chan=75] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=75] Command: date INFO asyncssh:logging.py:92 [conn=193, chan=75] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=75] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=75] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=193, chan=76] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=193, chan=76] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=193, chan=76] Received exit status 0 INFO asyncssh:logging.py:92 [conn=193, chan=76] Received channel close INFO asyncssh:logging.py:92 [conn=193, chan=76] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/storm_control/test_storm_control_unknown_unicast_traffic.py::test_storm_control_unknown_unicast_traffic | 144.71 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_storm_control_unknown_unicast_traffic">Starting testcase:test_storm_control_unknown_unicast_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_unknown_unicast_traffic.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-12168' coro=<test_storm_control_unknown_unicast_traffic() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_unknown_unicast_traffic.py:48> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=193, chan=77] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=194] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=194] Local address: 172.17.0.3, port 52368 INFO asyncssh:logging.py:92 [conn=194] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=194] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=194] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=194, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=0] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 03:34:36 UTC 2023 INFO asyncssh:logging.py:92 [conn=194, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=194, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=194, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=194, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=194, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=194, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=194, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=194, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=194, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=194, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=7] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=194, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=8] Command: devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=194, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=8] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=194, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=9] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 23093 cmode runtime INFO asyncssh:logging.py:92 [conn=194, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=10] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 23093 cmode runtime INFO asyncssh:logging.py:92 [conn=194, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=194, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=11] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=194, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=12] Command: devlink -j port param show pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=194, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=12] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":23093}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:2:7' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_A INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f6e93fa0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:5 Tx 2568105 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:6 Tx 0 Rx 531212 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:7 Tx 0 Rx 531210 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:8 Tx 0 Rx 531171 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=194, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=13] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=194, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=14] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=194, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=14] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":23093}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/49":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/50":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/51":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/52":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=194, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=15] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=194, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=16] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=194, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=194, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=17] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=194, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=18] Command: devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=194, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=194, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=19] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=194, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=20] Command: devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=194, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=194, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=21] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=194, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=22] Command: devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=194, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=22] Channel closed DEBUG infra2:Logger.py:156 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_storm_control_unknown_unicast_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_unknown_unicast_traffic.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=194, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=23] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=194, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=24] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 03:36:55 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=194, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=25] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=194, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=26] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 03:37:00 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=194, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=27] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=194, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=28] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=194, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=28] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":200,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=194, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=194, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=29] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=194, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=194, chan=30] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=194, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=194, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=194, chan=30] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/storm_control/test_storm_control_unregistered_multicast_traffic.py::test_storm_control_unregistered_multicast_traffic | 147.67 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_storm_control_unregistered_multicast_traffic">Starting testcase:test_storm_control_unregistered_multicast_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_unregistered_multicast_traffic.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-12208' coro=<test_storm_control_unregistered_multicast_traffic() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_unregistered_multicast_traffic.py:48> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=194, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=195] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=195] Local address: 172.17.0.3, port 51372 INFO asyncssh:logging.py:92 [conn=195] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=195] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=195] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=195, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=0] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 03:37:00 UTC 2023 INFO asyncssh:logging.py:92 [conn=195, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=195, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=195, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=195, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=195, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=195, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=195, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=195, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=195, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=195, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=7] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=195, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=8] Command: devlink -j port param show pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=195, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=8] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=195, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=9] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 118689 cmode runtime INFO asyncssh:logging.py:92 [conn=195, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=10] Command: devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 118689 cmode runtime INFO asyncssh:logging.py:92 [conn=195, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=195, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=11] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=195, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=12] Command: devlink -j port param show pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=195, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=12] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/33":[{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":118689}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:2:7' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_A INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f6f94a00>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:5 Tx 988693 Rx 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:6 Tx 0 Rx 959432 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:7 Tx 0 Rx 2745892 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:8 Tx 0 Rx 2745839 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=195, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=13] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=195, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=14] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=195, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=14] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":118689}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/49":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/50":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/51":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/52":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=195, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=15] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=195, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=16] Command: devlink port param set pci/0000:01:00.0/33 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=195, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=195, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=17] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=195, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=18] Command: devlink port param set pci/0000:01:00.0/34 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=195, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=195, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=19] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=195, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=20] Command: devlink port param set pci/0000:01:00.0/35 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=195, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=195, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=21] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=195, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=22] Command: devlink port param set pci/0000:01:00.0/36 name unreg_mc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=195, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=22] Channel closed DEBUG infra2:Logger.py:156 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_storm_control_unregistered_multicast_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_control_unregistered_multicast_traffic.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=195, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=23] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=195, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=24] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=24] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 03:39:23 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=195, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=25] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=195, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=26] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 03:39:27 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=195, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=27] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=195, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=28] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=195, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=28] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":201,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=195, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=195, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=29] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=195, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=195, chan=30] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=195, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=195, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=195, chan=30] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/storm_control/test_storm_negative_known_unicast_traffic.py::test_storm_negative_known_unicast_traffic | 159.21 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_storm_negative_known_unicast_traffic">Starting testcase:test_storm_negative_known_unicast_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_negative_known_unicast_traffic.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-12248' coro=<test_storm_negative_known_unicast_traffic() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_negative_known_unicast_traffic.py:53> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=195, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=196] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=196] Local address: 172.17.0.3, port 45014 INFO asyncssh:logging.py:92 [conn=196] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=196] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=196] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=196, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=0] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 03:39:28 UTC 2023 INFO asyncssh:logging.py:92 [conn=196, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=196, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=196, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=196, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=196, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=196, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=196, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=196, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=196, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=196, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=7] Channel closed DEBUG infra2:Logger.py:156 bridge fdb add 68:16:3d:2e:b4:c8 dev swp33 static master INFO asyncssh:logging.py:92 [conn=196, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=8] Command: bridge fdb add 68:16:3d:2e:b4:c8 dev swp33 static master INFO asyncssh:logging.py:92 [conn=196, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=196, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=9] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=196, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=10] Command: devlink -j port param show pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=196, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=10] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/34":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=196, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=11] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 50420 cmode runtime INFO asyncssh:logging.py:92 [conn=196, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=12] Command: devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 50420 cmode runtime INFO asyncssh:logging.py:92 [conn=196, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=196, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=13] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=196, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=14] Command: devlink -j port param show pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate INFO asyncssh:logging.py:92 [conn=196, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=14] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/34":[{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":50420}]}]}} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_1.1.1.2/24', 'count': 1, 'ip': '1.1.1.2', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_1.1.1.3/24', 'count': 1, 'ip': '1.1.1.3', 'gw': '1.1.1.1', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:2:7' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for stream_A INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_1.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_1.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f701ae90>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:5 Tx 0 Rx 1010454 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:6 Tx 1010405 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:7 Tx 0 Rx 3441979 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:8 Tx 0 Rx 3441970 INFO asyncssh:logging.py:92 [conn=196, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=15] Channel closed DEBUG infra2:Logger.py:156 bridge fdb delete 68:16:3d:2e:b4:c8 dev swp33 static master INFO asyncssh:logging.py:92 [conn=196, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=16] Command: bridge fdb delete 68:16:3d:2e:b4:c8 dev swp33 static master INFO asyncssh:logging.py:92 [conn=196, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f70628c0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:5 Tx 0 Rx 2222162 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:6 Tx 3051655 Rx 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:7 Tx 0 Rx 4023305 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Port 10.36.118.199:2:8 Tx 0 Rx 4023297 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:147 Restoring kbyte_per_sec_rate values INFO asyncssh:logging.py:92 [conn=196, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=17] Channel closed DEBUG infra2:Logger.py:156 devlink -j port param show INFO asyncssh:logging.py:92 [conn=196, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=18] Command: devlink -j port param show INFO asyncssh:logging.py:92 [conn=196, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=18] Channel closed DEBUG infra2:Logger.py:156 {"param":{"pci/0000:01:00.0/1":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/2":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/3":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/4":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/5":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/6":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/7":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/8":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/9":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/10":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/11":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/12":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/13":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/14":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/15":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/16":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/17":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/18":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/19":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/20":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/21":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/22":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/23":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/24":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/25":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/26":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/27":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/28":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/29":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/30":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/31":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/32":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/33":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/34":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":50420}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/35":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/36":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/37":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/38":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/39":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/40":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/41":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/42":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/43":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/44":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/45":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/46":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/47":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/48":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/49":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/50":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/51":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}],"pci/0000:01:00.0/52":[{"name":"bc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unk_uc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]},{"name":"unreg_mc_kbyte_per_sec_rate","type":"driver-specific","values":[{"cmode":"runtime","value":0}]}]}} INFO asyncssh:logging.py:92 [conn=196, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=19] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=196, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=20] Command: devlink port param set pci/0000:01:00.0/33 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=196, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=196, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=21] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=196, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=22] Command: devlink port param set pci/0000:01:00.0/34 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=196, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=22] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=196, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=23] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=196, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=24] Command: devlink port param set pci/0000:01:00.0/35 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=196, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=24] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=196, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=25] Channel closed DEBUG infra2:Logger.py:156 devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=196, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=26] Command: devlink port param set pci/0000:01:00.0/36 name unk_uc_kbyte_per_sec_rate value 0 cmode runtime INFO asyncssh:logging.py:92 [conn=196, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=26] Channel closed DEBUG infra2:Logger.py:156 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_storm_negative_known_unicast_traffic from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/storm_control/test_storm_negative_known_unicast_traffic.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=196, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=27] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=196, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=28] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=28] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 03:42:01 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=196, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=29] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=196, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=30] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=30] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 03:42:07 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=196, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=31] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=196, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=32] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=196, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=32] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":202,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=196, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=196, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=33] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=196, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=196, chan=34] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=196, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=196, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=196, chan=34] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/vlan/test_vlan_all_supported_modes.py::test_vlan_all_supported_modes_broadcast | 224.89 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_all_supported_modes_broadcast">Starting testcase:test_vlan_all_supported_modes_broadcast from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_all_supported_modes.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-12292' coro=<test_vlan_all_supported_modes_broadcast() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_all_supported_modes.py:43> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=196, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=197] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=197] Local address: 172.17.0.3, port 47690 INFO asyncssh:logging.py:92 [conn=197] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=197] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=197] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=197, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=0] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 03:42:07 UTC 2023 INFO asyncssh:logging.py:92 [conn=197, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=197, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=197, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=197, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=197, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=197, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=197, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=197, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=197, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=197, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=7] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp33 vid 2 && bridge vlan add dev swp33 vid 3 untagged && bridge vlan add dev swp33 vid 4 pvid untagged INFO asyncssh:logging.py:92 [conn=197, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=8] Command: bridge vlan add dev swp33 vid 2 && bridge vlan add dev swp33 vid 3 untagged && bridge vlan add dev swp33 vid 4 pvid untagged INFO asyncssh:logging.py:92 [conn=197, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=197, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=9] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp34 vid 2 INFO asyncssh:logging.py:92 [conn=197, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=10] Command: bridge vlan add dev swp34 vid 2 INFO asyncssh:logging.py:92 [conn=197, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=197, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=11] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp35 vid 3 pvid untagged INFO asyncssh:logging.py:92 [conn=197, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=12] Command: bridge vlan add dev swp35 vid 3 pvid untagged INFO asyncssh:logging.py:92 [conn=197, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=197, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=13] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp36 vid 4 pvid untagged INFO asyncssh:logging.py:92 [conn=197, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=14] Command: bridge vlan add dev swp36 vid 4 pvid untagged INFO asyncssh:logging.py:92 [conn=197, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic with VLAN ID: 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic with VLAN ID: 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic with VLAN ID: 3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic with VLAN ID: 4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Untagged traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f6f95210>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic with VLAN ID: 1 SIP-DIP N/A Tx 228 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic with VLAN ID: 1 SIP-DIP N/A Tx 228 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic with VLAN ID: 1 SIP-DIP N/A Tx 228 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic with VLAN ID: 2 SIP-DIP N/A Tx 228 Rx 228 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic with VLAN ID: 2 SIP-DIP N/A Tx 228 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic with VLAN ID: 2 SIP-DIP N/A Tx 228 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic with VLAN ID: 3 SIP-DIP N/A Tx 228 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic with VLAN ID: 3 SIP-DIP N/A Tx 228 Rx 228 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic with VLAN ID: 3 SIP-DIP N/A Tx 228 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic with VLAN ID: 4 SIP-DIP N/A Tx 228 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic with VLAN ID: 4 SIP-DIP N/A Tx 228 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic with VLAN ID: 4 SIP-DIP N/A Tx 228 Rx 228 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI Untagged traffic SIP-DIP N/A Tx 228 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI Untagged traffic SIP-DIP N/A Tx 228 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI Untagged traffic SIP-DIP N/A Tx 228 Rx 228 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_all_supported_modes_broadcast from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_all_supported_modes.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=197, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=15] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=197, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=16] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 03:45:51 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=197, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=17] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=197, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=18] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 03:45:51 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=197, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=197, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=197, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=20] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":203,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=197, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=197, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=197, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=197, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=197, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=197, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=197, chan=22] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/vlan/test_vlan_all_supported_modes.py::test_vlan_all_supported_modes_multicast | 225.05 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_all_supported_modes_multicast">Starting testcase:test_vlan_all_supported_modes_multicast from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_all_supported_modes.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-12324' coro=<test_vlan_all_supported_modes_multicast() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_all_supported_modes.py:124> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=197, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=198] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=198] Local address: 172.17.0.3, port 43682 INFO asyncssh:logging.py:92 [conn=198] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=198] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=198] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=198, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=0] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 03:45:52 UTC 2023 INFO asyncssh:logging.py:92 [conn=198, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=198, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=198, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=198, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=198, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=198, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=198, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=198, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=198, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=198, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=7] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp33 vid 2 && bridge vlan add dev swp33 vid 3 untagged && bridge vlan add dev swp33 vid 4 pvid untagged INFO asyncssh:logging.py:92 [conn=198, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=8] Command: bridge vlan add dev swp33 vid 2 && bridge vlan add dev swp33 vid 3 untagged && bridge vlan add dev swp33 vid 4 pvid untagged INFO asyncssh:logging.py:92 [conn=198, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=198, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=9] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp34 vid 2 INFO asyncssh:logging.py:92 [conn=198, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=10] Command: bridge vlan add dev swp34 vid 2 INFO asyncssh:logging.py:92 [conn=198, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=198, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=11] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp35 vid 3 pvid untagged INFO asyncssh:logging.py:92 [conn=198, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=12] Command: bridge vlan add dev swp35 vid 3 pvid untagged INFO asyncssh:logging.py:92 [conn=198, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=198, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=13] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp36 vid 4 pvid untagged INFO asyncssh:logging.py:92 [conn=198, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=14] Command: bridge vlan add dev swp36 vid 4 pvid untagged INFO asyncssh:logging.py:92 [conn=198, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic with VLAN ID: 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic with VLAN ID: 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic with VLAN ID: 3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic with VLAN ID: 4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Untagged traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f7018880>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic with VLAN ID: 1 SIP-DIP N/A Tx 23 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic with VLAN ID: 1 SIP-DIP N/A Tx 23 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic with VLAN ID: 1 SIP-DIP N/A Tx 23 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic with VLAN ID: 2 SIP-DIP N/A Tx 23 Rx 23 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic with VLAN ID: 2 SIP-DIP N/A Tx 23 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic with VLAN ID: 2 SIP-DIP N/A Tx 23 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic with VLAN ID: 3 SIP-DIP N/A Tx 23 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic with VLAN ID: 3 SIP-DIP N/A Tx 23 Rx 23 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic with VLAN ID: 3 SIP-DIP N/A Tx 23 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic with VLAN ID: 4 SIP-DIP N/A Tx 23 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI traffic with VLAN ID: 4 SIP-DIP N/A Tx 23 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI traffic with VLAN ID: 4 SIP-DIP N/A Tx 23 Rx 23 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI Untagged traffic SIP-DIP N/A Tx 23 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI Untagged traffic SIP-DIP N/A Tx 23 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI Untagged traffic SIP-DIP N/A Tx 23 Rx 23 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_all_supported_modes_multicast from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_all_supported_modes.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=198, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=15] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=198, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=16] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 03:49:36 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=198, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=17] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=198, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=18] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 03:49:37 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=198, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=198, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=198, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=20] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":204,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=198, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=198, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=198, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=198, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=198, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=198, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=198, chan=22] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/vlan/test_vlan_all_supported_modes.py::test_vlan_all_supported_modes_unicast | 236.31 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_all_supported_modes_unicast">Starting testcase:test_vlan_all_supported_modes_unicast from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_all_supported_modes.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-12356' coro=<test_vlan_all_supported_modes_unicast() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_all_supported_modes.py:207> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=198, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=199] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=199] Local address: 172.17.0.3, port 51730 INFO asyncssh:logging.py:92 [conn=199] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=199] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=199] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=199, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=0] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 03:49:37 UTC 2023 INFO asyncssh:logging.py:92 [conn=199, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=199, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=199, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=199, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=199, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=199, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=199, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=199, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=199, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=199, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=7] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp33 vid 2 && bridge vlan add dev swp33 vid 3 untagged && bridge vlan add dev swp33 vid 4 pvid untagged INFO asyncssh:logging.py:92 [conn=199, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=8] Command: bridge vlan add dev swp33 vid 2 && bridge vlan add dev swp33 vid 3 untagged && bridge vlan add dev swp33 vid 4 pvid untagged INFO asyncssh:logging.py:92 [conn=199, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=199, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=9] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp34 vid 2 INFO asyncssh:logging.py:92 [conn=199, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=10] Command: bridge vlan add dev swp34 vid 2 INFO asyncssh:logging.py:92 [conn=199, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=199, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=11] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp35 vid 3 pvid untagged INFO asyncssh:logging.py:92 [conn=199, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=12] Command: bridge vlan add dev swp35 vid 3 pvid untagged INFO asyncssh:logging.py:92 [conn=199, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=199, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=13] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp36 vid 4 pvid untagged INFO asyncssh:logging.py:92 [conn=199, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=14] Command: bridge vlan add dev swp36 vid 4 pvid untagged INFO asyncssh:logging.py:92 [conn=199, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:5 -> 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:5 -> 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:5 -> 3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:5 -> 4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:5 -> X INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:6 -> 10.36.118.199:2:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:7 -> 10.36.118.199:2:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:8 -> 10.36.118.199:2:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f7003be0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5 -> 1 SIP-DIP N/A Tx 307 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI 10.36.118.199:2:5 -> 1 SIP-DIP N/A Tx 307 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI 10.36.118.199:2:5 -> 1 SIP-DIP N/A Tx 307 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5 -> 2 SIP-DIP N/A Tx 307 Rx 307 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI 10.36.118.199:2:5 -> 2 SIP-DIP N/A Tx 307 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI 10.36.118.199:2:5 -> 2 SIP-DIP N/A Tx 307 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5 -> 3 SIP-DIP N/A Tx 307 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI 10.36.118.199:2:5 -> 3 SIP-DIP N/A Tx 307 Rx 307 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI 10.36.118.199:2:5 -> 3 SIP-DIP N/A Tx 307 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5 -> 4 SIP-DIP N/A Tx 307 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI 10.36.118.199:2:5 -> 4 SIP-DIP N/A Tx 307 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI 10.36.118.199:2:5 -> 4 SIP-DIP N/A Tx 307 Rx 307 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI 10.36.118.199:2:5 -> X SIP-DIP N/A Tx 307 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI 10.36.118.199:2:5 -> X SIP-DIP N/A Tx 307 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI 10.36.118.199:2:5 -> X SIP-DIP N/A Tx 307 Rx 307 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:6 -> 10.36.118.199:2:5 SIP-DIP N/A Tx 307 Rx 307 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:7 -> 10.36.118.199:2:5 SIP-DIP N/A Tx 307 Rx 307 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:8 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:8 -> 10.36.118.199:2:5 SIP-DIP N/A Tx 307 Rx 307 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_all_supported_modes_unicast from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_all_supported_modes.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=199, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=15] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=199, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=16] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 03:53:31 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=199, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=17] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=199, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=18] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 03:53:33 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=199, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=199, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=199, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=20] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":205,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=199, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=199, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=199, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=199, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=199, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=199, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=199, chan=22] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/vlan/test_vlan_configuration_checks.py::test_vlan_can_set_max_vlans | 163.15 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_can_set_max_vlans">Starting testcase:test_vlan_can_set_max_vlans from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_configuration_checks.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-12388' coro=<test_vlan_can_set_max_vlans() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_configuration_checks.py:26> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO asyncssh:logging.py:92 [conn=199, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=200] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=200] Local address: 172.17.0.3, port 59210 INFO asyncssh:logging.py:92 [conn=200] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=200] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=200] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=200, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=0] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 03:53:33 UTC 2023 INFO asyncssh:logging.py:92 [conn=200, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=200, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=200, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=200, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=200, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=200, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=200, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp6 up master br0 INFO asyncssh:logging.py:92 [conn=200, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=6] Command: ip link set dev swp6 up master br0 INFO asyncssh:logging.py:92 [conn=200, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=200, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=7] Channel closed DEBUG infra2:Logger.py:156 time for i in {1..4094}; do bridge vlan add vid $i dev swp6; done INFO asyncssh:logging.py:92 [conn=200, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=8] Command: time for i in {1..4094}; do bridge vlan add vid $i dev swp6; done INFO asyncssh:logging.py:92 [conn=200, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=8] Channel closed DEBUG infra2:Logger.py:156 real 1m49.138s user 0m3.487s sys 1m45.825s INFO asyncssh:logging.py:92 [conn=200, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=9] Channel closed DEBUG infra2:Logger.py:156 bridge -j vlan show dev swp6 INFO asyncssh:logging.py:92 [conn=200, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=10] Command: bridge -j vlan show dev swp6 INFO asyncssh:logging.py:92 [conn=200, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=10] Channel closed DEBUG infra2:Logger.py:156 [{"ifname":"swp6","vlans":[{"vlan":1},{"vlan":2},{"vlan":3},{"vlan":4},{"vlan":5},{"vlan":6},{"vlan":7},{"vlan":8},{"vlan":9},{"vlan":10},{"vlan":11},{"vlan":12},{"vlan":13},{"vlan":14},{"vlan":15},{"vlan":16},{"vlan":17},{"vlan":18},{"vlan":19},{"vlan":20},{"vlan":21},{"vlan":22},{"vlan":23},{"vlan":24},{"vlan":25},{"vlan":26},{"vlan":27},{"vlan":28},{"vlan":29},{"vlan":30},{"vlan":31},{"vlan":32},{"vlan":33},{"vlan":34},{"vlan":35},{"vlan":36},{"vlan":37},{"vlan":38},{"vlan":39},{"vlan":40},{"vlan":41},{"vlan":42},{"vlan":43},{"vlan":44},{"vlan":45},{"vlan":46},{"vlan":47},{"vlan":48},{"vlan":49},{"vlan":50},{"vlan":51},{"vlan":52},{"vlan":53},{"vlan":54},{"vlan":55},{"vlan":56},{"vlan":57},{"vlan":58},{"vlan":59},{"vlan":60},{"vlan":61},{"vlan":62},{"vlan":63},{"vlan":64},{"vlan":65},{"vlan":66},{"vlan":67},{"vlan":68},{"vlan":69},{"vlan":70},{"vlan":71},{"vlan":72},{"vlan":73},{"vlan":74},{"vlan":75},{"vlan":76},{"vlan":77},{"vlan":78},{"vlan":79},{"vlan":80},{"vlan":81},{"vlan":82},{"vlan":83},{"vlan":84},{"vlan":85},{"vlan":86},{"vlan":87},{"vlan":88},{"vlan":89},{"vlan":90},{"vlan":91},{"vlan":92},{"vlan":93},{"vlan":94},{"vlan":95},{"vlan":96},{"vlan":97},{"vlan":98},{"vlan":99},{"vlan":100},{"vlan":101},{"vlan":102},{"vlan":103},{"vlan":104},{"vlan":105},{"vlan":106},{"vlan":107},{"vlan":108},{"vlan":109},{"vlan":110},{"vlan":111},{"vlan":112},{"vlan":113},{"vlan":114},{"vlan":115},{"vlan":116},{"vlan":117},{"vlan":118},{"vlan":119},{"vlan":120},{"vlan":121},{"vlan":122},{"vlan":123},{"vlan":124},{"vlan":125},{"vlan":126},{"vlan":127},{"vlan":128},{"vlan":129},{"vlan":130},{"vlan":131},{"vlan":132},{"vlan":133},{"vlan":134},{"vlan":135},{"vlan":136},{"vlan":137},{"vlan":138},{"vlan":139},{"vlan":140},{"vlan":141},{"vlan":142},{"vlan":143},{"vlan":144},{"vlan":145},{"vlan":146},{"vlan":147},{"vlan":148},{"vlan":149},{"vlan":150},{"vlan":151},{"vlan":152},{"vlan":153},{"vlan":154},{"vlan":155},{"vlan":156},{"vlan":157},{"vlan":158},{"vlan":159},{"vlan":160},{"vlan":161},{"vlan":162},{"vlan":163},{"vlan":164},{"vlan":165},{"vlan":166},{"vlan":167},{"vlan":168},{"vlan":169},{"vlan":170},{"vlan":171},{"vlan":172},{"vlan":173},{"vlan":174},{"vlan":175},{"vlan":176},{"vlan":177},{"vlan":178},{"vlan":179},{"vlan":180},{"vlan":181},{"vlan":182},{"vlan":183},{"vlan":184},{"vlan":185},{"vlan":186},{"vlan":187},{"vlan":188},{"vlan":189},{"vlan":190},{"vlan":191},{"vlan":192},{"vlan":193},{"vlan":194},{"vlan":195},{"vlan":196},{"vlan":197},{"vlan":198},{"vlan":199},{"vlan":200},{"vlan":201},{"vlan":202},{"vlan":203},{"vlan":204},{"vlan":205},{"vlan":206},{"vlan":207},{"vlan":208},{"vlan":209},{"vlan":210},{"vlan":211},{"vlan":212},{"vlan":213},{"vlan":214},{"vlan":215},{"vlan":216},{"vlan":217},{"vlan":218},{"vlan":219},{"vlan":220},{"vlan":221},{"vlan":222},{"vlan":223},{"vlan":224},{"vlan":225},{"vlan":226},{"vlan":227},{"vlan":228},{"vlan":229},{"vlan":230},{"vlan":231},{"vlan":232},{"vlan":233},{"vlan":234},{"vlan":235},{"vlan":236},{"vlan":237},{"vlan":238},{"vlan":239},{"vlan":240},{"vlan":241},{"vlan":242},{"vlan":243},{"vlan":244},{"vlan":245},{"vlan":246},{"vlan":247},{"vlan":248},{"vlan":249},{"vlan":250},{"vlan":251},{"vlan":252},{"vlan":253},{"vlan":254},{"vlan":255},{"vlan":256},{"vlan":257},{"vlan":258},{"vlan":259},{"vlan":260},{"vlan":261},{"vlan":262},{"vlan":263},{"vlan":264},{"vlan":265},{"vlan":266},{"vlan":267},{"vlan":268},{"vlan":269},{"vlan":270},{"vlan":271},{"vlan":272},{"vlan":273},{"vlan":274},{"vlan":275},{"vlan":276},{"vlan":277},{"vlan":278},{"vlan":279},{"vlan":280},{"vlan":281},{"vlan":282},{"vlan":283},{"vlan":284},{"vlan":285},{"vlan":286},{"vlan":287},{"vlan":288},{"vlan":289},{"vlan":290},{"vlan":291},{"vlan":292},{"vlan":293},{"vlan":294},{"vlan":295},{"vlan":296},{"vlan":297},{"vlan":298},{"vlan":299},{"vlan":300},{"vlan":301},{"vlan":302},{"vlan":303},{"vlan":304},{"vlan":305},{"vlan":306},{"vlan":307},{"vlan":308},{"vlan":309},{"vlan":310},{"vlan":311},{"vlan":312},{"vlan":313},{"vlan":314},{"vlan":315},{"vlan":316},{"vlan":317},{"vlan":318},{"vlan":319},{"vlan":320},{"vlan":321},{"vlan":322},{"vlan":323},{"vlan":324},{"vlan":325},{"vlan":326},{"vlan":327},{"vlan":328},{"vlan":329},{"vlan":330},{"vlan":331},{"vlan":332},{"vlan":333},{"vlan":334},{"vlan":335},{"vlan":336},{"vlan":337},{"vlan":338},{"vlan":339},{"vlan":340},{"vlan":341},{"vlan":342},{"vlan":343},{"vlan":344},{"vlan":345},{"vlan":346},{"vlan":347},{"vlan":348},{"vlan":349},{"vlan":350},{"vlan":351},{"vlan":352},{"vlan":353},{"vlan":354},{"vlan":355},{"vlan":356},{"vlan":357},{"vlan":358},{"vlan":359},{"vlan":360},{"vlan":361},{"vlan":362},{"vlan":363},{"vlan":364},{"vlan":365},{"vlan":366},{"vlan":367},{"vlan":368},{"vlan":369},{"vlan":370},{"vlan":371},{"vlan":372},{"vlan":373},{"vlan":374},{"vlan":375},{"vlan":376},{"vlan":377},{"vlan":378},{"vlan":379},{"vlan":380},{"vlan":381},{"vlan":382},{"vlan":383},{"vlan":384},{"vlan":385},{"vlan":386},{"vlan":387},{"vlan":388},{"vlan":389},{"vlan":390},{"vlan":391},{"vlan":392},{"vlan":393},{"vlan":394},{"vlan":395},{"vlan":396},{"vlan":397},{"vlan":398},{"vlan":399},{"vlan":400},{"vlan":401},{"vlan":402},{"vlan":403},{"vlan":404},{"vlan":405},{"vlan":406},{"vlan":407},{"vlan":408},{"vlan":409},{"vlan":410},{"vlan":411},{"vlan":412},{"vlan":413},{"vlan":414},{"vlan":415},{"vlan":416},{"vlan":417},{"vlan":418},{"vlan":419},{"vlan":420},{"vlan":421},{"vlan":422},{"vlan":423},{"vlan":424},{"vlan":425},{"vlan":426},{"vlan":427},{"vlan":428},{"vlan":429},{"vlan":430},{"vlan":431},{"vlan":432},{"vlan":433},{"vlan":434},{"vlan":435},{"vlan":436},{"vlan":437},{"vlan":438},{"vlan":439},{"vlan":440},{"vlan":441},{"vlan":442},{"vlan":443},{"vlan":444},{"vlan":445},{"vlan":446},{"vlan":447},{"vlan":448},{"vlan":449},{"vlan":450},{"vlan":451},{"vlan":452},{"vlan":453},{"vlan":454},{"vlan":455},{"vlan":456},{"vlan":457},{"vlan":458},{"vlan":459},{"vlan":460},{"vlan":461},{"vlan":462},{"vlan":463},{"vlan":464},{"vlan":465},{"vlan":466},{"vlan":467},{"vlan":468},{"vlan":469},{"vlan":470},{"vlan":471},{"vlan":472},{"vlan":473},{"vlan":474},{"vlan":475},{"vlan":476},{"vlan":477},{"vlan":478},{"vlan":479},{"vlan":480},{"vlan":481},{"vlan":482},{"vlan":483},{"vlan":484},{"vlan":485},{"vlan":486},{"vlan":487},{"vlan":488},{"vlan":489},{"vlan":490},{"vlan":491},{"vlan":492},{"vlan":493},{"vlan":494},{"vlan":495},{"vlan":496},{"vlan":497},{"vlan":498},{"vlan":499},{"vlan":500},{"vlan":501},{"vlan":502},{"vlan":503},{"vlan":504},{"vlan":505},{"vlan":506},{"vlan":507},{"vlan":508},{"vlan":509},{"vlan":510},{"vlan":511},{"vlan":512},{"vlan":513},{"vlan":514},{"vlan":515},{"vlan":516},{"vlan":517},{"vlan":518},{"vlan":519},{"vlan":520},{"vlan":521},{"vlan":522},{"vlan":523},{"vlan":524},{"vlan":525},{"vlan":526},{"vlan":527},{"vlan":528},{"vlan":529},{"vlan":530},{"vlan":531},{"vlan":532},{"vlan":533},{"vlan":534},{"vlan":535},{"vlan":536},{"vlan":537},{"vlan":538},{"vlan":539},{"vlan":540},{"vlan":541},{"vlan":542},{"vlan":543},{"vlan":544},{"vlan":545},{"vlan":546},{"vlan":547},{"vlan":548},{"vlan":549},{"vlan":550},{"vlan":551},{"vlan":552},{"vlan":553},{"vlan":554},{"vlan":555},{"vlan":556},{"vlan":557},{"vlan":558},{"vlan":559},{"vlan":560},{"vlan":561},{"vlan":562},{"vlan":563},{"vlan":564},{"vlan":565},{"vlan":566},{"vlan":567},{"vlan":568},{"vlan":569},{"vlan":570},{"vlan":571},{"vlan":572},{"vlan":573},{"vlan":574},{"vlan":575},{"vlan":576},{"vlan":577},{"vlan":578},{"vlan":579},{"vlan":580},{"vlan":581},{"vlan":582},{"vlan":583},{"vlan":584},{"vlan":585},{"vlan":586},{"vlan":587},{"vlan":588},{"vlan":589},{"vlan":590},{"vlan":591},{"vlan":592},{"vlan":593},{"vlan":594},{"vlan":595},{"vlan":596},{"vlan":597},{"vlan":598},{"vlan":599},{"vlan":600},{"vlan":601},{"vlan":602},{"vlan":603},{"vlan":604},{"vlan":605},{"vlan":606},{"vlan":607},{"vlan":608},{"vlan":609},{"vlan":610},{"vlan":611},{"vlan":612},{"vlan":613},{"vlan":614},{"vlan":615},{"vlan":616},{"vlan":617},{"vlan":618},{"vlan":619},{"vlan":620},{"vlan":621},{"vlan":622},{"vlan":623},{"vlan":624},{"vlan":625},{"vlan":626},{"vlan":627},{"vlan":628},{"vlan":629},{"vlan":630},{"vlan":631},{"vlan":632},{"vlan":633},{"vlan":634},{"vlan":635},{"vlan":636},{"vlan":637},{"vlan":638},{"vlan":639},{"vlan":640},{"vlan":641},{"vlan":642},{"vlan":643},{"vlan":644},{"vlan":645},{"vlan":646},{"vlan":647},{"vlan":648},{"vlan":649},{"vlan":650},{"vlan":651},{"vlan":652},{"vlan":653},{"vlan":654},{"vlan":655},{"vlan":656},{"vlan":657},{"vlan":658},{"vlan":659},{"vlan":660},{"vlan":661},{"vlan":662},{"vlan":663},{"vlan":664},{"vlan":665},{"vlan":666},{"vlan":667},{"vlan":668},{"vlan":669},{"vlan":670},{"vlan":671},{"vlan":672},{"vlan":673},{"vlan":674},{"vlan":675},{"vlan":676},{"vlan":677},{"vlan":678},{"vlan":679},{"vlan":680},{"vlan":681},{"vlan":682},{"vlan":683},{"vlan":684},{"vlan":685},{"vlan":686},{"vlan":687},{"vlan":688},{"vlan":689},{"vlan":690},{"vlan":691},{"vlan":692},{"vlan":693},{"vlan":694},{"vlan":695},{"vlan":696},{"vlan":697},{"vlan":698},{"vlan":699},{"vlan":700},{"vlan":701},{"vlan":702},{"vlan":703},{"vlan":704},{"vlan":705},{"vlan":706},{"vlan":707},{"vlan":708},{"vlan":709},{"vlan":710},{"vlan":711},{"vlan":712},{"vlan":713},{"vlan":714},{"vlan":715},{"vlan":716},{"vlan":717},{"vlan":718},{"vlan":719},{"vlan":720},{"vlan":721},{"vlan":722},{"vlan":723},{"vlan":724},{"vlan":725},{"vlan":726},{"vlan":727},{"vlan":728},{"vlan":729},{"vlan":730},{"vlan":731},{"vlan":732},{"vlan":733},{"vlan":734},{"vlan":735},{"vlan":736},{"vlan":737},{"vlan":738},{"vlan":739},{"vlan":740},{"vlan":741},{"vlan":742},{"vlan":743},{"vlan":744},{"vlan":745},{"vlan":746},{"vlan":747},{"vlan":748},{"vlan":749},{"vlan":750},{"vlan":751},{"vlan":752},{"vlan":753},{"vlan":754},{"vlan":755},{"vlan":756},{"vlan":757},{"vlan":758},{"vlan":759},{"vlan":760},{"vlan":761},{"vlan":762},{"vlan":763},{"vlan":764},{"vlan":765},{"vlan":766},{"vlan":767},{"vlan":768},{"vlan":769},{"vlan":770},{"vlan":771},{"vlan":772},{"vlan":773},{"vlan":774},{"vlan":775},{"vlan":776},{"vlan":777},{"vlan":778},{"vlan":779},{"vlan":780},{"vlan":781},{"vlan":782},{"vlan":783},{"vlan":784},{"vlan":785},{"vlan":786},{"vlan":787},{"vlan":788},{"vlan":789},{"vlan":790},{"vlan":791},{"vlan":792},{"vlan":793},{"vlan":794},{"vlan":795},{"vlan":796},{"vlan":797},{"vlan":798},{"vlan":799},{"vlan":800},{"vlan":801},{"vlan":802},{"vlan":803},{"vlan":804},{"vlan":805},{"vlan":806},{"vlan":807},{"vlan":808},{"vlan":809},{"vlan":810},{"vlan":811},{"vlan":812},{"vlan":813},{"vlan":814},{"vlan":815},{"vlan":816},{"vlan":817},{"vlan":818},{"vlan":819},{"vlan":820},{"vlan":821},{"vlan":822},{"vlan":823},{"vlan":824},{"vlan":825},{"vlan":826},{"vlan":827},{"vlan":828},{"vlan":829},{"vlan":830},{"vlan":831},{"vlan":832},{"vlan":833},{"vlan":834},{"vlan":835},{"vlan":836},{"vlan":837},{"vlan":838},{"vlan":839},{"vlan":840},{"vlan":841},{"vlan":842},{"vlan":843},{"vlan":844},{"vlan":845},{"vlan":846},{"vlan":847},{"vlan":848},{"vlan":849},{"vlan":850},{"vlan":851},{"vlan":852},{"vlan":853},{"vlan":854},{"vlan":855},{"vlan":856},{"vlan":857},{"vlan":858},{"vlan":859},{"vlan":860},{"vlan":861},{"vlan":862},{"vlan":863},{"vlan":864},{"vlan":865},{"vlan":866},{"vlan":867},{"vlan":868},{"vlan":869},{"vlan":870},{"vlan":871},{"vlan":872},{"vlan":873},{"vlan":874},{"vlan":875},{"vlan":876},{"vlan":877},{"vlan":878},{"vlan":879},{"vlan":880},{"vlan":881},{"vlan":882},{"vlan":883},{"vlan":884},{"vlan":885},{"vlan":886},{"vlan":887},{"vlan":888},{"vlan":889},{"vlan":890},{"vlan":891},{"vlan":892},{"vlan":893},{"vlan":894},{"vlan":895},{"vlan":896},{"vlan":897},{"vlan":898},{"vlan":899},{"vlan":900},{"vlan":901},{"vlan":902},{"vlan":903},{"vlan":904},{"vlan":905},{"vlan":906},{"vlan":907},{"vlan":908},{"vlan":909},{"vlan":910},{"vlan":911},{"vlan":912},{"vlan":913},{"vlan":914},{"vlan":915},{"vlan":916},{"vlan":917},{"vlan":918},{"vlan":919},{"vlan":920},{"vlan":921},{"vlan":922},{"vlan":923},{"vlan":924},{"vlan":925},{"vlan":926},{"vlan":927},{"vlan":928},{"vlan":929},{"vlan":930},{"vlan":931},{"vlan":932},{"vlan":933},{"vlan":934},{"vlan":935},{"vlan":936},{"vlan":937},{"vlan":938},{"vlan":939},{"vlan":940},{"vlan":941},{"vlan":942},{"vlan":943},{"vlan":944},{"vlan":945},{"vlan":946},{"vlan":947},{"vlan":948},{"vlan":949},{"vlan":950},{"vlan":951},{"vlan":952},{"vlan":953},{"vlan":954},{"vlan":955},{"vlan":956},{"vlan":957},{"vlan":958},{"vlan":959},{"vlan":960},{"vlan":961},{"vlan":962},{"vlan":963},{"vlan":964},{"vlan":965},{"vlan":966},{"vlan":967},{"vlan":968},{"vlan":969},{"vlan":970},{"vlan":971},{"vlan":972},{"vlan":973},{"vlan":974},{"vlan":975},{"vlan":976},{"vlan":977},{"vlan":978},{"vlan":979},{"vlan":980},{"vlan":981},{"vlan":982},{"vlan":983},{"vlan":984},{"vlan":985},{"vlan":986},{"vlan":987},{"vlan":988},{"vlan":989},{"vlan":990},{"vlan":991},{"vlan":992},{"vlan":993},{"vlan":994},{"vlan":995},{"vlan":996},{"vlan":997},{"vlan":998},{"vlan":999},{"vlan":1000},{"vlan":1001},{"vlan":1002},{"vlan":1003},{"vlan":1004},{"vlan":1005},{"vlan":1006},{"vlan":1007},{"vlan":1008},{"vlan":1009},{"vlan":1010},{"vlan":1011},{"vlan":1012},{"vlan":1013},{"vlan":1014},{"vlan":1015},{"vlan":1016},{"vlan":1017},{"vlan":1018},{"vlan":1019},{"vlan":1020},{"vlan":1021},{"vlan":1022},{"vlan":1023},{"vlan":1024},{"vlan":1025},{"vlan":1026},{"vlan":1027},{"vlan":1028},{"vlan":1029},{"vlan":1030},{"vlan":1031},{"vlan":1032},{"vlan":1033},{"vlan":1034},{"vlan":1035},{"vlan":1036},{"vlan":1037},{"vlan":1038},{"vlan":1039},{"vlan":1040},{"vlan":1041},{"vlan":1042},{"vlan":1043},{"vlan":1044},{"vlan":1045},{"vlan":1046},{"vlan":1047},{"vlan":1048},{"vlan":1049},{"vlan":1050},{"vlan":1051},{"vlan":1052},{"vlan":1053},{"vlan":1054},{"vlan":1055},{"vlan":1056},{"vlan":1057},{"vlan":1058},{"vlan":1059},{"vlan":1060},{"vlan":1061},{"vlan":1062},{"vlan":1063},{"vlan":1064},{"vlan":1065},{"vlan":1066},{"vlan":1067},{"vlan":1068},{"vlan":1069},{"vlan":1070},{"vlan":1071},{"vlan":1072},{"vlan":1073},{"vlan":1074},{"vlan":1075},{"vlan":1076},{"vlan":1077},{"vlan":1078},{"vlan":1079},{"vlan":1080},{"vlan":1081},{"vlan":1082},{"vlan":1083},{"vlan":1084},{"vlan":1085},{"vlan":1086},{"vlan":1087},{"vlan":1088},{"vlan":1089},{"vlan":1090},{"vlan":1091},{"vlan":1092},{"vlan":1093},{"vlan":1094},{"vlan":1095},{"vlan":1096},{"vlan":1097},{"vlan":1098},{"vlan":1099},{"vlan":1100},{"vlan":1101},{"vlan":1102},{"vlan":1103},{"vlan":1104},{"vlan":1105},{"vlan":1106},{"vlan":1107},{"vlan":1108},{"vlan":1109},{"vlan":1110},{"vlan":1111},{"vlan":1112},{"vlan":1113},{"vlan":1114},{"vlan":1115},{"vlan":1116},{"vlan":1117},{"vlan":1118},{"vlan":1119},{"vlan":1120},{"vlan":1121},{"vlan":1122},{"vlan":1123},{"vlan":1124},{"vlan":1125},{"vlan":1126},{"vlan":1127},{"vlan":1128},{"vlan":1129},{"vlan":1130},{"vlan":1131},{"vlan":1132},{"vlan":1133},{"vlan":1134},{"vlan":1135},{"vlan":1136},{"vlan":1137},{"vlan":1138},{"vlan":1139},{"vlan":1140},{"vlan":1141},{"vlan":1142},{"vlan":1143},{"vlan":1144},{"vlan":1145},{"vlan":1146},{"vlan":1147},{"vlan":1148},{"vlan":1149},{"vlan":1150},{"vlan":1151},{"vlan":1152},{"vlan":1153},{"vlan":1154},{"vlan":1155},{"vlan":1156},{"vlan":1157},{"vlan":1158},{"vlan":1159},{"vlan":1160},{"vlan":1161},{"vlan":1162},{"vlan":1163},{"vlan":1164},{"vlan":1165},{"vlan":1166},{"vlan":1167},{"vlan":1168},{"vlan":1169},{"vlan":1170},{"vlan":1171},{"vlan":1172},{"vlan":1173},{"vlan":1174},{"vlan":1175},{"vlan":1176},{"vlan":1177},{"vlan":1178},{"vlan":1179},{"vlan":1180},{"vlan":1181},{"vlan":1182},{"vlan":1183},{"vlan":1184},{"vlan":1185},{"vlan":1186},{"vlan":1187},{"vlan":1188},{"vlan":1189},{"vlan":1190},{"vlan":1191},{"vlan":1192},{"vlan":1193},{"vlan":1194},{"vlan":1195},{"vlan":1196},{"vlan":1197},{"vlan":1198},{"vlan":1199},{"vlan":1200},{"vlan":1201},{"vlan":1202},{"vlan":1203},{"vlan":1204},{"vlan":1205},{"vlan":1206},{"vlan":1207},{"vlan":1208},{"vlan":1209},{"vlan":1210},{"vlan":1211},{"vlan":1212},{"vlan":1213},{"vlan":1214},{"vlan":1215},{"vlan":1216},{"vlan":1217},{"vlan":1218},{"vlan":1219},{"vlan":1220},{"vlan":1221},{"vlan":1222},{"vlan":1223},{"vlan":1224},{"vlan":1225},{"vlan":1226},{"vlan":1227},{"vlan":1228},{"vlan":1229},{"vlan":1230},{"vlan":1231},{"vlan":1232},{"vlan":1233},{"vlan":1234},{"vlan":1235},{"vlan":1236},{"vlan":1237},{"vlan":1238},{"vlan":1239},{"vlan":1240},{"vlan":1241},{"vlan":1242},{"vlan":1243},{"vlan":1244},{"vlan":1245},{"vlan":1246},{"vlan":1247},{"vlan":1248},{"vlan":1249},{"vlan":1250},{"vlan":1251},{"vlan":1252},{"vlan":1253},{"vlan":1254},{"vlan":1255},{"vlan":1256},{"vlan":1257},{"vlan":1258},{"vlan":1259},{"vlan":1260},{"vlan":1261},{"vlan":1262},{"vlan":1263},{"vlan":1264},{"vlan":1265},{"vlan":1266},{"vlan":1267},{"vlan":1268},{"vlan":1269},{"vlan":1270},{"vlan":1271},{"vlan":1272},{"vlan":1273},{"vlan":1274},{"vlan":1275},{"vlan":1276},{"vlan":1277},{"vlan":1278},{"vlan":1279},{"vlan":1280},{"vlan":1281},{"vlan":1282},{"vlan":1283},{"vlan":1284},{"vlan":1285},{"vlan":1286},{"vlan":1287},{"vlan":1288},{"vlan":1289},{"vlan":1290},{"vlan":1291},{"vlan":1292},{"vlan":1293},{"vlan":1294},{"vlan":1295},{"vlan":1296},{"vlan":1297},{"vlan":1298},{"vlan":1299},{"vlan":1300},{"vlan":1301},{"vlan":1302},{"vlan":1303},{"vlan":1304},{"vlan":1305},{"vlan":1306},{"vlan":1307},{"vlan":1308},{"vlan":1309},{"vlan":1310},{"vlan":1311},{"vlan":1312},{"vlan":1313},{"vlan":1314},{"vlan":1315},{"vlan":1316},{"vlan":1317},{"vlan":1318},{"vlan":1319},{"vlan":1320},{"vlan":1321},{"vlan":1322},{"vlan":1323},{"vlan":1324},{"vlan":1325},{"vlan":1326},{"vlan":1327},{"vlan":1328},{"vlan":1329},{"vlan":1330},{"vlan":1331},{"vlan":1332},{"vlan":1333},{"vlan":1334},{"vlan":1335},{"vlan":1336},{"vlan":1337},{"vlan":1338},{"vlan":1339},{"vlan":1340},{"vlan":1341},{"vlan":1342},{"vlan":1343},{"vlan":1344},{"vlan":1345},{"vlan":1346},{"vlan":1347},{"vlan":1348},{"vlan":1349},{"vlan":1350},{"vlan":1351},{"vlan":1352},{"vlan":1353},{"vlan":1354},{"vlan":1355},{"vlan":1356},{"vlan":1357},{"vlan":1358},{"vlan":1359},{"vlan":1360},{"vlan":1361},{"vlan":1362},{"vlan":1363},{"vlan":1364},{"vlan":1365},{"vlan":1366},{"vlan":1367},{"vlan":1368},{"vlan":1369},{"vlan":1370},{"vlan":1371},{"vlan":1372},{"vlan":1373},{"vlan":1374},{"vlan":1375},{"vlan":1376},{"vlan":1377},{"vlan":1378},{"vlan":1379},{"vlan":1380},{"vlan":1381},{"vlan":1382},{"vlan":1383},{"vlan":1384},{"vlan":1385},{"vlan":1386},{"vlan":1387},{"vlan":1388},{"vlan":1389},{"vlan":1390},{"vlan":1391},{"vlan":1392},{"vlan":1393},{"vlan":1394},{"vlan":1395},{"vlan":1396},{"vlan":1397},{"vlan":1398},{"vlan":1399},{"vlan":1400},{"vlan":1401},{"vlan":1402},{"vlan":1403},{"vlan":1404},{"vlan":1405},{"vlan":1406},{"vlan":1407},{"vlan":1408},{"vlan":1409},{"vlan":1410},{"vlan":1411},{"vlan":1412},{"vlan":1413},{"vlan":1414},{"vlan":1415},{"vlan":1416},{"vlan":1417},{"vlan":1418},{"vlan":1419},{"vlan":1420},{"vlan":1421},{"vlan":1422},{"vlan":1423},{"vlan":1424},{"vlan":1425},{"vlan":1426},{"vlan":1427},{"vlan":1428},{"vlan":1429},{"vlan":1430},{"vlan":1431},{"vlan":1432},{"vlan":1433},{"vlan":1434},{"vlan":1435},{"vlan":1436},{"vlan":1437},{"vlan":1438},{"vlan":1439},{"vlan":1440},{"vlan":1441},{"vlan":1442},{"vlan":1443},{"vlan":1444},{"vlan":1445},{"vlan":1446},{"vlan":1447},{"vlan":1448},{"vlan":1449},{"vlan":1450},{"vlan":1451},{"vlan":1452},{"vlan":1453},{"vlan":1454},{"vlan":1455},{"vlan":1456},{"vlan":1457},{"vlan":1458},{"vlan":1459},{"vlan":1460},{"vlan":1461},{"vlan":1462},{"vlan":1463},{"vlan":1464},{"vlan":1465},{"vlan":1466},{"vlan":1467},{"vlan":1468},{"vlan":1469},{"vlan":1470},{"vlan":1471},{"vlan":1472},{"vlan":1473},{"vlan":1474},{"vlan":1475},{"vlan":1476},{"vlan":1477},{"vlan":1478},{"vlan":1479},{"vlan":1480},{"vlan":1481},{"vlan":1482},{"vlan":1483},{"vlan":1484},{"vlan":1485},{"vlan":1486},{"vlan":1487},{"vlan":1488},{"vlan":1489},{"vlan":1490},{"vlan":1491},{"vlan":1492},{"vlan":1493},{"vlan":1494},{"vlan":1495},{"vlan":1496},{"vlan":1497},{"vlan":1498},{"vlan":1499},{"vlan":1500},{"vlan":1501},{"vlan":1502},{"vlan":1503},{"vlan":1504},{"vlan":1505},{"vlan":1506},{"vlan":1507},{"vlan":1508},{"vlan":1509},{"vlan":1510},{"vlan":1511},{"vlan":1512},{"vlan":1513},{"vlan":1514},{"vlan":1515},{"vlan":1516},{"vlan":1517},{"vlan":1518},{"vlan":1519},{"vlan":1520},{"vlan":1521},{"vlan":1522},{"vlan":1523},{"vlan":1524},{"vlan":1525},{"vlan":1526},{"vlan":1527},{"vlan":1528},{"vlan":1529},{"vlan":1530},{"vlan":1531},{"vlan":1532},{"vlan":1533},{"vlan":1534},{"vlan":1535},{"vlan":1536},{"vlan":1537},{"vlan":1538},{"vlan":1539},{"vlan":1540},{"vlan":1541},{"vlan":1542},{"vlan":1543},{"vlan":1544},{"vlan":1545},{"vlan":1546},{"vlan":1547},{"vlan":1548},{"vlan":1549},{"vlan":1550},{"vlan":1551},{"vlan":1552},{"vlan":1553},{"vlan":1554},{"vlan":1555},{"vlan":1556},{"vlan":1557},{"vlan":1558},{"vlan":1559},{"vlan":1560},{"vlan":1561},{"vlan":1562},{"vlan":1563},{"vlan":1564},{"vlan":1565},{"vlan":1566},{"vlan":1567},{"vlan":1568},{"vlan":1569},{"vlan":1570},{"vlan":1571},{"vlan":1572},{"vlan":1573},{"vlan":1574},{"vlan":1575},{"vlan":1576},{"vlan":1577},{"vlan":1578},{"vlan":1579},{"vlan":1580},{"vlan":1581},{"vlan":1582},{"vlan":1583},{"vlan":1584},{"vlan":1585},{"vlan":1586},{"vlan":1587},{"vlan":1588},{"vlan":1589},{"vlan":1590},{"vlan":1591},{"vlan":1592},{"vlan":1593},{"vlan":1594},{"vlan":1595},{"vlan":1596},{"vlan":1597},{"vlan":1598},{"vlan":1599},{"vlan":1600},{"vlan":1601},{"vlan":1602},{"vlan":1603},{"vlan":1604},{"vlan":1605},{"vlan":1606},{"vlan":1607},{"vlan":1608},{"vlan":1609},{"vlan":1610},{"vlan":1611},{"vlan":1612},{"vlan":1613},{"vlan":1614},{"vlan":1615},{"vlan":1616},{"vlan":1617},{"vlan":1618},{"vlan":1619},{"vlan":1620},{"vlan":1621},{"vlan":1622},{"vlan":1623},{"vlan":1624},{"vlan":1625},{"vlan":1626},{"vlan":1627},{"vlan":1628},{"vlan":1629},{"vlan":1630},{"vlan":1631},{"vlan":1632},{"vlan":1633},{"vlan":1634},{"vlan":1635},{"vlan":1636},{"vlan":1637},{"vlan":1638},{"vlan":1639},{"vlan":1640},{"vlan":1641},{"vlan":1642},{"vlan":1643},{"vlan":1644},{"vlan":1645},{"vlan":1646},{"vlan":1647},{"vlan":1648},{"vlan":1649},{"vlan":1650},{"vlan":1651},{"vlan":1652},{"vlan":1653},{"vlan":1654},{"vlan":1655},{"vlan":1656},{"vlan":1657},{"vlan":1658},{"vlan":1659},{"vlan":1660},{"vlan":1661},{"vlan":1662},{"vlan":1663},{"vlan":1664},{"vlan":1665},{"vlan":1666},{"vlan":1667},{"vlan":1668},{"vlan":1669},{"vlan":1670},{"vlan":1671},{"vlan":1672},{"vlan":1673},{"vlan":1674},{"vlan":1675},{"vlan":1676},{"vlan":1677},{"vlan":1678},{"vlan":1679},{"vlan":1680},{"vlan":1681},{"vlan":1682},{"vlan":1683},{"vlan":1684},{"vlan":1685},{"vlan":1686},{"vlan":1687},{"vlan":1688},{"vlan":1689},{"vlan":1690},{"vlan":1691},{"vlan":1692},{"vlan":1693},{"vlan":1694},{"vlan":1695},{"vlan":1696},{"vlan":1697},{"vlan":1698},{"vlan":1699},{"vlan":1700},{"vlan":1701},{"vlan":1702},{"vlan":1703},{"vlan":1704},{"vlan":1705},{"vlan":1706},{"vlan":1707},{"vlan":1708},{"vlan":1709},{"vlan":1710},{"vlan":1711},{"vlan":1712},{"vlan":1713},{"vlan":1714},{"vlan":1715},{"vlan":1716},{"vlan":1717},{"vlan":1718},{"vlan":1719},{"vlan":1720},{"vlan":1721},{"vlan":1722},{"vlan":1723},{"vlan":1724},{"vlan":1725},{"vlan":1726},{"vlan":1727},{"vlan":1728},{"vlan":1729},{"vlan":1730},{"vlan":1731},{"vlan":1732},{"vlan":1733},{"vlan":1734},{"vlan":1735},{"vlan":1736},{"vlan":1737},{"vlan":1738},{"vlan":1739},{"vlan":1740},{"vlan":1741},{"vlan":1742},{"vlan":1743},{"vlan":1744},{"vlan":1745},{"vlan":1746},{"vlan":1747},{"vlan":1748},{"vlan":1749},{"vlan":1750},{"vlan":1751},{"vlan":1752},{"vlan":1753},{"vlan":1754},{"vlan":1755},{"vlan":1756},{"vlan":1757},{"vlan":1758},{"vlan":1759},{"vlan":1760},{"vlan":1761},{"vlan":1762},{"vlan":1763},{"vlan":1764},{"vlan":1765},{"vlan":1766},{"vlan":1767},{"vlan":1768},{"vlan":1769},{"vlan":1770},{"vlan":1771},{"vlan":1772},{"vlan":1773},{"vlan":1774},{"vlan":1775},{"vlan":1776},{"vlan":1777},{"vlan":1778},{"vlan":1779},{"vlan":1780},{"vlan":1781},{"vlan":1782},{"vlan":1783},{"vlan":1784},{"vlan":1785},{"vlan":1786},{"vlan":1787},{"vlan":1788},{"vlan":1789},{"vlan":1790},{"vlan":1791},{"vlan":1792},{"vlan":1793},{"vlan":1794},{"vlan":1795},{"vlan":1796},{"vlan":1797},{"vlan":1798},{"vlan":1799},{"vlan":1800},{"vlan":1801},{"vlan":1802},{"vlan":1803},{"vlan":1804},{"vlan":1805},{"vlan":1806},{"vlan":1807},{"vlan":1808},{"vlan":1809},{"vlan":1810},{"vlan":1811},{"vlan":1812},{"vlan":1813},{"vlan":1814},{"vlan":1815},{"vlan":1816},{"vlan":1817},{"vlan":1818},{"vlan":1819},{"vlan":1820},{"vlan":1821},{"vlan":1822},{"vlan":1823},{"vlan":1824},{"vlan":1825},{"vlan":1826},{"vlan":1827},{"vlan":1828},{"vlan":1829},{"vlan":1830},{"vlan":1831},{"vlan":1832},{"vlan":1833},{"vlan":1834},{"vlan":1835},{"vlan":1836},{"vlan":1837},{"vlan":1838},{"vlan":1839},{"vlan":1840},{"vlan":1841},{"vlan":1842},{"vlan":1843},{"vlan":1844},{"vlan":1845},{"vlan":1846},{"vlan":1847},{"vlan":1848},{"vlan":1849},{"vlan":1850},{"vlan":1851},{"vlan":1852},{"vlan":1853},{"vlan":1854},{"vlan":1855},{"vlan":1856},{"vlan":1857},{"vlan":1858},{"vlan":1859},{"vlan":1860},{"vlan":1861},{"vlan":1862},{"vlan":1863},{"vlan":1864},{"vlan":1865},{"vlan":1866},{"vlan":1867},{"vlan":1868},{"vlan":1869},{"vlan":1870},{"vlan":1871},{"vlan":1872},{"vlan":1873},{"vlan":1874},{"vlan":1875},{"vlan":1876},{"vlan":1877},{"vlan":1878},{"vlan":1879},{"vlan":1880},{"vlan":1881},{"vlan":1882},{"vlan":1883},{"vlan":1884},{"vlan":1885},{"vlan":1886},{"vlan":1887},{"vlan":1888},{"vlan":1889},{"vlan":1890},{"vlan":1891},{"vlan":1892},{"vlan":1893},{"vlan":1894},{"vlan":1895},{"vlan":1896},{"vlan":1897},{"vlan":1898},{"vlan":1899},{"vlan":1900},{"vlan":1901},{"vlan":1902},{"vlan":1903},{"vlan":1904},{"vlan":1905},{"vlan":1906},{"vlan":1907},{"vlan":1908},{"vlan":1909},{"vlan":1910},{"vlan":1911},{"vlan":1912},{"vlan":1913},{"vlan":1914},{"vlan":1915},{"vlan":1916},{"vlan":1917},{"vlan":1918},{"vlan":1919},{"vlan":1920},{"vlan":1921},{"vlan":1922},{"vlan":1923},{"vlan":1924},{"vlan":1925},{"vlan":1926},{"vlan":1927},{"vlan":1928},{"vlan":1929},{"vlan":1930},{"vlan":1931},{"vlan":1932},{"vlan":1933},{"vlan":1934},{"vlan":1935},{"vlan":1936},{"vlan":1937},{"vlan":1938},{"vlan":1939},{"vlan":1940},{"vlan":1941},{"vlan":1942},{"vlan":1943},{"vlan":1944},{"vlan":1945},{"vlan":1946},{"vlan":1947},{"vlan":1948},{"vlan":1949},{"vlan":1950},{"vlan":1951},{"vlan":1952},{"vlan":1953},{"vlan":1954},{"vlan":1955},{"vlan":1956},{"vlan":1957},{"vlan":1958},{"vlan":1959},{"vlan":1960},{"vlan":1961},{"vlan":1962},{"vlan":1963},{"vlan":1964},{"vlan":1965},{"vlan":1966},{"vlan":1967},{"vlan":1968},{"vlan":1969},{"vlan":1970},{"vlan":1971},{"vlan":1972},{"vlan":1973},{"vlan":1974},{"vlan":1975},{"vlan":1976},{"vlan":1977},{"vlan":1978},{"vlan":1979},{"vlan":1980},{"vlan":1981},{"vlan":1982},{"vlan":1983},{"vlan":1984},{"vlan":1985},{"vlan":1986},{"vlan":1987},{"vlan":1988},{"vlan":1989},{"vlan":1990},{"vlan":1991},{"vlan":1992},{"vlan":1993},{"vlan":1994},{"vlan":1995},{"vlan":1996},{"vlan":1997},{"vlan":1998},{"vlan":1999},{"vlan":2000},{"vlan":2001},{"vlan":2002},{"vlan":2003},{"vlan":2004},{"vlan":2005},{"vlan":2006},{"vlan":2007},{"vlan":2008},{"vlan":2009},{"vlan":2010},{"vlan":2011},{"vlan":2012},{"vlan":2013},{"vlan":2014},{"vlan":2015},{"vlan":2016},{"vlan":2017},{"vlan":2018},{"vlan":2019},{"vlan":2020},{"vlan":2021},{"vlan":2022},{"vlan":2023},{"vlan":2024},{"vlan":2025},{"vlan":2026},{"vlan":2027},{"vlan":2028},{"vlan":2029},{"vlan":2030},{"vlan":2031},{"vlan":2032},{"vlan":2033},{"vlan":2034},{"vlan":2035},{"vlan":2036},{"vlan":2037},{"vlan":2038},{"vlan":2039},{"vlan":2040},{"vlan":2041},{"vlan":2042},{"vlan":2043},{"vlan":2044},{"vlan":2045},{"vlan":2046},{"vlan":2047},{"vlan":2048},{"vlan":2049},{"vlan":2050},{"vlan":2051},{"vlan":2052},{"vlan":2053},{"vlan":2054},{"vlan":2055},{"vlan":2056},{"vlan":2057},{"vlan":2058},{"vlan":2059},{"vlan":2060},{"vlan":2061},{"vlan":2062},{"vlan":2063},{"vlan":2064},{"vlan":2065},{"vlan":2066},{"vlan":2067},{"vlan":2068},{"vlan":2069},{"vlan":2070},{"vlan":2071},{"vlan":2072},{"vlan":2073},{"vlan":2074},{"vlan":2075},{"vlan":2076},{"vlan":2077},{"vlan":2078},{"vlan":2079},{"vlan":2080},{"vlan":2081},{"vlan":2082},{"vlan":2083},{"vlan":2084},{"vlan":2085},{"vlan":2086},{"vlan":2087},{"vlan":2088},{"vlan":2089},{"vlan":2090},{"vlan":2091},{"vlan":2092},{"vlan":2093},{"vlan":2094},{"vlan":2095},{"vlan":2096},{"vlan":2097},{"vlan":2098},{"vlan":2099},{"vlan":2100},{"vlan":2101},{"vlan":2102},{"vlan":2103},{"vlan":2104},{"vlan":2105},{"vlan":2106},{"vlan":2107},{"vlan":2108},{"vlan":2109},{"vlan":2110},{"vlan":2111},{"vlan":2112},{"vlan":2113},{"vlan":2114},{"vlan":2115},{"vlan":2116},{"vlan":2117},{"vlan":2118},{"vlan":2119},{"vlan":2120},{"vlan":2121},{"vlan":2122},{"vlan":2123},{"vlan":2124},{"vlan":2125},{"vlan":2126},{"vlan":2127},{"vlan":2128},{"vlan":2129},{"vlan":2130},{"vlan":2131},{"vlan":2132},{"vlan":2133},{"vlan":2134},{"vlan":2135},{"vlan":2136},{"vlan":2137},{"vlan":2138},{"vlan":2139},{"vlan":2140},{"vlan":2141},{"vlan":2142},{"vlan":2143},{"vlan":2144},{"vlan":2145},{"vlan":2146},{"vlan":2147},{"vlan":2148},{"vlan":2149},{"vlan":2150},{"vlan":2151},{"vlan":2152},{"vlan":2153},{"vlan":2154},{"vlan":2155},{"vlan":2156},{"vlan":2157},{"vlan":2158},{"vlan":2159},{"vlan":2160},{"vlan":2161},{"vlan":2162},{"vlan":2163},{"vlan":2164},{"vlan":2165},{"vlan":2166},{"vlan":2167},{"vlan":2168},{"vlan":2169},{"vlan":2170},{"vlan":2171},{"vlan":2172},{"vlan":2173},{"vlan":2174},{"vlan":2175},{"vlan":2176},{"vlan":2177},{"vlan":2178},{"vlan":2179},{"vlan":2180},{"vlan":2181},{"vlan":2182},{"vlan":2183},{"vlan":2184},{"vlan":2185},{"vlan":2186},{"vlan":2187},{"vlan":2188},{"vlan":2189},{"vlan":2190},{"vlan":2191},{"vlan":2192},{"vlan":2193},{"vlan":2194},{"vlan":2195},{"vlan":2196},{"vlan":2197},{"vlan":2198},{"vlan":2199},{"vlan":2200},{"vlan":2201},{"vlan":2202},{"vlan":2203},{"vlan":2204},{"vlan":2205},{"vlan":2206},{"vlan":2207},{"vlan":2208},{"vlan":2209},{"vlan":2210},{"vlan":2211},{"vlan":2212},{"vlan":2213},{"vlan":2214},{"vlan":2215},{"vlan":2216},{"vlan":2217},{"vlan":2218},{"vlan":2219},{"vlan":2220},{"vlan":2221},{"vlan":2222},{"vlan":2223},{"vlan":2224},{"vlan":2225},{"vlan":2226},{"vlan":2227},{"vlan":2228},{"vlan":2229},{"vlan":2230},{"vlan":2231},{"vlan":2232},{"vlan":2233},{"vlan":2234},{"vlan":2235},{"vlan":2236},{"vlan":2237},{"vlan":2238},{"vlan":2239},{"vlan":2240},{"vlan":2241},{"vlan":2242},{"vlan":2243},{"vlan":2244},{"vlan":2245},{"vlan":2246},{"vlan":2247},{"vlan":2248},{"vlan":2249},{"vlan":2250},{"vlan":2251},{"vlan":2252},{"vlan":2253},{"vlan":2254},{"vlan":2255},{"vlan":2256},{"vlan":2257},{"vlan":2258},{"vlan":2259},{"vlan":2260},{"vlan":2261},{"vlan":2262},{"vlan":2263},{"vlan":2264},{"vlan":2265},{"vlan":2266},{"vlan":2267},{"vlan":2268},{"vlan":2269},{"vlan":2270},{"vlan":2271},{"vlan":2272},{"vlan":2273},{"vlan":2274},{"vlan":2275},{"vlan":2276},{"vlan":2277},{"vlan":2278},{"vlan":2279},{"vlan":2280},{"vlan":2281},{"vlan":2282},{"vlan":2283},{"vlan":2284},{"vlan":2285},{"vlan":2286},{"vlan":2287},{"vlan":2288},{"vlan":2289},{"vlan":2290},{"vlan":2291},{"vlan":2292},{"vlan":2293},{"vlan":2294},{"vlan":2295},{"vlan":2296},{"vlan":2297},{"vlan":2298},{"vlan":2299},{"vlan":2300},{"vlan":2301},{"vlan":2302},{"vlan":2303},{"vlan":2304},{"vlan":2305},{"vlan":2306},{"vlan":2307},{"vlan":2308},{"vlan":2309},{"vlan":2310},{"vlan":2311},{"vlan":2312},{"vlan":2313},{"vlan":2314},{"vlan":2315},{"vlan":2316},{"vlan":2317},{"vlan":2318},{"vlan":2319},{"vlan":2320},{"vlan":2321},{"vlan":2322},{"vlan":2323},{"vlan":2324},{"vlan":2325},{"vlan":2326},{"vlan":2327},{"vlan":2328},{"vlan":2329},{"vlan":2330},{"vlan":2331},{"vlan":2332},{"vlan":2333},{"vlan":2334},{"vlan":2335},{"vlan":2336},{"vlan":2337},{"vlan":2338},{"vlan":2339},{"vlan":2340},{"vlan":2341},{"vlan":2342},{"vlan":2343},{"vlan":2344},{"vlan":2345},{"vlan":2346},{"vlan":2347},{"vlan":2348},{"vlan":2349},{"vlan":2350},{"vlan":2351},{"vlan":2352},{"vlan":2353},{"vlan":2354},{"vlan":2355},{"vlan":2356},{"vlan":2357},{"vlan":2358},{"vlan":2359},{"vlan":2360},{"vlan":2361},{"vlan":2362},{"vlan":2363},{"vlan":2364},{"vlan":2365},{"vlan":2366},{"vlan":2367},{"vlan":2368},{"vlan":2369},{"vlan":2370},{"vlan":2371},{"vlan":2372},{"vlan":2373},{"vlan":2374},{"vlan":2375},{"vlan":2376},{"vlan":2377},{"vlan":2378},{"vlan":2379},{"vlan":2380},{"vlan":2381},{"vlan":2382},{"vlan":2383},{"vlan":2384},{"vlan":2385},{"vlan":2386},{"vlan":2387},{"vlan":2388},{"vlan":2389},{"vlan":2390},{"vlan":2391},{"vlan":2392},{"vlan":2393},{"vlan":2394},{"vlan":2395},{"vlan":2396},{"vlan":2397},{"vlan":2398},{"vlan":2399},{"vlan":2400},{"vlan":2401},{"vlan":2402},{"vlan":2403},{"vlan":2404},{"vlan":2405},{"vlan":2406},{"vlan":2407},{"vlan":2408},{"vlan":2409},{"vlan":2410},{"vlan":2411},{"vlan":2412},{"vlan":2413},{"vlan":2414},{"vlan":2415},{"vlan":2416},{"vlan":2417},{"vlan":2418},{"vlan":2419},{"vlan":2420},{"vlan":2421},{"vlan":2422},{"vlan":2423},{"vlan":2424},{"vlan":2425},{"vlan":2426},{"vlan":2427},{"vlan":2428},{"vlan":2429},{"vlan":2430},{"vlan":2431},{"vlan":2432},{"vlan":2433},{"vlan":2434},{"vlan":2435},{"vlan":2436},{"vlan":2437},{"vlan":2438},{"vlan":2439},{"vlan":2440},{"vlan":2441},{"vlan":2442},{"vlan":2443},{"vlan":2444},{"vlan":2445},{"vlan":2446},{"vlan":2447},{"vlan":2448},{"vlan":2449},{"vlan":2450},{"vlan":2451},{"vlan":2452},{"vlan":2453},{"vlan":2454},{"vlan":2455},{"vlan":2456},{"vlan":2457},{"vlan":2458},{"vlan":2459},{"vlan":2460},{"vlan":2461},{"vlan":2462},{"vlan":2463},{"vlan":2464},{"vlan":2465},{"vlan":2466},{"vlan":2467},{"vlan":2468},{"vlan":2469},{"vlan":2470},{"vlan":2471},{"vlan":2472},{"vlan":2473},{"vlan":2474},{"vlan":2475},{"vlan":2476},{"vlan":2477},{"vlan":2478},{"vlan":2479},{"vlan":2480},{"vlan":2481},{"vlan":2482},{"vlan":2483},{"vlan":2484},{"vlan":2485},{"vlan":2486},{"vlan":2487},{"vlan":2488},{"vlan":2489},{"vlan":2490},{"vlan":2491},{"vlan":2492},{"vlan":2493},{"vlan":2494},{"vlan":2495},{"vlan":2496},{"vlan":2497},{"vlan":2498},{"vlan":2499},{"vlan":2500},{"vlan":2501},{"vlan":2502},{"vlan":2503},{"vlan":2504},{"vlan":2505},{"vlan":2506},{"vlan":2507},{"vlan":2508},{"vlan":2509},{"vlan":2510},{"vlan":2511},{"vlan":2512},{"vlan":2513},{"vlan":2514},{"vlan":2515},{"vlan":2516},{"vlan":2517},{"vlan":2518},{"vlan":2519},{"vlan":2520},{"vlan":2521},{"vlan":2522},{"vlan":2523},{"vlan":2524},{"vlan":2525},{"vlan":2526},{"vlan":2527},{"vlan":2528},{"vlan":2529},{"vlan":2530},{"vlan":2531},{"vlan":2532},{"vlan":2533},{"vlan":2534},{"vlan":2535},{"vlan":2536},{"vlan":2537},{"vlan":2538},{"vlan":2539},{"vlan":2540},{"vlan":2541},{"vlan":2542},{"vlan":2543},{"vlan":2544},{"vlan":2545},{"vlan":2546},{"vlan":2547},{"vlan":2548},{"vlan":2549},{"vlan":2550},{"vlan":2551},{"vlan":2552},{"vlan":2553},{"vlan":2554},{"vlan":2555},{"vlan":2556},{"vlan":2557},{"vlan":2558},{"vlan":2559},{"vlan":2560},{"vlan":2561},{"vlan":2562},{"vlan":2563},{"vlan":2564},{"vlan":2565},{"vlan":2566},{"vlan":2567},{"vlan":2568},{"vlan":2569},{"vlan":2570},{"vlan":2571},{"vlan":2572},{"vlan":2573},{"vlan":2574},{"vlan":2575},{"vlan":2576},{"vlan":2577},{"vlan":2578},{"vlan":2579},{"vlan":2580},{"vlan":2581},{"vlan":2582},{"vlan":2583},{"vlan":2584},{"vlan":2585},{"vlan":2586},{"vlan":2587},{"vlan":2588},{"vlan":2589},{"vlan":2590},{"vlan":2591},{"vlan":2592},{"vlan":2593},{"vlan":2594},{"vlan":2595},{"vlan":2596},{"vlan":2597},{"vlan":2598},{"vlan":2599},{"vlan":2600},{"vlan":2601},{"vlan":2602},{"vlan":2603},{"vlan":2604},{"vlan":2605},{"vlan":2606},{"vlan":2607},{"vlan":2608},{"vlan":2609},{"vlan":2610},{"vlan":2611},{"vlan":2612},{"vlan":2613},{"vlan":2614},{"vlan":2615},{"vlan":2616},{"vlan":2617},{"vlan":2618},{"vlan":2619},{"vlan":2620},{"vlan":2621},{"vlan":2622},{"vlan":2623},{"vlan":2624},{"vlan":2625},{"vlan":2626},{"vlan":2627},{"vlan":2628},{"vlan":2629},{"vlan":2630},{"vlan":2631},{"vlan":2632},{"vlan":2633},{"vlan":2634},{"vlan":2635},{"vlan":2636},{"vlan":2637},{"vlan":2638},{"vlan":2639},{"vlan":2640},{"vlan":2641},{"vlan":2642},{"vlan":2643},{"vlan":2644},{"vlan":2645},{"vlan":2646},{"vlan":2647},{"vlan":2648},{"vlan":2649},{"vlan":2650},{"vlan":2651},{"vlan":2652},{"vlan":2653},{"vlan":2654},{"vlan":2655},{"vlan":2656},{"vlan":2657},{"vlan":2658},{"vlan":2659},{"vlan":2660},{"vlan":2661},{"vlan":2662},{"vlan":2663},{"vlan":2664},{"vlan":2665},{"vlan":2666},{"vlan":2667},{"vlan":2668},{"vlan":2669},{"vlan":2670},{"vlan":2671},{"vlan":2672},{"vlan":2673},{"vlan":2674},{"vlan":2675},{"vlan":2676},{"vlan":2677},{"vlan":2678},{"vlan":2679},{"vlan":2680},{"vlan":2681},{"vlan":2682},{"vlan":2683},{"vlan":2684},{"vlan":2685},{"vlan":2686},{"vlan":2687},{"vlan":2688},{"vlan":2689},{"vlan":2690},{"vlan":2691},{"vlan":2692},{"vlan":2693},{"vlan":2694},{"vlan":2695},{"vlan":2696},{"vlan":2697},{"vlan":2698},{"vlan":2699},{"vlan":2700},{"vlan":2701},{"vlan":2702},{"vlan":2703},{"vlan":2704},{"vlan":2705},{"vlan":2706},{"vlan":2707},{"vlan":2708},{"vlan":2709},{"vlan":2710},{"vlan":2711},{"vlan":2712},{"vlan":2713},{"vlan":2714},{"vlan":2715},{"vlan":2716},{"vlan":2717},{"vlan":2718},{"vlan":2719},{"vlan":2720},{"vlan":2721},{"vlan":2722},{"vlan":2723},{"vlan":2724},{"vlan":2725},{"vlan":2726},{"vlan":2727},{"vlan":2728},{"vlan":2729},{"vlan":2730},{"vlan":2731},{"vlan":2732},{"vlan":2733},{"vlan":2734},{"vlan":2735},{"vlan":2736},{"vlan":2737},{"vlan":2738},{"vlan":2739},{"vlan":2740},{"vlan":2741},{"vlan":2742},{"vlan":2743},{"vlan":2744},{"vlan":2745},{"vlan":2746},{"vlan":2747},{"vlan":2748},{"vlan":2749},{"vlan":2750},{"vlan":2751},{"vlan":2752},{"vlan":2753},{"vlan":2754},{"vlan":2755},{"vlan":2756},{"vlan":2757},{"vlan":2758},{"vlan":2759},{"vlan":2760},{"vlan":2761},{"vlan":2762},{"vlan":2763},{"vlan":2764},{"vlan":2765},{"vlan":2766},{"vlan":2767},{"vlan":2768},{"vlan":2769},{"vlan":2770},{"vlan":2771},{"vlan":2772},{"vlan":2773},{"vlan":2774},{"vlan":2775},{"vlan":2776},{"vlan":2777},{"vlan":2778},{"vlan":2779},{"vlan":2780},{"vlan":2781},{"vlan":2782},{"vlan":2783},{"vlan":2784},{"vlan":2785},{"vlan":2786},{"vlan":2787},{"vlan":2788},{"vlan":2789},{"vlan":2790},{"vlan":2791},{"vlan":2792},{"vlan":2793},{"vlan":2794},{"vlan":2795},{"vlan":2796},{"vlan":2797},{"vlan":2798},{"vlan":2799},{"vlan":2800},{"vlan":2801},{"vlan":2802},{"vlan":2803},{"vlan":2804},{"vlan":2805},{"vlan":2806},{"vlan":2807},{"vlan":2808},{"vlan":2809},{"vlan":2810},{"vlan":2811},{"vlan":2812},{"vlan":2813},{"vlan":2814},{"vlan":2815},{"vlan":2816},{"vlan":2817},{"vlan":2818},{"vlan":2819},{"vlan":2820},{"vlan":2821},{"vlan":2822},{"vlan":2823},{"vlan":2824},{"vlan":2825},{"vlan":2826},{"vlan":2827},{"vlan":2828},{"vlan":2829},{"vlan":2830},{"vlan":2831},{"vlan":2832},{"vlan":2833},{"vlan":2834},{"vlan":2835},{"vlan":2836},{"vlan":2837},{"vlan":2838},{"vlan":2839},{"vlan":2840},{"vlan":2841},{"vlan":2842},{"vlan":2843},{"vlan":2844},{"vlan":2845},{"vlan":2846},{"vlan":2847},{"vlan":2848},{"vlan":2849},{"vlan":2850},{"vlan":2851},{"vlan":2852},{"vlan":2853},{"vlan":2854},{"vlan":2855},{"vlan":2856},{"vlan":2857},{"vlan":2858},{"vlan":2859},{"vlan":2860},{"vlan":2861},{"vlan":2862},{"vlan":2863},{"vlan":2864},{"vlan":2865},{"vlan":2866},{"vlan":2867},{"vlan":2868},{"vlan":2869},{"vlan":2870},{"vlan":2871},{"vlan":2872},{"vlan":2873},{"vlan":2874},{"vlan":2875},{"vlan":2876},{"vlan":2877},{"vlan":2878},{"vlan":2879},{"vlan":2880},{"vlan":2881},{"vlan":2882},{"vlan":2883},{"vlan":2884},{"vlan":2885},{"vlan":2886},{"vlan":2887},{"vlan":2888},{"vlan":2889},{"vlan":2890},{"vlan":2891},{"vlan":2892},{"vlan":2893},{"vlan":2894},{"vlan":2895},{"vlan":2896},{"vlan":2897},{"vlan":2898},{"vlan":2899},{"vlan":2900},{"vlan":2901},{"vlan":2902},{"vlan":2903},{"vlan":2904},{"vlan":2905},{"vlan":2906},{"vlan":2907},{"vlan":2908},{"vlan":2909},{"vlan":2910},{"vlan":2911},{"vlan":2912},{"vlan":2913},{"vlan":2914},{"vlan":2915},{"vlan":2916},{"vlan":2917},{"vlan":2918},{"vlan":2919},{"vlan":2920},{"vlan":2921},{"vlan":2922},{"vlan":2923},{"vlan":2924},{"vlan":2925},{"vlan":2926},{"vlan":2927},{"vlan":2928},{"vlan":2929},{"vlan":2930},{"vlan":2931},{"vlan":2932},{"vlan":2933},{"vlan":2934},{"vlan":2935},{"vlan":2936},{"vlan":2937},{"vlan":2938},{"vlan":2939},{"vlan":2940},{"vlan":2941},{"vlan":2942},{"vlan":2943},{"vlan":2944},{"vlan":2945},{"vlan":2946},{"vlan":2947},{"vlan":2948},{"vlan":2949},{"vlan":2950},{"vlan":2951},{"vlan":2952},{"vlan":2953},{"vlan":2954},{"vlan":2955},{"vlan":2956},{"vlan":2957},{"vlan":2958},{"vlan":2959},{"vlan":2960},{"vlan":2961},{"vlan":2962},{"vlan":2963},{"vlan":2964},{"vlan":2965},{"vlan":2966},{"vlan":2967},{"vlan":2968},{"vlan":2969},{"vlan":2970},{"vlan":2971},{"vlan":2972},{"vlan":2973},{"vlan":2974},{"vlan":2975},{"vlan":2976},{"vlan":2977},{"vlan":2978},{"vlan":2979},{"vlan":2980},{"vlan":2981},{"vlan":2982},{"vlan":2983},{"vlan":2984},{"vlan":2985},{"vlan":2986},{"vlan":2987},{"vlan":2988},{"vlan":2989},{"vlan":2990},{"vlan":2991},{"vlan":2992},{"vlan":2993},{"vlan":2994},{"vlan":2995},{"vlan":2996},{"vlan":2997},{"vlan":2998},{"vlan":2999},{"vlan":3000},{"vlan":3001},{"vlan":3002},{"vlan":3003},{"vlan":3004},{"vlan":3005},{"vlan":3006},{"vlan":3007},{"vlan":3008},{"vlan":3009},{"vlan":3010},{"vlan":3011},{"vlan":3012},{"vlan":3013},{"vlan":3014},{"vlan":3015},{"vlan":3016},{"vlan":3017},{"vlan":3018},{"vlan":3019},{"vlan":3020},{"vlan":3021},{"vlan":3022},{"vlan":3023},{"vlan":3024},{"vlan":3025},{"vlan":3026},{"vlan":3027},{"vlan":3028},{"vlan":3029},{"vlan":3030},{"vlan":3031},{"vlan":3032},{"vlan":3033},{"vlan":3034},{"vlan":3035},{"vlan":3036},{"vlan":3037},{"vlan":3038},{"vlan":3039},{"vlan":3040},{"vlan":3041},{"vlan":3042},{"vlan":3043},{"vlan":3044},{"vlan":3045},{"vlan":3046},{"vlan":3047},{"vlan":3048},{"vlan":3049},{"vlan":3050},{"vlan":3051},{"vlan":3052},{"vlan":3053},{"vlan":3054},{"vlan":3055},{"vlan":3056},{"vlan":3057},{"vlan":3058},{"vlan":3059},{"vlan":3060},{"vlan":3061},{"vlan":3062},{"vlan":3063},{"vlan":3064},{"vlan":3065},{"vlan":3066},{"vlan":3067},{"vlan":3068},{"vlan":3069},{"vlan":3070},{"vlan":3071},{"vlan":3072},{"vlan":3073},{"vlan":3074},{"vlan":3075},{"vlan":3076},{"vlan":3077},{"vlan":3078},{"vlan":3079},{"vlan":3080},{"vlan":3081},{"vlan":3082},{"vlan":3083},{"vlan":3084},{"vlan":3085},{"vlan":3086},{"vlan":3087},{"vlan":3088},{"vlan":3089},{"vlan":3090},{"vlan":3091},{"vlan":3092},{"vlan":3093},{"vlan":3094},{"vlan":3095},{"vlan":3096},{"vlan":3097},{"vlan":3098},{"vlan":3099},{"vlan":3100},{"vlan":3101},{"vlan":3102},{"vlan":3103},{"vlan":3104},{"vlan":3105},{"vlan":3106},{"vlan":3107},{"vlan":3108},{"vlan":3109},{"vlan":3110},{"vlan":3111},{"vlan":3112},{"vlan":3113},{"vlan":3114},{"vlan":3115},{"vlan":3116},{"vlan":3117},{"vlan":3118},{"vlan":3119},{"vlan":3120},{"vlan":3121},{"vlan":3122},{"vlan":3123},{"vlan":3124},{"vlan":3125},{"vlan":3126},{"vlan":3127},{"vlan":3128},{"vlan":3129},{"vlan":3130},{"vlan":3131},{"vlan":3132},{"vlan":3133},{"vlan":3134},{"vlan":3135},{"vlan":3136},{"vlan":3137},{"vlan":3138},{"vlan":3139},{"vlan":3140},{"vlan":3141},{"vlan":3142},{"vlan":3143},{"vlan":3144},{"vlan":3145},{"vlan":3146},{"vlan":3147},{"vlan":3148},{"vlan":3149},{"vlan":3150},{"vlan":3151},{"vlan":3152},{"vlan":3153},{"vlan":3154},{"vlan":3155},{"vlan":3156},{"vlan":3157},{"vlan":3158},{"vlan":3159},{"vlan":3160},{"vlan":3161},{"vlan":3162},{"vlan":3163},{"vlan":3164},{"vlan":3165},{"vlan":3166},{"vlan":3167},{"vlan":3168},{"vlan":3169},{"vlan":3170},{"vlan":3171},{"vlan":3172},{"vlan":3173},{"vlan":3174},{"vlan":3175},{"vlan":3176},{"vlan":3177},{"vlan":3178},{"vlan":3179},{"vlan":3180},{"vlan":3181},{"vlan":3182},{"vlan":3183},{"vlan":3184},{"vlan":3185},{"vlan":3186},{"vlan":3187},{"vlan":3188},{"vlan":3189},{"vlan":3190},{"vlan":3191},{"vlan":3192},{"vlan":3193},{"vlan":3194},{"vlan":3195},{"vlan":3196},{"vlan":3197},{"vlan":3198},{"vlan":3199},{"vlan":3200},{"vlan":3201},{"vlan":3202},{"vlan":3203},{"vlan":3204},{"vlan":3205},{"vlan":3206},{"vlan":3207},{"vlan":3208},{"vlan":3209},{"vlan":3210},{"vlan":3211},{"vlan":3212},{"vlan":3213},{"vlan":3214},{"vlan":3215},{"vlan":3216},{"vlan":3217},{"vlan":3218},{"vlan":3219},{"vlan":3220},{"vlan":3221},{"vlan":3222},{"vlan":3223},{"vlan":3224},{"vlan":3225},{"vlan":3226},{"vlan":3227},{"vlan":3228},{"vlan":3229},{"vlan":3230},{"vlan":3231},{"vlan":3232},{"vlan":3233},{"vlan":3234},{"vlan":3235},{"vlan":3236},{"vlan":3237},{"vlan":3238},{"vlan":3239},{"vlan":3240},{"vlan":3241},{"vlan":3242},{"vlan":3243},{"vlan":3244},{"vlan":3245},{"vlan":3246},{"vlan":3247},{"vlan":3248},{"vlan":3249},{"vlan":3250},{"vlan":3251},{"vlan":3252},{"vlan":3253},{"vlan":3254},{"vlan":3255},{"vlan":3256},{"vlan":3257},{"vlan":3258},{"vlan":3259},{"vlan":3260},{"vlan":3261},{"vlan":3262},{"vlan":3263},{"vlan":3264},{"vlan":3265},{"vlan":3266},{"vlan":3267},{"vlan":3268},{"vlan":3269},{"vlan":3270},{"vlan":3271},{"vlan":3272},{"vlan":3273},{"vlan":3274},{"vlan":3275},{"vlan":3276},{"vlan":3277},{"vlan":3278},{"vlan":3279},{"vlan":3280},{"vlan":3281},{"vlan":3282},{"vlan":3283},{"vlan":3284},{"vlan":3285},{"vlan":3286},{"vlan":3287},{"vlan":3288},{"vlan":3289},{"vlan":3290},{"vlan":3291},{"vlan":3292},{"vlan":3293},{"vlan":3294},{"vlan":3295},{"vlan":3296},{"vlan":3297},{"vlan":3298},{"vlan":3299},{"vlan":3300},{"vlan":3301},{"vlan":3302},{"vlan":3303},{"vlan":3304},{"vlan":3305},{"vlan":3306},{"vlan":3307},{"vlan":3308},{"vlan":3309},{"vlan":3310},{"vlan":3311},{"vlan":3312},{"vlan":3313},{"vlan":3314},{"vlan":3315},{"vlan":3316},{"vlan":3317},{"vlan":3318},{"vlan":3319},{"vlan":3320},{"vlan":3321},{"vlan":3322},{"vlan":3323},{"vlan":3324},{"vlan":3325},{"vlan":3326},{"vlan":3327},{"vlan":3328},{"vlan":3329},{"vlan":3330},{"vlan":3331},{"vlan":3332},{"vlan":3333},{"vlan":3334},{"vlan":3335},{"vlan":3336},{"vlan":3337},{"vlan":3338},{"vlan":3339},{"vlan":3340},{"vlan":3341},{"vlan":3342},{"vlan":3343},{"vlan":3344},{"vlan":3345},{"vlan":3346},{"vlan":3347},{"vlan":3348},{"vlan":3349},{"vlan":3350},{"vlan":3351},{"vlan":3352},{"vlan":3353},{"vlan":3354},{"vlan":3355},{"vlan":3356},{"vlan":3357},{"vlan":3358},{"vlan":3359},{"vlan":3360},{"vlan":3361},{"vlan":3362},{"vlan":3363},{"vlan":3364},{"vlan":3365},{"vlan":3366},{"vlan":3367},{"vlan":3368},{"vlan":3369},{"vlan":3370},{"vlan":3371},{"vlan":3372},{"vlan":3373},{"vlan":3374},{"vlan":3375},{"vlan":3376},{"vlan":3377},{"vlan":3378},{"vlan":3379},{"vlan":3380},{"vlan":3381},{"vlan":3382},{"vlan":3383},{"vlan":3384},{"vlan":3385},{"vlan":3386},{"vlan":3387},{"vlan":3388},{"vlan":3389},{"vlan":3390},{"vlan":3391},{"vlan":3392},{"vlan":3393},{"vlan":3394},{"vlan":3395},{"vlan":3396},{"vlan":3397},{"vlan":3398},{"vlan":3399},{"vlan":3400},{"vlan":3401},{"vlan":3402},{"vlan":3403},{"vlan":3404},{"vlan":3405},{"vlan":3406},{"vlan":3407},{"vlan":3408},{"vlan":3409},{"vlan":3410},{"vlan":3411},{"vlan":3412},{"vlan":3413},{"vlan":3414},{"vlan":3415},{"vlan":3416},{"vlan":3417},{"vlan":3418},{"vlan":3419},{"vlan":3420},{"vlan":3421},{"vlan":3422},{"vlan":3423},{"vlan":3424},{"vlan":3425},{"vlan":3426},{"vlan":3427},{"vlan":3428},{"vlan":3429},{"vlan":3430},{"vlan":3431},{"vlan":3432},{"vlan":3433},{"vlan":3434},{"vlan":3435},{"vlan":3436},{"vlan":3437},{"vlan":3438},{"vlan":3439},{"vlan":3440},{"vlan":3441},{"vlan":3442},{"vlan":3443},{"vlan":3444},{"vlan":3445},{"vlan":3446},{"vlan":3447},{"vlan":3448},{"vlan":3449},{"vlan":3450},{"vlan":3451},{"vlan":3452},{"vlan":3453},{"vlan":3454},{"vlan":3455},{"vlan":3456},{"vlan":3457},{"vlan":3458},{"vlan":3459},{"vlan":3460},{"vlan":3461},{"vlan":3462},{"vlan":3463},{"vlan":3464},{"vlan":3465},{"vlan":3466},{"vlan":3467},{"vlan":3468},{"vlan":3469},{"vlan":3470},{"vlan":3471},{"vlan":3472},{"vlan":3473},{"vlan":3474},{"vlan":3475},{"vlan":3476},{"vlan":3477},{"vlan":3478},{"vlan":3479},{"vlan":3480},{"vlan":3481},{"vlan":3482},{"vlan":3483},{"vlan":3484},{"vlan":3485},{"vlan":3486},{"vlan":3487},{"vlan":3488},{"vlan":3489},{"vlan":3490},{"vlan":3491},{"vlan":3492},{"vlan":3493},{"vlan":3494},{"vlan":3495},{"vlan":3496},{"vlan":3497},{"vlan":3498},{"vlan":3499},{"vlan":3500},{"vlan":3501},{"vlan":3502},{"vlan":3503},{"vlan":3504},{"vlan":3505},{"vlan":3506},{"vlan":3507},{"vlan":3508},{"vlan":3509},{"vlan":3510},{"vlan":3511},{"vlan":3512},{"vlan":3513},{"vlan":3514},{"vlan":3515},{"vlan":3516},{"vlan":3517},{"vlan":3518},{"vlan":3519},{"vlan":3520},{"vlan":3521},{"vlan":3522},{"vlan":3523},{"vlan":3524},{"vlan":3525},{"vlan":3526},{"vlan":3527},{"vlan":3528},{"vlan":3529},{"vlan":3530},{"vlan":3531},{"vlan":3532},{"vlan":3533},{"vlan":3534},{"vlan":3535},{"vlan":3536},{"vlan":3537},{"vlan":3538},{"vlan":3539},{"vlan":3540},{"vlan":3541},{"vlan":3542},{"vlan":3543},{"vlan":3544},{"vlan":3545},{"vlan":3546},{"vlan":3547},{"vlan":3548},{"vlan":3549},{"vlan":3550},{"vlan":3551},{"vlan":3552},{"vlan":3553},{"vlan":3554},{"vlan":3555},{"vlan":3556},{"vlan":3557},{"vlan":3558},{"vlan":3559},{"vlan":3560},{"vlan":3561},{"vlan":3562},{"vlan":3563},{"vlan":3564},{"vlan":3565},{"vlan":3566},{"vlan":3567},{"vlan":3568},{"vlan":3569},{"vlan":3570},{"vlan":3571},{"vlan":3572},{"vlan":3573},{"vlan":3574},{"vlan":3575},{"vlan":3576},{"vlan":3577},{"vlan":3578},{"vlan":3579},{"vlan":3580},{"vlan":3581},{"vlan":3582},{"vlan":3583},{"vlan":3584},{"vlan":3585},{"vlan":3586},{"vlan":3587},{"vlan":3588},{"vlan":3589},{"vlan":3590},{"vlan":3591},{"vlan":3592},{"vlan":3593},{"vlan":3594},{"vlan":3595},{"vlan":3596},{"vlan":3597},{"vlan":3598},{"vlan":3599},{"vlan":3600},{"vlan":3601},{"vlan":3602},{"vlan":3603},{"vlan":3604},{"vlan":3605},{"vlan":3606},{"vlan":3607},{"vlan":3608},{"vlan":3609},{"vlan":3610},{"vlan":3611},{"vlan":3612},{"vlan":3613},{"vlan":3614},{"vlan":3615},{"vlan":3616},{"vlan":3617},{"vlan":3618},{"vlan":3619},{"vlan":3620},{"vlan":3621},{"vlan":3622},{"vlan":3623},{"vlan":3624},{"vlan":3625},{"vlan":3626},{"vlan":3627},{"vlan":3628},{"vlan":3629},{"vlan":3630},{"vlan":3631},{"vlan":3632},{"vlan":3633},{"vlan":3634},{"vlan":3635},{"vlan":3636},{"vlan":3637},{"vlan":3638},{"vlan":3639},{"vlan":3640},{"vlan":3641},{"vlan":3642},{"vlan":3643},{"vlan":3644},{"vlan":3645},{"vlan":3646},{"vlan":3647},{"vlan":3648},{"vlan":3649},{"vlan":3650},{"vlan":3651},{"vlan":3652},{"vlan":3653},{"vlan":3654},{"vlan":3655},{"vlan":3656},{"vlan":3657},{"vlan":3658},{"vlan":3659},{"vlan":3660},{"vlan":3661},{"vlan":3662},{"vlan":3663},{"vlan":3664},{"vlan":3665},{"vlan":3666},{"vlan":3667},{"vlan":3668},{"vlan":3669},{"vlan":3670},{"vlan":3671},{"vlan":3672},{"vlan":3673},{"vlan":3674},{"vlan":3675},{"vlan":3676},{"vlan":3677},{"vlan":3678},{"vlan":3679},{"vlan":3680},{"vlan":3681},{"vlan":3682},{"vlan":3683},{"vlan":3684},{"vlan":3685},{"vlan":3686},{"vlan":3687},{"vlan":3688},{"vlan":3689},{"vlan":3690},{"vlan":3691},{"vlan":3692},{"vlan":3693},{"vlan":3694},{"vlan":3695},{"vlan":3696},{"vlan":3697},{"vlan":3698},{"vlan":3699},{"vlan":3700},{"vlan":3701},{"vlan":3702},{"vlan":3703},{"vlan":3704},{"vlan":3705},{"vlan":3706},{"vlan":3707},{"vlan":3708},{"vlan":3709},{"vlan":3710},{"vlan":3711},{"vlan":3712},{"vlan":3713},{"vlan":3714},{"vlan":3715},{"vlan":3716},{"vlan":3717},{"vlan":3718},{"vlan":3719},{"vlan":3720},{"vlan":3721},{"vlan":3722},{"vlan":3723},{"vlan":3724},{"vlan":3725},{"vlan":3726},{"vlan":3727},{"vlan":3728},{"vlan":3729},{"vlan":3730},{"vlan":3731},{"vlan":3732},{"vlan":3733},{"vlan":3734},{"vlan":3735},{"vlan":3736},{"vlan":3737},{"vlan":3738},{"vlan":3739},{"vlan":3740},{"vlan":3741},{"vlan":3742},{"vlan":3743},{"vlan":3744},{"vlan":3745},{"vlan":3746},{"vlan":3747},{"vlan":3748},{"vlan":3749},{"vlan":3750},{"vlan":3751},{"vlan":3752},{"vlan":3753},{"vlan":3754},{"vlan":3755},{"vlan":3756},{"vlan":3757},{"vlan":3758},{"vlan":3759},{"vlan":3760},{"vlan":3761},{"vlan":3762},{"vlan":3763},{"vlan":3764},{"vlan":3765},{"vlan":3766},{"vlan":3767},{"vlan":3768},{"vlan":3769},{"vlan":3770},{"vlan":3771},{"vlan":3772},{"vlan":3773},{"vlan":3774},{"vlan":3775},{"vlan":3776},{"vlan":3777},{"vlan":3778},{"vlan":3779},{"vlan":3780},{"vlan":3781},{"vlan":3782},{"vlan":3783},{"vlan":3784},{"vlan":3785},{"vlan":3786},{"vlan":3787},{"vlan":3788},{"vlan":3789},{"vlan":3790},{"vlan":3791},{"vlan":3792},{"vlan":3793},{"vlan":3794},{"vlan":3795},{"vlan":3796},{"vlan":3797},{"vlan":3798},{"vlan":3799},{"vlan":3800},{"vlan":3801},{"vlan":3802},{"vlan":3803},{"vlan":3804},{"vlan":3805},{"vlan":3806},{"vlan":3807},{"vlan":3808},{"vlan":3809},{"vlan":3810},{"vlan":3811},{"vlan":3812},{"vlan":3813},{"vlan":3814},{"vlan":3815},{"vlan":3816},{"vlan":3817},{"vlan":3818},{"vlan":3819},{"vlan":3820},{"vlan":3821},{"vlan":3822},{"vlan":3823},{"vlan":3824},{"vlan":3825},{"vlan":3826},{"vlan":3827},{"vlan":3828},{"vlan":3829},{"vlan":3830},{"vlan":3831},{"vlan":3832},{"vlan":3833},{"vlan":3834},{"vlan":3835},{"vlan":3836},{"vlan":3837},{"vlan":3838},{"vlan":3839},{"vlan":3840},{"vlan":3841},{"vlan":3842},{"vlan":3843},{"vlan":3844},{"vlan":3845},{"vlan":3846},{"vlan":3847},{"vlan":3848},{"vlan":3849},{"vlan":3850},{"vlan":3851},{"vlan":3852},{"vlan":3853},{"vlan":3854},{"vlan":3855},{"vlan":3856},{"vlan":3857},{"vlan":3858},{"vlan":3859},{"vlan":3860},{"vlan":3861},{"vlan":3862},{"vlan":3863},{"vlan":3864},{"vlan":3865},{"vlan":3866},{"vlan":3867},{"vlan":3868},{"vlan":3869},{"vlan":3870},{"vlan":3871},{"vlan":3872},{"vlan":3873},{"vlan":3874},{"vlan":3875},{"vlan":3876},{"vlan":3877},{"vlan":3878},{"vlan":3879},{"vlan":3880},{"vlan":3881},{"vlan":3882},{"vlan":3883},{"vlan":3884},{"vlan":3885},{"vlan":3886},{"vlan":3887},{"vlan":3888},{"vlan":3889},{"vlan":3890},{"vlan":3891},{"vlan":3892},{"vlan":3893},{"vlan":3894},{"vlan":3895},{"vlan":3896},{"vlan":3897},{"vlan":3898},{"vlan":3899},{"vlan":3900},{"vlan":3901},{"vlan":3902},{"vlan":3903},{"vlan":3904},{"vlan":3905},{"vlan":3906},{"vlan":3907},{"vlan":3908},{"vlan":3909},{"vlan":3910},{"vlan":3911},{"vlan":3912},{"vlan":3913},{"vlan":3914},{"vlan":3915},{"vlan":3916},{"vlan":3917},{"vlan":3918},{"vlan":3919},{"vlan":3920},{"vlan":3921},{"vlan":3922},{"vlan":3923},{"vlan":3924},{"vlan":3925},{"vlan":3926},{"vlan":3927},{"vlan":3928},{"vlan":3929},{"vlan":3930},{"vlan":3931},{"vlan":3932},{"vlan":3933},{"vlan":3934},{"vlan":3935},{"vlan":3936},{"vlan":3937},{"vlan":3938},{"vlan":3939},{"vlan":3940},{"vlan":3941},{"vlan":3942},{"vlan":3943},{"vlan":3944},{"vlan":3945},{"vlan":3946},{"vlan":3947},{"vlan":3948},{"vlan":3949},{"vlan":3950},{"vlan":3951},{"vlan":3952},{"vlan":3953},{"vlan":3954},{"vlan":3955},{"vlan":3956},{"vlan":3957},{"vlan":3958},{"vlan":3959},{"vlan":3960},{"vlan":3961},{"vlan":3962},{"vlan":3963},{"vlan":3964},{"vlan":3965},{"vlan":3966},{"vlan":3967},{"vlan":3968},{"vlan":3969},{"vlan":3970},{"vlan":3971},{"vlan":3972},{"vlan":3973},{"vlan":3974},{"vlan":3975},{"vlan":3976},{"vlan":3977},{"vlan":3978},{"vlan":3979},{"vlan":3980},{"vlan":3981},{"vlan":3982},{"vlan":3983},{"vlan":3984},{"vlan":3985},{"vlan":3986},{"vlan":3987},{"vlan":3988},{"vlan":3989},{"vlan":3990},{"vlan":3991},{"vlan":3992},{"vlan":3993},{"vlan":3994},{"vlan":3995},{"vlan":3996},{"vlan":3997},{"vlan":3998},{"vlan":3999},{"vlan":4000},{"vlan":4001},{"vlan":4002},{"vlan":4003},{"vlan":4004},{"vlan":4005},{"vlan":4006},{"vlan":4007},{"vlan":4008},{"vlan":4009},{"vlan":4010},{"vlan":4011},{"vlan":4012},{"vlan":4013},{"vlan":4014},{"vlan":4015},{"vlan":4016},{"vlan":4017},{"vlan":4018},{"vlan":4019},{"vlan":4020},{"vlan":4021},{"vlan":4022},{"vlan":4023},{"vlan":4024},{"vlan":4025},{"vlan":4026},{"vlan":4027},{"vlan":4028},{"vlan":4029},{"vlan":4030},{"vlan":4031},{"vlan":4032},{"vlan":4033},{"vlan":4034},{"vlan":4035},{"vlan":4036},{"vlan":4037},{"vlan":4038},{"vlan":4039},{"vlan":4040},{"vlan":4041},{"vlan":4042},{"vlan":4043},{"vlan":4044},{"vlan":4045},{"vlan":4046},{"vlan":4047},{"vlan":4048},{"vlan":4049},{"vlan":4050},{"vlan":4051},{"vlan":4052},{"vlan":4053},{"vlan":4054},{"vlan":4055},{"vlan":4056},{"vlan":4057},{"vlan":4058},{"vlan":4059},{"vlan":4060},{"vlan":4061},{"vlan":4062},{"vlan":4063},{"vlan":4064},{"vlan":4065},{"vlan":4066},{"vlan":4067},{"vlan":4068},{"vlan":4069},{"vlan":4070},{"vlan":4071},{"vlan":4072},{"vlan":4073},{"vlan":4074},{"vlan":4075},{"vlan":4076},{"vlan":4077},{"vlan":4078},{"vlan":4079},{"vlan":4080},{"vlan":4081},{"vlan":4082},{"vlan":4083},{"vlan":4084},{"vlan":4085},{"vlan":4086},{"vlan":4087},{"vlan":4088},{"vlan":4089},{"vlan":4090},{"vlan":4091},{"vlan":4092},{"vlan":4093},{"vlan":4094}]}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_can_set_max_vlans from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_configuration_checks.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=200, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=11] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=200, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=12] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 03:55:23 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=200, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=200, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=14] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 03:55:23 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=200, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=200, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=200, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":206,"ifname":"br0","flags":["NO-CARRIER","BROADCAST","MULTICAST","UP"],"mtu":1500,"qdisc":"noqueue","operstate":"DOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:8a","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=200, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=200, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=200, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=200, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=200, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=200, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=200, chan=18] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/vlan/test_vlan_configuration_checks.py::test_vlan_can_not_add_interface_to_vlan_wo_bridge | 0.67 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_can_not_add_interface_to_vlan_wo_bridge">Starting testcase:test_vlan_can_not_add_interface_to_vlan_wo_bridge from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_configuration_checks.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-12416' coro=<test_vlan_can_not_add_interface_to_vlan_wo_bridge() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_configuration_checks.py:70> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO asyncssh:logging.py:92 [conn=200, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=201] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=201] Local address: 172.17.0.3, port 46128 INFO asyncssh:logging.py:92 [conn=201] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=201] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=201] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=201, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=0] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 03:56:17 UTC 2023 INFO asyncssh:logging.py:92 [conn=201, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=1] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp6 vid 2 INFO asyncssh:logging.py:92 [conn=201, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=2] Command: bridge vlan add dev swp6 vid 2 INFO asyncssh:logging.py:92 [conn=201, chan=2] Received exit status 255 INFO asyncssh:logging.py:92 [conn=201, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=2] Channel closed DEBUG infra2:Logger.py:156 RTNETLINK answers: Operation not supported INFO asyncssh:logging.py:92 [conn=201, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=201, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=4] Command: ip link add br0 type bridge INFO asyncssh:logging.py:92 [conn=201, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=201, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=201, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=6] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=201, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=201, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=7] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp6 vid 2 INFO asyncssh:logging.py:92 [conn=201, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=8] Command: bridge vlan add dev swp6 vid 2 INFO asyncssh:logging.py:92 [conn=201, chan=8] Received exit status 255 INFO asyncssh:logging.py:92 [conn=201, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=8] Channel closed DEBUG infra2:Logger.py:156 RTNETLINK answers: Operation not supported -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_can_not_add_interface_to_vlan_wo_bridge from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_configuration_checks.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=201, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=9] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=201, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=10] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=10] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 03:56:17 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=201, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=11] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=201, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=12] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 03:56:17 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=201, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=201, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=14] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=201, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=14] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":207,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UNKNOWN","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"62:bc:f2:9c:0d:14","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=201, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=201, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=201, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=201, chan=16] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=201, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=201, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=201, chan=16] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/vlan/test_vlan_default_configuration.py::test_vlan_default_configuration_with_[broadcast] | 194.36 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_default_configuration_with_[broadcast]">Starting testcase:test_vlan_default_configuration_with_[broadcast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_default_configuration.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-12442' coro=<test_vlan_default_configuration_with_() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_default_configuration.py:110> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=201, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=202] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=202] Local address: 172.17.0.3, port 46130 INFO asyncssh:logging.py:92 [conn=202] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=202] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=202] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=202, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=0] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 03:56:17 UTC 2023 INFO asyncssh:logging.py:92 [conn=202, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=202, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=202, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=202, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=202, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=202, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=202, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=202, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=202, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Untagged traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f7000340>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 228 Rx 228 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 228 Rx 228 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 227 Rx 227 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI Traffic with VLAN ID: 2 SIP-DIP N/A Tx 228 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI Traffic with VLAN ID: 2 SIP-DIP N/A Tx 228 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI Traffic with VLAN ID: 2 SIP-DIP N/A Tx 227 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI Untagged traffic SIP-DIP N/A Tx 228 Rx 228 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI Untagged traffic SIP-DIP N/A Tx 228 Rx 228 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI Untagged traffic SIP-DIP N/A Tx 227 Rx 227 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_default_configuration_with_[broadcast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_default_configuration.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=202, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=7] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=202, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=8] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 03:59:31 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=202, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=9] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=202, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=10] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=10] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 03:59:31 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=202, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=11] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=202, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=12] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=202, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=12] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":208,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=202, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=202, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=202, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=202, chan=14] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=202, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=202, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=202, chan=14] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/vlan/test_vlan_default_configuration.py::test_vlan_default_configuration_with_[multicast] | 196.48 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_default_configuration_with_[multicast]">Starting testcase:test_vlan_default_configuration_with_[multicast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_default_configuration.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-12466' coro=<test_vlan_default_configuration_with_() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_default_configuration.py:110> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=202, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=203] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=203] Local address: 172.17.0.3, port 37440 INFO asyncssh:logging.py:92 [conn=203] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=203] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=203] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=203, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=0] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 03:59:32 UTC 2023 INFO asyncssh:logging.py:92 [conn=203, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=203, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=203, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=203, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=203, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=203, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=203, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=203, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=203, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Untagged traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f7061f30>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 114 Rx 114 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 114 Rx 114 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 114 Rx 114 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI Traffic with VLAN ID: 2 SIP-DIP N/A Tx 114 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI Traffic with VLAN ID: 2 SIP-DIP N/A Tx 114 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI Traffic with VLAN ID: 2 SIP-DIP N/A Tx 114 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI Untagged traffic SIP-DIP N/A Tx 114 Rx 114 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI Untagged traffic SIP-DIP N/A Tx 114 Rx 114 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI Untagged traffic SIP-DIP N/A Tx 114 Rx 114 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_default_configuration_with_[multicast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_default_configuration.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=203, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=7] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=203, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=8] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 04:02:47 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=203, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=9] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=203, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=10] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=10] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 04:02:48 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=203, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=11] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=203, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=12] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=203, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=12] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":209,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=203, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=203, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=203, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=203, chan=14] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=203, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=203, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=203, chan=14] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/vlan/test_vlan_default_configuration.py::test_vlan_default_configuration_with_[unicast] | 190.87 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_default_configuration_with_[unicast]">Starting testcase:test_vlan_default_configuration_with_[unicast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_default_configuration.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-12490' coro=<test_vlan_default_configuration_with_() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_default_configuration.py:110> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=203, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=204] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=204] Local address: 172.17.0.3, port 35194 INFO asyncssh:logging.py:92 [conn=204] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=204] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=204] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=204, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=0] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 04:02:48 UTC 2023 INFO asyncssh:logging.py:92 [conn=204, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=204, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=204, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=204, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=204, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=204, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=204, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=204, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=204, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:5 -> 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:5 -> 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:5 -> X INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for 10.36.118.199:2:8 -> 10.36.118.199:2:5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f702fa30>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI 10.36.118.199:2:5 -> 1 SIP-DIP N/A Tx 449 Rx 449 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI 10.36.118.199:2:5 -> 2 SIP-DIP N/A Tx 449 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI 10.36.118.199:2:5 -> X SIP-DIP N/A Tx 449 Rx 449 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:8 Rx 10.36.118.199:2:5 TI 10.36.118.199:2:8 -> 10.36.118.199:2:5 SIP-DIP N/A Tx 449 Rx 449 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_default_configuration_with_[unicast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_default_configuration.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=204, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=7] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=204, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=8] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 04:05:58 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=204, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=9] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=204, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=10] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=10] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 04:05:58 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=204, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=11] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=204, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=12] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=204, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=12] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":210,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=204, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=204, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=204, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=204, chan=14] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=204, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=204, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=204, chan=14] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/vlan/test_vlan_default_configuration.py::test_vlan_default_configuration_with_[unknown_unicast] | 196.74 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_default_configuration_with_[unknown_unicast]">Starting testcase:test_vlan_default_configuration_with_[unknown_unicast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_default_configuration.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-12514' coro=<test_vlan_default_configuration_with_() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_default_configuration.py:110> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=204, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=205] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=205] Local address: 172.17.0.3, port 40390 INFO asyncssh:logging.py:92 [conn=205] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=205] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=205] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=205, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=0] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 04:05:59 UTC 2023 INFO asyncssh:logging.py:92 [conn=205, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=205, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 INFO asyncssh:logging.py:92 [conn=205, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=205, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=205, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=205, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=205, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=205, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=205, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Untagged traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f702ff10>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 233 Rx 233 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 233 Rx 233 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 232 Rx 232 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI Traffic with VLAN ID: 2 SIP-DIP N/A Tx 233 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI Traffic with VLAN ID: 2 SIP-DIP N/A Tx 233 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI Traffic with VLAN ID: 2 SIP-DIP N/A Tx 232 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI Untagged traffic SIP-DIP N/A Tx 233 Rx 233 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI Untagged traffic SIP-DIP N/A Tx 233 Rx 233 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI Untagged traffic SIP-DIP N/A Tx 232 Rx 232 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_default_configuration_with_[unknown_unicast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_default_configuration.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=205, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=7] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=205, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=8] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=8] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 04:09:15 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=205, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=9] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=205, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=10] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=10] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 04:09:15 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=205, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=11] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=205, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=12] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=205, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=12] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":211,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=205, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=205, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=13] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=205, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=205, chan=14] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=205, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=205, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=205, chan=14] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/vlan/test_vlan_default_configuration.py::test_vlan_basic_functionality | 182.85 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_basic_functionality">Starting testcase:test_vlan_basic_functionality from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_default_configuration.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-12538' coro=<test_vlan_basic_functionality() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_default_configuration.py:192> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=205, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=206] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=206] Local address: 172.17.0.3, port 37750 INFO asyncssh:logging.py:92 [conn=206] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=206] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=206] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=206, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=0] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 04:09:16 UTC 2023 INFO asyncssh:logging.py:92 [conn=206, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=206, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=206, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=206, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=206, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=206, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=206, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=206, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=206, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=206, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=7] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp33 vid 1 pvid untagged INFO asyncssh:logging.py:92 [conn=206, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=8] Command: bridge vlan add dev swp33 vid 1 pvid untagged INFO asyncssh:logging.py:92 [conn=206, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=206, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=9] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp34 vid 1 pvid untagged INFO asyncssh:logging.py:92 [conn=206, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=10] Command: bridge vlan add dev swp34 vid 1 pvid untagged INFO asyncssh:logging.py:92 [conn=206, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=206, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=11] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp35 vid 1 pvid untagged INFO asyncssh:logging.py:92 [conn=206, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=12] Command: bridge vlan add dev swp35 vid 1 pvid untagged INFO asyncssh:logging.py:92 [conn=206, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=206, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=13] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp36 vid 2 untagged INFO asyncssh:logging.py:92 [conn=206, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=14] Command: bridge vlan add dev swp36 vid 2 untagged INFO asyncssh:logging.py:92 [conn=206, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Untagged traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f6e924a0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI Untagged traffic SIP-DIP N/A Tx 227 Rx 227 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI Untagged traffic SIP-DIP N/A Tx 227 Rx 227 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI Untagged traffic SIP-DIP N/A Tx 227 Rx 0 Loss 100.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_basic_functionality from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_default_configuration.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=206, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=15] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=206, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=16] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 04:12:18 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=206, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=17] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=206, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=18] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 04:12:18 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=206, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=206, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=206, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=20] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":212,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=206, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=206, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=206, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=206, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=206, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=206, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=206, chan=22] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/vlan/test_vlan_default_configuration.py::test_vlan_changing_default_pvid | 194.58 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_changing_default_pvid">Starting testcase:test_vlan_changing_default_pvid from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_default_configuration.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-12570' coro=<test_vlan_changing_default_pvid() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_default_configuration.py:269> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=206, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=207] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=207] Local address: 172.17.0.3, port 45558 INFO asyncssh:logging.py:92 [conn=207] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=207] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=207] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=207, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=207, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=0] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 04:12:19 UTC 2023 INFO asyncssh:logging.py:92 [conn=207, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=207, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 2 INFO asyncssh:logging.py:92 [conn=207, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 2 INFO asyncssh:logging.py:92 [conn=207, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=207, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=207, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=207, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=207, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=207, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=207, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=207, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=207, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=207, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=207, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=7] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp33 vid 4094 pvid untagged INFO asyncssh:logging.py:92 [conn=207, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=8] Command: bridge vlan add dev swp33 vid 4094 pvid untagged INFO asyncssh:logging.py:92 [conn=207, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=207, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=207, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=9] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp34 vid 4094 pvid untagged INFO asyncssh:logging.py:92 [conn=207, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=10] Command: bridge vlan add dev swp34 vid 4094 pvid untagged INFO asyncssh:logging.py:92 [conn=207, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=207, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=207, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=11] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp35 vid 4094 pvid untagged INFO asyncssh:logging.py:92 [conn=207, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=12] Command: bridge vlan add dev swp35 vid 4094 pvid untagged INFO asyncssh:logging.py:92 [conn=207, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=207, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=207, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=13] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp36 vid 4094 pvid untagged INFO asyncssh:logging.py:92 [conn=207, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=14] Command: bridge vlan add dev swp36 vid 4094 pvid untagged INFO asyncssh:logging.py:92 [conn=207, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Untagged traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f7001420>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 237 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 237 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 237 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI Traffic with VLAN ID: 2 SIP-DIP N/A Tx 237 Rx 237 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI Traffic with VLAN ID: 2 SIP-DIP N/A Tx 237 Rx 237 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI Traffic with VLAN ID: 2 SIP-DIP N/A Tx 237 Rx 237 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI Untagged traffic SIP-DIP N/A Tx 237 Rx 237 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI Untagged traffic SIP-DIP N/A Tx 237 Rx 237 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI Untagged traffic SIP-DIP N/A Tx 237 Rx 237 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_changing_default_pvid from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_default_configuration.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=207, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=207, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=15] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=207, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=207, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=16] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 04:15:32 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=207, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=207, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=17] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=207, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=207, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=18] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 04:15:33 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=207, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=207, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=207, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=207, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=20] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":213,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=207, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=207, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=207, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=207, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=207, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=207, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=207, chan=22] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/vlan/test_vlan_increment_mac.py::test_vlan_with_increment_macs | 419.53 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_with_increment_macs">Starting testcase:test_vlan_with_increment_macs from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_increment_mac.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-12602' coro=<test_vlan_with_increment_macs() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_increment_mac.py:59> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=207, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=208] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=208] Local address: 172.17.0.3, port 50058 INFO asyncssh:logging.py:92 [conn=208] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=208] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=208] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=208, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=0] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 04:15:33 UTC 2023 INFO asyncssh:logging.py:92 [conn=208, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=1] Channel closed DEBUG infra2:Logger.py:156 /lib/platform-config/current/onl/bin/onlpdump -s INFO asyncssh:logging.py:92 [conn=208, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=2] Command: /lib/platform-config/current/onl/bin/onlpdump -s INFO asyncssh:logging.py:92 [conn=208, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=2] Channel closed DEBUG infra2:Logger.py:156 System Information: Product Name: TN48M-P-DN Serial Number: TN481P2TW20420113 MAC: 18:be:92:13:64:80 MAC Range: 64 Manufacturer: DNI Manufacture Date: 07/19/2021 10:11:29 Vendor: DNI Platform Name: 88F7040/88F6820 Device Version: 2 Label Revision: D1 Country Code: TW Diag Version: V1.0.0 ONIE Version: 2020.11-V01 INFO asyncssh:logging.py:92 [conn=208, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=208, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=4] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=208, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=208, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=208, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=6] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=208, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=208, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=7] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=208, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=8] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=208, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=208, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=9] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 type bridge ageing_time 3000 INFO asyncssh:logging.py:92 [conn=208, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=10] Command: ip link set dev br0 type bridge ageing_time 3000 INFO asyncssh:logging.py:92 [conn=208, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=208, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=11] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp33 vid 5 pvid && bridge vlan add dev swp33 vid 33 && bridge vlan add dev swp33 vid 20 INFO asyncssh:logging.py:92 [conn=208, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=12] Command: bridge vlan add dev swp33 vid 5 pvid && bridge vlan add dev swp33 vid 33 && bridge vlan add dev swp33 vid 20 INFO asyncssh:logging.py:92 [conn=208, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=208, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=13] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp34 vid 5 pvid && bridge vlan add dev swp34 vid 33 && bridge vlan add dev swp34 vid 20 INFO asyncssh:logging.py:92 [conn=208, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=14] Command: bridge vlan add dev swp34 vid 5 pvid && bridge vlan add dev swp34 vid 33 && bridge vlan add dev swp34 vid 20 INFO asyncssh:logging.py:92 [conn=208, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=208, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=15] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp35 vid 5 pvid && bridge vlan add dev swp35 vid 33 && bridge vlan add dev swp35 vid 20 INFO asyncssh:logging.py:92 [conn=208, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=16] Command: bridge vlan add dev swp35 vid 5 pvid && bridge vlan add dev swp35 vid 33 && bridge vlan add dev swp35 vid 20 INFO asyncssh:logging.py:92 [conn=208, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=208, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=17] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp36 vid 5 pvid && bridge vlan add dev swp36 vid 33 && bridge vlan add dev swp36 vid 20 INFO asyncssh:logging.py:92 [conn=208, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=18] Command: bridge vlan add dev swp36 vid 5 pvid && bridge vlan add dev swp36 vid 33 && bridge vlan add dev swp36 vid 20 INFO asyncssh:logging.py:92 [conn=208, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic with VLAN ID: 5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f7346980>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic with VLAN ID: 5 SIP-DIP N/A Tx 164903 Rx 164903 Loss 0.000 INFO asyncssh:logging.py:92 [conn=208, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=19] Channel closed DEBUG infra2:Logger.py:156 bridge fdb show dev swp33 | grep 'vlan 5' | wc -l INFO asyncssh:logging.py:92 [conn=208, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=20] Command: bridge fdb show dev swp33 | grep 'vlan 5' | wc -l INFO asyncssh:logging.py:92 [conn=208, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=20] Channel closed DEBUG infra2:Logger.py:156 31444 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: traffic with VLAN ID: 5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic with VLAN ID: 33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f6fb96c0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic with VLAN ID: 33 SIP-DIP N/A Tx 165458 Rx 165458 Loss 0.000 INFO asyncssh:logging.py:92 [conn=208, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=21] Channel closed DEBUG infra2:Logger.py:156 bridge fdb show dev swp33 | grep 'vlan 33' | wc -l INFO asyncssh:logging.py:92 [conn=208, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=22] Command: bridge fdb show dev swp33 | grep 'vlan 33' | wc -l INFO asyncssh:logging.py:92 [conn=208, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=22] Channel closed DEBUG infra2:Logger.py:156 31454 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: traffic with VLAN ID: 33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for traffic with VLAN ID: 20 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f7445ae0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI traffic with VLAN ID: 20 SIP-DIP N/A Tx 165175 Rx 165175 Loss 0.000 INFO asyncssh:logging.py:92 [conn=208, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=23] Channel closed DEBUG infra2:Logger.py:156 bridge fdb show dev swp33 | grep 'vlan 20' | wc -l INFO asyncssh:logging.py:92 [conn=208, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=24] Command: bridge fdb show dev swp33 | grep 'vlan 20' | wc -l INFO asyncssh:logging.py:92 [conn=208, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=24] Channel closed DEBUG infra2:Logger.py:156 31450 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Removing Traffic Items from the device: ixia INFO DENT:Logger.py:84 [Ixia Traffic Generator] TI to be removed: traffic with VLAN ID: 20 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'clear_traffic', 'rc': 0, 'result': ''}}] -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_with_increment_macs from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_increment_mac.py INFO asyncssh:logging.py:92 [conn=208, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=25] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=208, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=26] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=26] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 04:22:31 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=208, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=27] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=208, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=28] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=208, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=28] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":214,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=208, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=29] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=208, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=30] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=208, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=30] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=208, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=31] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=208, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=208, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=208, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=208, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=208, chan=32] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 04:22:32 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] | |||
| Passed | functional/vlan/test_vlan_priority.py::test_vlan_priority_tag | 166.03 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_priority_tag">Starting testcase:test_vlan_priority_tag from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_priority.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-12644' coro=<test_vlan_priority_tag() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_priority.py:39> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=208, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=209] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=209] Local address: 172.17.0.3, port 46008 INFO asyncssh:logging.py:92 [conn=209] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=209] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=209] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=209, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=0] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 04:22:33 UTC 2023 INFO asyncssh:logging.py:92 [conn=209, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=209, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=209, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=209, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=209, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=209, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=209, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=209, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=209, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=209, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=7] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp33 vid 5 pvid INFO asyncssh:logging.py:92 [conn=209, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=8] Command: bridge vlan add dev swp33 vid 5 pvid INFO asyncssh:logging.py:92 [conn=209, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=209, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=9] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp34 vid 5 pvid INFO asyncssh:logging.py:92 [conn=209, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=10] Command: bridge vlan add dev swp34 vid 5 pvid INFO asyncssh:logging.py:92 [conn=209, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] '10.36.118.199:2:7' INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN priority INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f7060220>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI Traffic with VLAN priority SIP-DIP N/A Tx 2455870 Rx 2455870 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Traffic Item Traffic with VLAN priority Tx 2455870 Rx 2455870 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Egress Tracking 1: Ethernet:Outer VLAN ID (4 bits) at offset 124 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Egress Tracking 2: Ethernet:Outer VLAN Priority (3 bits) at offset 112 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Vlan Id: 5, Vlan Priority: 6 | Rx 2455870 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_priority_tag from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_priority.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=209, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=11] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=209, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=12] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=12] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 04:25:18 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=209, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=13] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=209, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=14] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=14] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 04:25:18 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=209, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=15] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=209, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=16] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=209, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=16] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":215,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=209, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=209, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=17] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=209, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=209, chan=18] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=209, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=209, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=209, chan=18] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/vlan/test_vlan_switching_modes.py::test_vlan_switching_vlan_modes_via_cli | 383.39 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_switching_vlan_modes_via_cli">Starting testcase:test_vlan_switching_vlan_modes_via_cli from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_switching_modes.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-12672' coro=<test_vlan_switching_vlan_modes_via_cli() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_switching_modes.py:56> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=209, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=210] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=210] Local address: 172.17.0.3, port 47658 INFO asyncssh:logging.py:92 [conn=210] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=210] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=210] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=210, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=0] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 04:25:19 UTC 2023 INFO asyncssh:logging.py:92 [conn=210, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=210, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=210, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=210, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=210, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=210, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=210, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=210, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=210, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=210, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=7] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp33 vid 2 && bridge vlan add dev swp33 vid 3 untagged && bridge vlan add dev swp33 vid 4 pvid untagged INFO asyncssh:logging.py:92 [conn=210, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=8] Command: bridge vlan add dev swp33 vid 2 && bridge vlan add dev swp33 vid 3 untagged && bridge vlan add dev swp33 vid 4 pvid untagged INFO asyncssh:logging.py:92 [conn=210, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=210, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=9] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp34 vid 2 INFO asyncssh:logging.py:92 [conn=210, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=10] Command: bridge vlan add dev swp34 vid 2 INFO asyncssh:logging.py:92 [conn=210, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=210, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=11] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp35 vid 3 pvid untagged INFO asyncssh:logging.py:92 [conn=210, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=12] Command: bridge vlan add dev swp35 vid 3 pvid untagged INFO asyncssh:logging.py:92 [conn=210, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=210, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=13] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp36 vid 4 pvid untagged INFO asyncssh:logging.py:92 [conn=210, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=14] Command: bridge vlan add dev swp36 vid 4 pvid untagged INFO asyncssh:logging.py:92 [conn=210, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 2 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 3 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 4 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Untagged traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f7346b90>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 231 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 231 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 231 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI Traffic with VLAN ID: 2 SIP-DIP N/A Tx 231 Rx 231 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI Traffic with VLAN ID: 2 SIP-DIP N/A Tx 231 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI Traffic with VLAN ID: 2 SIP-DIP N/A Tx 231 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI Traffic with VLAN ID: 3 SIP-DIP N/A Tx 231 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI Traffic with VLAN ID: 3 SIP-DIP N/A Tx 231 Rx 231 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI Traffic with VLAN ID: 3 SIP-DIP N/A Tx 231 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI Traffic with VLAN ID: 4 SIP-DIP N/A Tx 231 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI Traffic with VLAN ID: 4 SIP-DIP N/A Tx 231 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI Traffic with VLAN ID: 4 SIP-DIP N/A Tx 231 Rx 231 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI Untagged traffic SIP-DIP N/A Tx 231 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI Untagged traffic SIP-DIP N/A Tx 231 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI Untagged traffic SIP-DIP N/A Tx 231 Rx 231 Loss 0.000 INFO asyncssh:logging.py:92 [conn=210, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=15] Channel closed DEBUG infra2:Logger.py:156 bridge vlan delete dev swp33 vid 4 INFO asyncssh:logging.py:92 [conn=210, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=16] Command: bridge vlan delete dev swp33 vid 4 INFO asyncssh:logging.py:92 [conn=210, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=16] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=210, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=17] Channel closed DEBUG infra2:Logger.py:156 bridge vlan delete dev swp34 vid 2 INFO asyncssh:logging.py:92 [conn=210, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=18] Command: bridge vlan delete dev swp34 vid 2 INFO asyncssh:logging.py:92 [conn=210, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=18] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=210, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=19] Channel closed DEBUG infra2:Logger.py:156 bridge vlan delete dev swp35 vid 3 INFO asyncssh:logging.py:92 [conn=210, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=20] Command: bridge vlan delete dev swp35 vid 3 INFO asyncssh:logging.py:92 [conn=210, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=20] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=210, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=21] Channel closed DEBUG infra2:Logger.py:156 bridge vlan delete dev swp36 vid 4 INFO asyncssh:logging.py:92 [conn=210, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=22] Command: bridge vlan delete dev swp36 vid 4 INFO asyncssh:logging.py:92 [conn=210, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=22] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=210, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=23] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=23] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=23] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=23] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp33 vid 5 pvid untagged && bridge vlan add dev swp33 vid 101 && bridge vlan add dev swp33 vid 4094 untagged INFO asyncssh:logging.py:92 [conn=210, chan=24] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=24] Command: bridge vlan add dev swp33 vid 5 pvid untagged && bridge vlan add dev swp33 vid 101 && bridge vlan add dev swp33 vid 4094 untagged INFO asyncssh:logging.py:92 [conn=210, chan=24] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=24] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=24] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=210, chan=25] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=25] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=25] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=25] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=25] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp34 vid 5 pvid untagged INFO asyncssh:logging.py:92 [conn=210, chan=26] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=26] Command: bridge vlan add dev swp34 vid 5 pvid untagged INFO asyncssh:logging.py:92 [conn=210, chan=26] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=26] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=26] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=210, chan=27] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=27] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=27] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=27] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=27] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp35 vid 101 pvid untagged INFO asyncssh:logging.py:92 [conn=210, chan=28] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=28] Command: bridge vlan add dev swp35 vid 101 pvid untagged INFO asyncssh:logging.py:92 [conn=210, chan=28] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=28] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=28] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=210, chan=29] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=29] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=29] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=29] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=29] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp36 vid 4094 pvid untagged INFO asyncssh:logging.py:92 [conn=210, chan=30] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=30] Command: bridge vlan add dev swp36 vid 4094 pvid untagged INFO asyncssh:logging.py:92 [conn=210, chan=30] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=30] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=30] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for New configuration traffic with VLAN ID: 0 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for New configuration traffic with VLAN ID: 5 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for New configuration traffic with VLAN ID: 101 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for New configuration traffic with VLAN ID: 500 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for New configuration traffic with VLAN ID: 4094 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for New configuration untagged traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f6dc2380>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 234 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 234 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 233 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI Traffic with VLAN ID: 2 SIP-DIP N/A Tx 234 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI Traffic with VLAN ID: 2 SIP-DIP N/A Tx 234 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI Traffic with VLAN ID: 2 SIP-DIP N/A Tx 233 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI Traffic with VLAN ID: 3 SIP-DIP N/A Tx 234 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI Traffic with VLAN ID: 3 SIP-DIP N/A Tx 234 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI Traffic with VLAN ID: 3 SIP-DIP N/A Tx 233 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI Traffic with VLAN ID: 4 SIP-DIP N/A Tx 234 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI Traffic with VLAN ID: 4 SIP-DIP N/A Tx 234 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI Traffic with VLAN ID: 4 SIP-DIP N/A Tx 233 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI Untagged traffic SIP-DIP N/A Tx 234 Rx 234 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI Untagged traffic SIP-DIP N/A Tx 234 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI Untagged traffic SIP-DIP N/A Tx 233 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI New configuration traffic with VLAN ID: 0 SIP-DIP N/A Tx 234 Rx 234 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI New configuration traffic with VLAN ID: 0 SIP-DIP N/A Tx 234 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI New configuration traffic with VLAN ID: 0 SIP-DIP N/A Tx 233 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI New configuration traffic with VLAN ID: 5 SIP-DIP N/A Tx 234 Rx 234 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI New configuration traffic with VLAN ID: 5 SIP-DIP N/A Tx 234 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI New configuration traffic with VLAN ID: 5 SIP-DIP N/A Tx 233 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI New configuration traffic with VLAN ID: 101 SIP-DIP N/A Tx 234 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI New configuration traffic with VLAN ID: 101 SIP-DIP N/A Tx 234 Rx 234 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI New configuration traffic with VLAN ID: 101 SIP-DIP N/A Tx 233 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI New configuration traffic with VLAN ID: 500 SIP-DIP N/A Tx 234 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI New configuration traffic with VLAN ID: 500 SIP-DIP N/A Tx 234 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI New configuration traffic with VLAN ID: 500 SIP-DIP N/A Tx 233 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI New configuration traffic with VLAN ID: 4094 SIP-DIP N/A Tx 234 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI New configuration traffic with VLAN ID: 4094 SIP-DIP N/A Tx 234 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI New configuration traffic with VLAN ID: 4094 SIP-DIP N/A Tx 233 Rx 233 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI New configuration untagged traffic SIP-DIP N/A Tx 234 Rx 234 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI New configuration untagged traffic SIP-DIP N/A Tx 234 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI New configuration untagged traffic SIP-DIP N/A Tx 233 Rx 0 Loss 100.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_switching_vlan_modes_via_cli from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_switching_modes.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=210, chan=31] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=31] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=31] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=31] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=31] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=210, chan=32] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=32] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=32] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=32] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=32] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 04:31:41 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=210, chan=33] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=33] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=33] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=33] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=33] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=210, chan=34] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=34] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=34] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=34] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=34] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 04:31:42 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=210, chan=35] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=35] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=35] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=35] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=35] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=210, chan=36] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=36] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=210, chan=36] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=36] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=36] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":216,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=210, chan=37] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=37] Command: date INFO asyncssh:logging.py:92 [conn=210, chan=37] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=37] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=37] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=210, chan=38] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=210, chan=38] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=210, chan=38] Received exit status 0 INFO asyncssh:logging.py:92 [conn=210, chan=38] Received channel close INFO asyncssh:logging.py:92 [conn=210, chan=38] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/vlan/test_vlan_tagged_ports.py::test_vlan_tagged_ports_with_[broadcast] | 225.51 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_tagged_ports_with_[broadcast]">Starting testcase:test_vlan_tagged_ports_with_[broadcast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_tagged_ports.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-12720' coro=<test_vlan_tagged_ports_with_() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_tagged_ports.py:51> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=210, chan=39] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=211] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=211] Local address: 172.17.0.3, port 35082 INFO asyncssh:logging.py:92 [conn=211] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=211] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=211] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=211, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=0] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 04:31:42 UTC 2023 INFO asyncssh:logging.py:92 [conn=211, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=211, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=211, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=211, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=211, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=211, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=211, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=211, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=211, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=211, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=7] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp33 vid 22 && bridge vlan add dev swp33 vid 23 && bridge vlan add dev swp33 vid 24 pvid INFO asyncssh:logging.py:92 [conn=211, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=8] Command: bridge vlan add dev swp33 vid 22 && bridge vlan add dev swp33 vid 23 && bridge vlan add dev swp33 vid 24 pvid INFO asyncssh:logging.py:92 [conn=211, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=211, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=9] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp34 vid 22 && bridge vlan add dev swp34 vid 23 && bridge vlan add dev swp34 vid 24 pvid INFO asyncssh:logging.py:92 [conn=211, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=10] Command: bridge vlan add dev swp34 vid 22 && bridge vlan add dev swp34 vid 23 && bridge vlan add dev swp34 vid 24 pvid INFO asyncssh:logging.py:92 [conn=211, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=211, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=11] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp35 vid 22 && bridge vlan add dev swp35 vid 23 && bridge vlan add dev swp35 vid 24 pvid INFO asyncssh:logging.py:92 [conn=211, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=12] Command: bridge vlan add dev swp35 vid 22 && bridge vlan add dev swp35 vid 23 && bridge vlan add dev swp35 vid 24 pvid INFO asyncssh:logging.py:92 [conn=211, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=211, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=13] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp36 vid 22 && bridge vlan add dev swp36 vid 23 && bridge vlan add dev swp36 vid 24 pvid INFO asyncssh:logging.py:92 [conn=211, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=14] Command: bridge vlan add dev swp36 vid 22 && bridge vlan add dev swp36 vid 23 && bridge vlan add dev swp36 vid 24 pvid INFO asyncssh:logging.py:92 [conn=211, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 22 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 23 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Untagged traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f6f801f0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 230 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 230 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 230 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI Traffic with VLAN ID: 22 SIP-DIP N/A Tx 230 Rx 230 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI Traffic with VLAN ID: 22 SIP-DIP N/A Tx 230 Rx 230 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI Traffic with VLAN ID: 22 SIP-DIP N/A Tx 230 Rx 230 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI Traffic with VLAN ID: 23 SIP-DIP N/A Tx 230 Rx 230 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI Traffic with VLAN ID: 23 SIP-DIP N/A Tx 230 Rx 230 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI Traffic with VLAN ID: 23 SIP-DIP N/A Tx 230 Rx 230 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI Traffic with VLAN ID: 24 SIP-DIP N/A Tx 230 Rx 230 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI Traffic with VLAN ID: 24 SIP-DIP N/A Tx 230 Rx 230 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI Traffic with VLAN ID: 24 SIP-DIP N/A Tx 230 Rx 230 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI Untagged traffic SIP-DIP N/A Tx 230 Rx 230 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI Untagged traffic SIP-DIP N/A Tx 230 Rx 230 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI Untagged traffic SIP-DIP N/A Tx 230 Rx 230 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_tagged_ports_with_[broadcast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_tagged_ports.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=211, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=15] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=211, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=16] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 04:35:27 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=211, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=17] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=211, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=18] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 04:35:27 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=211, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=211, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=211, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=20] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":217,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=211, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=211, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=211, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=211, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=211, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=211, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=211, chan=22] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/vlan/test_vlan_tagged_ports.py::test_vlan_tagged_ports_with_[multicast] | 224.65 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_tagged_ports_with_[multicast]">Starting testcase:test_vlan_tagged_ports_with_[multicast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_tagged_ports.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-12752' coro=<test_vlan_tagged_ports_with_() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_tagged_ports.py:51> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=211, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=212] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=212] Local address: 172.17.0.3, port 41658 INFO asyncssh:logging.py:92 [conn=212] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=212] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=212] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=212, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=0] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 04:35:28 UTC 2023 INFO asyncssh:logging.py:92 [conn=212, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=212, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=212, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=212, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=212, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=212, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=212, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=212, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=212, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=212, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=7] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp33 vid 22 && bridge vlan add dev swp33 vid 23 && bridge vlan add dev swp33 vid 24 pvid INFO asyncssh:logging.py:92 [conn=212, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=8] Command: bridge vlan add dev swp33 vid 22 && bridge vlan add dev swp33 vid 23 && bridge vlan add dev swp33 vid 24 pvid INFO asyncssh:logging.py:92 [conn=212, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=212, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=9] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp34 vid 22 && bridge vlan add dev swp34 vid 23 && bridge vlan add dev swp34 vid 24 pvid INFO asyncssh:logging.py:92 [conn=212, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=10] Command: bridge vlan add dev swp34 vid 22 && bridge vlan add dev swp34 vid 23 && bridge vlan add dev swp34 vid 24 pvid INFO asyncssh:logging.py:92 [conn=212, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=212, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=11] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp35 vid 22 && bridge vlan add dev swp35 vid 23 && bridge vlan add dev swp35 vid 24 pvid INFO asyncssh:logging.py:92 [conn=212, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=12] Command: bridge vlan add dev swp35 vid 22 && bridge vlan add dev swp35 vid 23 && bridge vlan add dev swp35 vid 24 pvid INFO asyncssh:logging.py:92 [conn=212, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=212, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=13] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp36 vid 22 && bridge vlan add dev swp36 vid 23 && bridge vlan add dev swp36 vid 24 pvid INFO asyncssh:logging.py:92 [conn=212, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=14] Command: bridge vlan add dev swp36 vid 22 && bridge vlan add dev swp36 vid 23 && bridge vlan add dev swp36 vid 24 pvid INFO asyncssh:logging.py:92 [conn=212, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 1 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 22 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 23 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Traffic with VLAN ID: 24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Untagged traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f701ad10>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 23 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 23 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI Traffic with VLAN ID: 1 SIP-DIP N/A Tx 23 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI Traffic with VLAN ID: 22 SIP-DIP N/A Tx 23 Rx 23 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI Traffic with VLAN ID: 22 SIP-DIP N/A Tx 23 Rx 23 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI Traffic with VLAN ID: 22 SIP-DIP N/A Tx 23 Rx 23 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI Traffic with VLAN ID: 23 SIP-DIP N/A Tx 23 Rx 23 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI Traffic with VLAN ID: 23 SIP-DIP N/A Tx 23 Rx 23 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI Traffic with VLAN ID: 23 SIP-DIP N/A Tx 23 Rx 23 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI Traffic with VLAN ID: 24 SIP-DIP N/A Tx 23 Rx 23 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI Traffic with VLAN ID: 24 SIP-DIP N/A Tx 23 Rx 23 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI Traffic with VLAN ID: 24 SIP-DIP N/A Tx 23 Rx 23 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI Untagged traffic SIP-DIP N/A Tx 23 Rx 23 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI Untagged traffic SIP-DIP N/A Tx 23 Rx 23 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI Untagged traffic SIP-DIP N/A Tx 23 Rx 23 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_tagged_ports_with_[multicast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_tagged_ports.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=212, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=15] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=212, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=16] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 04:39:11 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=212, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=17] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=212, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=18] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 04:39:12 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=212, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=212, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=212, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=20] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":218,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=212, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=212, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=212, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=212, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=212, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=212, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=212, chan=22] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/vlan/test_vlan_tagged_ports.py::test_vlan_tagged_ports_with_[unicast] | 284.15 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_tagged_ports_with_[unicast]">Starting testcase:test_vlan_tagged_ports_with_[unicast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_tagged_ports.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-12784' coro=<test_vlan_tagged_ports_with_() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_tagged_ports.py:51> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=212, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=213] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=213] Local address: 172.17.0.3, port 47156 INFO asyncssh:logging.py:92 [conn=213] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=213] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=213] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=213, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=0] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 04:39:12 UTC 2023 INFO asyncssh:logging.py:92 [conn=213, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=213, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=213, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=213, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=213, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=213, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=213, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=213, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=213, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=213, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=7] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp33 vid 22 && bridge vlan add dev swp33 vid 23 && bridge vlan add dev swp33 vid 24 pvid INFO asyncssh:logging.py:92 [conn=213, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=8] Command: bridge vlan add dev swp33 vid 22 && bridge vlan add dev swp33 vid 23 && bridge vlan add dev swp33 vid 24 pvid INFO asyncssh:logging.py:92 [conn=213, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=213, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=9] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp34 vid 22 && bridge vlan add dev swp34 vid 23 && bridge vlan add dev swp34 vid 24 pvid INFO asyncssh:logging.py:92 [conn=213, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=10] Command: bridge vlan add dev swp34 vid 22 && bridge vlan add dev swp34 vid 23 && bridge vlan add dev swp34 vid 24 pvid INFO asyncssh:logging.py:92 [conn=213, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=213, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=11] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp35 vid 22 && bridge vlan add dev swp35 vid 23 && bridge vlan add dev swp35 vid 24 pvid INFO asyncssh:logging.py:92 [conn=213, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=12] Command: bridge vlan add dev swp35 vid 22 && bridge vlan add dev swp35 vid 23 && bridge vlan add dev swp35 vid 24 pvid INFO asyncssh:logging.py:92 [conn=213, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=213, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=13] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp36 vid 22 && bridge vlan add dev swp36 vid 23 && bridge vlan add dev swp36 vid 24 pvid INFO asyncssh:logging.py:92 [conn=213, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=14] Command: bridge vlan add dev swp36 vid 22 && bridge vlan add dev swp36 vid 23 && bridge vlan add dev swp36 vid 24 pvid INFO asyncssh:logging.py:92 [conn=213, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for VLAN X from 02:00:00:00:00:01 to --> 02:00:00:00:00:02 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for VLAN X from 02:00:00:00:00:01 to --> 02:00:00:00:00:03 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for VLAN X from 02:00:00:00:00:01 to --> 02:00:00:00:00:04 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for VLAN 1 from 02:00:00:00:00:01 to --> 02:00:00:00:00:02 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for VLAN 1 from 02:00:00:00:00:01 to --> 02:00:00:00:00:03 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for VLAN 1 from 02:00:00:00:00:01 to --> 02:00:00:00:00:04 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for VLAN 22 from 02:00:00:00:00:01 to --> 02:00:00:00:00:02 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for VLAN 22 from 02:00:00:00:00:01 to --> 02:00:00:00:00:03 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for VLAN 22 from 02:00:00:00:00:01 to --> 02:00:00:00:00:04 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for VLAN 23 from 02:00:00:00:00:01 to --> 02:00:00:00:00:02 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for VLAN 23 from 02:00:00:00:00:01 to --> 02:00:00:00:00:03 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for VLAN 23 from 02:00:00:00:00:01 to --> 02:00:00:00:00:04 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for VLAN 24 from 02:00:00:00:00:01 to --> 02:00:00:00:00:02 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for VLAN 24 from 02:00:00:00:00:01 to --> 02:00:00:00:00:03 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for VLAN 24 from 02:00:00:00:00:01 to --> 02:00:00:00:00:04 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for From 10.36.118.199:2:6 -> 10.36.118.199:2:5: VLAN : 1 learning INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for From 10.36.118.199:2:7 -> 10.36.118.199:2:5: VLAN : 1 learning INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for From 10.36.118.199:2:8 -> 10.36.118.199:2:5: VLAN : 1 learning INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for From 10.36.118.199:2:6 -> 10.36.118.199:2:5: VLAN : 22 learning INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for From 10.36.118.199:2:7 -> 10.36.118.199:2:5: VLAN : 22 learning INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for From 10.36.118.199:2:8 -> 10.36.118.199:2:5: VLAN : 22 learning INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for From 10.36.118.199:2:6 -> 10.36.118.199:2:5: VLAN : 23 learning INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for From 10.36.118.199:2:7 -> 10.36.118.199:2:5: VLAN : 23 learning INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for From 10.36.118.199:2:8 -> 10.36.118.199:2:5: VLAN : 23 learning INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for From 10.36.118.199:2:6 -> 10.36.118.199:2:5: VLAN : 24 learning INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for From 10.36.118.199:2:7 -> 10.36.118.199:2:5: VLAN : 24 learning INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp35 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for From 10.36.118.199:2:8 -> 10.36.118.199:2:5: VLAN : 24 learning INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp36 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f6dc3af0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI VLAN X from 02:00:00:00:00:01 to --> 02:00:00:00:00:02 SIP-DIP N/A Tx 307 Rx 307 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI VLAN X from 02:00:00:00:00:01 to --> 02:00:00:00:00:03 SIP-DIP N/A Tx 307 Rx 307 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI VLAN X from 02:00:00:00:00:01 to --> 02:00:00:00:00:04 SIP-DIP N/A Tx 307 Rx 307 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI VLAN 1 from 02:00:00:00:00:01 to --> 02:00:00:00:00:02 SIP-DIP N/A Tx 307 Rx 307 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI VLAN 1 from 02:00:00:00:00:01 to --> 02:00:00:00:00:03 SIP-DIP N/A Tx 307 Rx 307 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI VLAN 1 from 02:00:00:00:00:01 to --> 02:00:00:00:00:04 SIP-DIP N/A Tx 307 Rx 307 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI VLAN 22 from 02:00:00:00:00:01 to --> 02:00:00:00:00:02 SIP-DIP N/A Tx 307 Rx 307 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI VLAN 22 from 02:00:00:00:00:01 to --> 02:00:00:00:00:03 SIP-DIP N/A Tx 307 Rx 307 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI VLAN 22 from 02:00:00:00:00:01 to --> 02:00:00:00:00:04 SIP-DIP N/A Tx 307 Rx 307 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI VLAN 23 from 02:00:00:00:00:01 to --> 02:00:00:00:00:02 SIP-DIP N/A Tx 307 Rx 307 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI VLAN 23 from 02:00:00:00:00:01 to --> 02:00:00:00:00:03 SIP-DIP N/A Tx 307 Rx 307 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI VLAN 23 from 02:00:00:00:00:01 to --> 02:00:00:00:00:04 SIP-DIP N/A Tx 307 Rx 307 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI VLAN 24 from 02:00:00:00:00:01 to --> 02:00:00:00:00:02 SIP-DIP N/A Tx 307 Rx 307 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI VLAN 24 from 02:00:00:00:00:01 to --> 02:00:00:00:00:03 SIP-DIP N/A Tx 307 Rx 307 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI VLAN 24 from 02:00:00:00:00:01 to --> 02:00:00:00:00:04 SIP-DIP N/A Tx 307 Rx 307 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI From 10.36.118.199:2:6 -> 10.36.118.199:2:5: VLAN : 1 learning SIP-DIP N/A Tx 307 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:5 TI From 10.36.118.199:2:7 -> 10.36.118.199:2:5: VLAN : 1 learning SIP-DIP N/A Tx 307 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:8 Rx 10.36.118.199:2:5 TI From 10.36.118.199:2:8 -> 10.36.118.199:2:5: VLAN : 1 learning SIP-DIP N/A Tx 307 Rx 0 Loss 100.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI From 10.36.118.199:2:6 -> 10.36.118.199:2:5: VLAN : 22 learning SIP-DIP N/A Tx 307 Rx 307 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:5 TI From 10.36.118.199:2:7 -> 10.36.118.199:2:5: VLAN : 22 learning SIP-DIP N/A Tx 307 Rx 307 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:8 Rx 10.36.118.199:2:5 TI From 10.36.118.199:2:8 -> 10.36.118.199:2:5: VLAN : 22 learning SIP-DIP N/A Tx 307 Rx 307 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI From 10.36.118.199:2:6 -> 10.36.118.199:2:5: VLAN : 23 learning SIP-DIP N/A Tx 307 Rx 307 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:5 TI From 10.36.118.199:2:7 -> 10.36.118.199:2:5: VLAN : 23 learning SIP-DIP N/A Tx 307 Rx 307 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:8 Rx 10.36.118.199:2:5 TI From 10.36.118.199:2:8 -> 10.36.118.199:2:5: VLAN : 23 learning SIP-DIP N/A Tx 307 Rx 307 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI From 10.36.118.199:2:6 -> 10.36.118.199:2:5: VLAN : 24 learning SIP-DIP N/A Tx 307 Rx 307 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:7 Rx 10.36.118.199:2:5 TI From 10.36.118.199:2:7 -> 10.36.118.199:2:5: VLAN : 24 learning SIP-DIP N/A Tx 307 Rx 307 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:8 Rx 10.36.118.199:2:5 TI From 10.36.118.199:2:8 -> 10.36.118.199:2:5: VLAN : 24 learning SIP-DIP N/A Tx 307 Rx 307 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_tagged_ports_with_[unicast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_tagged_ports.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=213, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=15] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=213, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=16] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 04:43:52 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=213, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=17] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=213, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=18] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 04:43:56 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=213, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=213, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=213, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=20] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":219,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=213, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=213, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=213, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=213, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=213, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=213, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=213, chan=22] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/vlan/test_vlan_tagged_size.py::test_vlan_tagged_packet_size | 183.50 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_tagged_packet_size">Starting testcase:test_vlan_tagged_packet_size from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_tagged_size.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-12816' coro=<test_vlan_tagged_packet_size() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_tagged_size.py:42> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=213, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=214] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=214] Local address: 172.17.0.3, port 35462 INFO asyncssh:logging.py:92 [conn=214] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=214] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=214] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=214, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=0] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 04:43:57 UTC 2023 INFO asyncssh:logging.py:92 [conn=214, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 1 INFO asyncssh:logging.py:92 [conn=214, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 1 INFO asyncssh:logging.py:92 [conn=214, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=214, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=214, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=214, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=214, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=214, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=214, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=214, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=7] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp33 vid 1 pvid untagged INFO asyncssh:logging.py:92 [conn=214, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=8] Command: bridge vlan add dev swp33 vid 1 pvid untagged INFO asyncssh:logging.py:92 [conn=214, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=214, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=9] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp34 vid 1 pvid untagged INFO asyncssh:logging.py:92 [conn=214, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=10] Command: bridge vlan add dev swp34 vid 1 pvid untagged INFO asyncssh:logging.py:92 [conn=214, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=214, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=11] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp35 vid 1 pvid untagged INFO asyncssh:logging.py:92 [conn=214, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=12] Command: bridge vlan add dev swp35 vid 1 pvid untagged INFO asyncssh:logging.py:92 [conn=214, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=214, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=13] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp36 vid 1 pvid INFO asyncssh:logging.py:92 [conn=214, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=14] Command: bridge vlan add dev swp36 vid 1 pvid INFO asyncssh:logging.py:92 [conn=214, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Untagged traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f6dc1210>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI Untagged traffic SIP-DIP N/A Tx 230 Rx 230 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI Untagged traffic SIP-DIP N/A Tx 230 Rx 230 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI Untagged traffic SIP-DIP N/A Tx 230 Rx 230 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_tagged_packet_size from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_tagged_size.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=214, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=15] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=214, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=16] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 04:46:59 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=214, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=17] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=214, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=18] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 04:46:59 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=214, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=214, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=214, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=20] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":220,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=214, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=214, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=214, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=214, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=214, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=214, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=214, chan=22] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/vlan/test_vlan_untagged_ports.py::test_vlan_untagged_ports_with_[broadcast] | 187.56 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_untagged_ports_with_[broadcast]">Starting testcase:test_vlan_untagged_ports_with_[broadcast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_untagged_ports.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-12848' coro=<test_vlan_untagged_ports_with_() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_untagged_ports.py:39> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=214, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=215] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=215] Local address: 172.17.0.3, port 53764 INFO asyncssh:logging.py:92 [conn=215] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=215] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=215] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=215, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=0] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 04:47:00 UTC 2023 INFO asyncssh:logging.py:92 [conn=215, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=215, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=215, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=215, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=215, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=215, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=215, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=215, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=215, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=215, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=7] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp33 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=215, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=8] Command: bridge vlan add dev swp33 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=215, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=215, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=9] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp34 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=215, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=10] Command: bridge vlan add dev swp34 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=215, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=215, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=11] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp35 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=215, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=12] Command: bridge vlan add dev swp35 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=215, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=215, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=13] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp36 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=215, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=14] Command: bridge vlan add dev swp36 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=215, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Untagged broadcast traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f7345900>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI Untagged broadcast traffic SIP-DIP N/A Tx 229 Rx 229 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI Untagged broadcast traffic SIP-DIP N/A Tx 229 Rx 229 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI Untagged broadcast traffic SIP-DIP N/A Tx 229 Rx 229 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_untagged_ports_with_[broadcast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_untagged_ports.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=215, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=15] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=215, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=16] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 04:50:07 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=215, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=17] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=215, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=18] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 04:50:07 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=215, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=215, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=215, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=20] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":221,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=215, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=215, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=215, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=215, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=215, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=215, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=215, chan=22] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/vlan/test_vlan_untagged_ports.py::test_vlan_untagged_ports_with_[multicast] | 184.67 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_untagged_ports_with_[multicast]">Starting testcase:test_vlan_untagged_ports_with_[multicast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_untagged_ports.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-12880' coro=<test_vlan_untagged_ports_with_() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_untagged_ports.py:39> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=215, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=216] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=216] Local address: 172.17.0.3, port 57688 INFO asyncssh:logging.py:92 [conn=216] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=216] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=216] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=216, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=0] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 04:50:08 UTC 2023 INFO asyncssh:logging.py:92 [conn=216, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=216, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=216, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=216, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=216, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=216, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=216, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=216, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=216, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=216, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=7] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp33 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=216, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=8] Command: bridge vlan add dev swp33 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=216, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=216, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=9] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp34 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=216, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=10] Command: bridge vlan add dev swp34 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=216, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=216, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=11] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp35 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=216, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=12] Command: bridge vlan add dev swp35 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=216, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=216, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=13] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp36 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=216, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=14] Command: bridge vlan add dev swp36 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=216, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Untagged multicast traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f6dc28f0>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI Untagged multicast traffic SIP-DIP N/A Tx 113 Rx 113 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:7 TI Untagged multicast traffic SIP-DIP N/A Tx 113 Rx 113 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:8 TI Untagged multicast traffic SIP-DIP N/A Tx 113 Rx 113 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_untagged_ports_with_[multicast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_untagged_ports.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=216, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=15] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=216, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=16] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 04:53:11 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=216, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=17] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=216, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=18] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 04:53:12 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=216, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=216, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=216, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=20] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":222,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=216, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=216, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=216, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=216, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=216, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=216, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=216, chan=22] Channel closed DEBUG infra2:Logger.py:156 | |||
| Passed | functional/vlan/test_vlan_untagged_ports.py::test_vlan_untagged_ports_with_[unicast] | 187.46 | |
|
-------------------------------Captured log setup------------------------------- INFO DENT.conftest:Logger.py:147 ================================================================= INFO DENT.conftest:Logger.py:147 <a href="#test_vlan_untagged_ports_with_[unicast]">Starting testcase:test_vlan_untagged_ports_with_[unicast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_untagged_ports.py </a> INFO DENT.conftest:Logger.py:147 ================================================================= ------------------------------Captured stdout call------------------------------ Task <Task pending name='Task-12912' coro=<test_vlan_untagged_ports_with_() running at /usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_untagged_ports.py:39> cb=[_run_until_complete_cb() at /usr/lib/python3.10/asyncio/base_events.py:184]> got Future <Future pending> attached to a different loop Connection made to 10.36.118.23 Authentication complete -------------------------------Captured log call-------------------------------- INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=216, chan=23] Requesting new SSH session INFO asyncssh:logging.py:92 Opening SSH connection to 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=217] Connected to SSH server at 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=217] Local address: 172.17.0.3, port 41028 INFO asyncssh:logging.py:92 [conn=217] Peer address: 10.36.118.23, port 22 INFO asyncssh:logging.py:92 [conn=217] Beginning auth for user root INFO asyncssh:logging.py:92 [conn=217] Auth for user root succeeded DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=217, chan=0] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=0] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=0] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=0] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=0] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 04:53:12 UTC 2023 INFO asyncssh:logging.py:92 [conn=217, chan=1] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=1] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=1] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=1] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=1] Channel closed DEBUG infra2:Logger.py:156 ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=217, chan=2] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=2] Command: ip link add br0 type bridge vlan_filtering 1 vlan_default_pvid 0 INFO asyncssh:logging.py:92 [conn=217, chan=2] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=2] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=2] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=217, chan=3] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=3] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=3] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=3] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=3] Channel closed DEBUG infra2:Logger.py:156 ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=217, chan=4] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=4] Command: ip link set dev br0 up INFO asyncssh:logging.py:92 [conn=217, chan=4] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=4] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=4] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=217, chan=5] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=5] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=5] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=5] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=5] Channel closed DEBUG infra2:Logger.py:156 ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=217, chan=6] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=6] Command: ip link set dev swp33 up master br0 && ip link set dev swp34 up master br0 && ip link set dev swp35 up master br0 && ip link set dev swp36 up master br0 INFO asyncssh:logging.py:92 [conn=217, chan=6] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=6] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=6] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=217, chan=7] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=7] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=7] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=7] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=7] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp33 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=217, chan=8] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=8] Command: bridge vlan add dev swp33 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=217, chan=8] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=8] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=8] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=217, chan=9] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=9] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=9] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=9] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=9] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp34 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=217, chan=10] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=10] Command: bridge vlan add dev swp34 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=217, chan=10] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=10] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=10] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=217, chan=11] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=11] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=11] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=11] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=11] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp35 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=217, chan=12] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=12] Command: bridge vlan add dev swp35 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=217, chan=12] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=12] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=12] Channel closed DEBUG infra2:Logger.py:156 INFO asyncssh:logging.py:92 [conn=217, chan=13] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=13] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=13] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=13] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=13] Channel closed DEBUG infra2:Logger.py:156 bridge vlan add dev swp36 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=217, chan=14] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=14] Command: bridge vlan add dev swp36 vid 2 pvid untagged INFO asyncssh:logging.py:92 [conn=217, chan=14] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=14] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=14] Channel closed DEBUG infra2:Logger.py:156 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connected to Linux Gateway Session ID: 105 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Reserving test ports, and may take a minute... INFO DENT:Logger.py:84 [Ixia Traffic Generator] Connection to Ixia REST API Server Established INFO DENT:Logger.py:84 [Ixia Traffic Generator] Assigning ports INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:5 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:5 swp swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:5_100.1.1.2/24', 'count': 1, 'ip': '100.1.1.2', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:6 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:6 swp swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:6_100.1.1.3/24', 'count': 1, 'ip': '100.1.1.3', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:7 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:7 swp swp35 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:7_100.1.1.4/24', 'count': 1, 'ip': '100.1.1.4', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] Changing port: 10.36.118.199:2:8 media mode copper INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding interface on ixia port 10.36.118.199:2:8 swp swp36 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding device {'name': '10.36.118.199:2:8_100.1.1.5/24', 'count': 1, 'ip': '100.1.1.5', 'gw': '100.1.1.6', 'plen': 24, 'vlan': None, 'version': 'ipv4'} INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'connect', 'rc': 0, 'result': 'Connected!'}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Untagged unicast stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp33 to swp34 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Setting up Tgen traffic for Learning stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Creating raw traffic stream INFO DENT:Logger.py:84 [Ixia Traffic Generator] Adding endpoint swp34 to swp33 INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'set_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Saving Tgen config file None INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting All Protocols INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:5_100.1.1.2/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:6_100.1.1.3/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:7_100.1.1.4/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Sending ARP on 10.36.118.199:2:8_100.1.1.5/24 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Generating Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Applying Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_protocols', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting the Tgen Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Starting Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'start_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Traffic Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] Getting Stats INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'get_stats', 'rc': 0, 'result': <ixnetwork_restpy.assistants.statistics.statviewassistant.StatViewAssistant object at 0x7fb7f7441d20>}}] INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:5 Rx 10.36.118.199:2:6 TI Untagged unicast stream SIP-DIP N/A Tx 447 Rx 447 Loss 0.000 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Tx 10.36.118.199:2:6 Rx 10.36.118.199:2:5 TI Learning stream SIP-DIP N/A Tx 447 Rx 447 Loss 0.000 -----------------------------Captured log teardown------------------------------ INFO DENT.conftest:Logger.py:147 Finished testcase:test_vlan_untagged_ports_with_[unicast] from file:/usr/local/lib/python3.10/dist-packages/dent_os_testbed/test/test_suite/functional/vlan/test_vlan_untagged_ports.py INFO DENT:Logger.py:84 [Ixia Traffic Generator] Found a tgen device ixia INFO asyncssh:logging.py:92 [conn=217, chan=15] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=15] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=15] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=15] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=15] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=217, chan=16] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=16] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=16] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=16] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=16] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 04:56:19 UTC 2023 INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] Stopping Traffic INFO DENT:Logger.py:84 [Ixia Traffic Generator] [{'ixia': {'command': 'stop_traffic', 'rc': 0, 'result': ''}}] INFO asyncssh:logging.py:92 [conn=217, chan=17] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=17] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=17] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=17] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=17] Channel closed DEBUG infra2:Logger.py:156 date INFO asyncssh:logging.py:92 [conn=217, chan=18] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=18] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=18] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=18] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=18] Channel closed DEBUG infra2:Logger.py:156 Fri May 26 04:56:19 UTC 2023 INFO DENT:Logger.py:147 Clearing bridges INFO asyncssh:logging.py:92 [conn=217, chan=19] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=19] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=19] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=19] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=19] Channel closed DEBUG infra2:Logger.py:156 ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=217, chan=20] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=20] Command: ip -j link show type bridge INFO asyncssh:logging.py:92 [conn=217, chan=20] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=20] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=20] Channel closed DEBUG infra2:Logger.py:156 [{"ifindex":223,"ifname":"br0","flags":["BROADCAST","MULTICAST","UP","LOWER_UP"],"mtu":1500,"qdisc":"noqueue","operstate":"UP","linkmode":"DEFAULT","group":"default","txqlen":1000,"link_type":"ether","address":"18:be:92:13:64:a5","broadcast":"ff:ff:ff:ff:ff:ff"}] INFO asyncssh:logging.py:92 [conn=217, chan=21] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=21] Command: date INFO asyncssh:logging.py:92 [conn=217, chan=21] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=21] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=21] Channel closed DEBUG infra2:Logger.py:156 ip link delete br0 INFO asyncssh:logging.py:92 [conn=217, chan=22] Requesting new SSH session INFO asyncssh:logging.py:92 [conn=217, chan=22] Command: ip link delete br0 INFO asyncssh:logging.py:92 [conn=217, chan=22] Received exit status 0 INFO asyncssh:logging.py:92 [conn=217, chan=22] Received channel close INFO asyncssh:logging.py:92 [conn=217, chan=22] Channel closed DEBUG infra2:Logger.py:156 | |||